From b8a69d27ad23c6a3d43893b2f2dcc4a1294b2c8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Guti=C3=A9rrez?= Date: Wed, 20 Nov 2024 00:36:54 +0100 Subject: [PATCH] Xcode16 support (#118) * Add support for new PBXFileSystemSynchronizedBuildFileExceptionSet section * Add support for PBXFileSystemSynchronizedRootGroup section and preferredProjectObjectVersion field --- .gitignore | 5 +- kin/grammar/PBXProj.g4 | 70 + kin/grammar/PBXProj.interp | 27 +- kin/grammar/PBXProj.tokens | 518 +-- kin/grammar/PBXProjLexer.interp | 23 +- kin/grammar/PBXProjLexer.py | 2422 +++++++------ kin/grammar/PBXProjLexer.tokens | 518 +-- kin/grammar/PBXProjListener.py | 101 +- kin/grammar/PBXProjParser.py | 5966 +++++++++++++++++-------------- tests/ok/020.pbxproj | 655 ++++ 10 files changed, 6029 insertions(+), 4276 deletions(-) create mode 100644 tests/ok/020.pbxproj diff --git a/.gitignore b/.gitignore index 7fdf2a6..19caa9a 100644 --- a/.gitignore +++ b/.gitignore @@ -62,4 +62,7 @@ target/ .ipynb_checkpoints # ANTLR -.antlr \ No newline at end of file +.antlr + +# IDE +.vscode \ No newline at end of file diff --git a/kin/grammar/PBXProj.g4 b/kin/grammar/PBXProj.g4 index 02f5193..38c06fa 100644 --- a/kin/grammar/PBXProj.g4 +++ b/kin/grammar/PBXProj.g4 @@ -39,6 +39,8 @@ objects pbx_container_item_proxy_section? pbx_copy_files_build_phase_section? pbx_file_reference_section? + pbx_file_system_synchronized_build_file_exception_set_section? + pbx_file_system_synchronized_root_group_section? pbx_frameworks_build_phase_section? pbx_group_section pbx_headers_build_phase_section? @@ -94,6 +96,14 @@ pbx_file_reference_section : (pbx_file_reference)+ ; +pbx_file_system_synchronized_build_file_exception_set_section + : (pbx_file_system_synchronized_build_file_exception_set)+ + ; + +pbx_file_system_synchronized_root_group_section + : (pbx_file_system_synchronized_root_group)+ + ; + pbx_frameworks_build_phase_section : (pbx_frameworks_build_phase)+ ; @@ -259,6 +269,25 @@ pbx_file_reference '}' ';' ; +pbx_file_system_synchronized_build_file_exception_set + : REFERENCE '=' '{' + isa_pbx_file_system_synchronized_build_file_exception_set + membership_exceptions + target + '}' ';' + ; + +pbx_file_system_synchronized_root_group + : REFERENCE '=' '{' + isa_pbx_file_system_synchronized_root_group + exceptions + explicit_file_types + explicit_folders + path + source_tree + '}' ';' + ; + pbx_frameworks_build_phase : REFERENCE '=' '{' isa_pbx_frameworks_build_phase @@ -339,6 +368,7 @@ pbx_project known_regions? main_group package_references? + preferred_project_object_version? product_ref_group? project_dir_path project_references? @@ -508,6 +538,14 @@ isa_pbx_file_reference : ISA '=' PBX_FILE_REFERENCE ';' ; +isa_pbx_file_system_synchronized_build_file_exception_set + : ISA '=' PBX_FILE_SYSTEM_SYNCHRONIZED_BUILD_FILE_EXCEPTION_SET ';' + ; + +isa_pbx_file_system_synchronized_root_group + : ISA '=' PBX_FILE_SYSTEM_SYNCHRONIZED_ROOT_GROUP ';' + ; + isa_pbx_frameworks_build_phase : ISA '=' PBX_FRAMEWORKS_BUILD_PHASE ';' ; @@ -622,6 +660,14 @@ explicit_file_type : EXPLICIT_FILE_TYPE '=' str_number_variable ';' ; +explicit_file_types + : EXPLICIT_FILE_TYPES '=' '{' key_value* '}' ';' + ; + +explicit_folders + : EXPLICIT_FOLDERS '=' any_string_list ';' + ; + last_known_file_type : LAST_KNOWN_FILE_TYPE '=' str_number_variable ';' ; @@ -909,6 +955,10 @@ package_references : PACKAGE_REFERENCES '=' reference_list ';' ; +preferred_project_object_version + : PREFERRED_PROJECT_OBJECT_VERSION '=' NUMBER ';' + ; + project_dir_path : PRODUCT_DIR_PATH '=' any_string ';' ; @@ -1007,6 +1057,12 @@ project_references_list_element '}' ',' ; +membership_exceptions + : MEMBERSHIP_EXCEPTIONS '=' any_string_list ';'; + +exceptions + : EXCEPTIONS '=' reference_list ';'; + key_value : str_number_variable '=' str_number_variable ';' | str_number_variable '=' NUMBER ';' @@ -1074,6 +1130,8 @@ any_token | PBX_CONTAINER_ITEM_PROXY | PBX_COPY_FILES_BUILD_PHASE | PBX_FILE_REFERENCE + | PBX_FILE_SYSTEM_SYNCHRONIZED_BUILD_FILE_EXCEPTION_SET + | PBX_FILE_SYSTEM_SYNCHRONIZED_ROOT_GROUP | PBX_FRAMEWORKS_BUILD_PHASE | PBX_NATIVE_TARGET | PBX_LEGACY_TARGET @@ -1084,6 +1142,7 @@ any_token | PBX_SOURCES_BUILD_PHASE | PBX_TARGET_DEPENDENCY | PBX_VARIANT_GROUP + | PREFERRED_PROJECT_OBJECT_VERSION | XC_BUILD_CONFIGURATION | XC_CONFIGURATION_LIST | XC_REMOTE_SWIFT_PACKAGE_REFERENCE @@ -1098,6 +1157,8 @@ any_token | FILE_ENCODING | COMMENTS | EXPLICIT_FILE_TYPE + | EXPLICIT_FILE_TYPES + | EXPLICIT_FOLDERS | LAST_KNOWN_FILE_TYPE | INCLUDE_IN_INDEX | INDENT_WIDTH @@ -1190,6 +1251,8 @@ any_token | SYSTEM_CAPABILITIES | CURRENT_VERSION | VERSION_GROUP_TYPE + | MEMBERSHIP_EXCEPTIONS + | EXCEPTIONS | CLASSPREFIX ; @@ -1215,6 +1278,8 @@ PBX_BUILD_STYLE: 'PBXBuildStyle'; PBX_CONTAINER_ITEM_PROXY: 'PBXContainerItemProxy'; PBX_COPY_FILES_BUILD_PHASE: 'PBXCopyFilesBuildPhase'; PBX_FILE_REFERENCE: 'PBXFileReference'; +PBX_FILE_SYSTEM_SYNCHRONIZED_BUILD_FILE_EXCEPTION_SET: 'PBXFileSystemSynchronizedBuildFileExceptionSet'; +PBX_FILE_SYSTEM_SYNCHRONIZED_ROOT_GROUP: 'PBXFileSystemSynchronizedRootGroup'; PBX_FRAMEWORKS_BUILD_PHASE: 'PBXFrameworksBuildPhase'; PBX_GROUP: 'PBXGroup'; PBX_HEADERS_BUILD_PHASE: 'PBXHeadersBuildPhase'; @@ -1243,6 +1308,8 @@ REMOTE_INFO: 'remoteInfo'; FILE_ENCODING: 'fileEncoding'; COMMENTS: 'comments'; EXPLICIT_FILE_TYPE: 'explicitFileType'; +EXPLICIT_FILE_TYPES: 'explicitFileTypes'; +EXPLICIT_FOLDERS: 'explicitFolders'; LAST_KNOWN_FILE_TYPE: 'lastKnownFileType'; INCLUDE_IN_INDEX: 'includeInIndex'; INDENT_WIDTH: 'indentWidth'; @@ -1306,6 +1373,7 @@ KNOWN_REGIONS : 'knownRegions'; MAIN_GROUP : 'mainGroup'; PRODUCT_REF_GROUP : 'productRefGroup'; PACKAGE_REFERENCES : 'packageReferences'; +PREFERRED_PROJECT_OBJECT_VERSION : 'preferredProjectObjectVersion'; PRODUCT_DIR_PATH : 'projectDirPath'; PROJECT_REFERENCES : 'projectReferences'; PROJECT_ROOT : 'projectRoot'; @@ -1336,6 +1404,8 @@ SETTINGS : 'settings'; SYSTEM_CAPABILITIES : 'SystemCapabilities'; CURRENT_VERSION : 'currentVersion'; VERSION_GROUP_TYPE : 'versionGroupType'; +MEMBERSHIP_EXCEPTIONS : 'membershipExceptions'; +EXCEPTIONS : 'exceptions'; CLASSPREFIX : 'CLASSPREFIX'; diff --git a/kin/grammar/PBXProj.interp b/kin/grammar/PBXProj.interp index bbd999a..8a1759b 100644 --- a/kin/grammar/PBXProj.interp +++ b/kin/grammar/PBXProj.interp @@ -26,6 +26,8 @@ null 'PBXContainerItemProxy' 'PBXCopyFilesBuildPhase' 'PBXFileReference' +'PBXFileSystemSynchronizedBuildFileExceptionSet' +'PBXFileSystemSynchronizedRootGroup' 'PBXFrameworksBuildPhase' 'PBXGroup' 'PBXHeadersBuildPhase' @@ -54,6 +56,8 @@ null 'fileEncoding' 'comments' 'explicitFileType' +'explicitFileTypes' +'explicitFolders' 'lastKnownFileType' 'includeInIndex' 'indentWidth' @@ -117,6 +121,7 @@ null 'mainGroup' 'productRefGroup' 'packageReferences' +'preferredProjectObjectVersion' 'projectDirPath' 'projectReferences' 'projectRoot' @@ -147,6 +152,8 @@ null 'SystemCapabilities' 'currentVersion' 'versionGroupType' +'membershipExceptions' +'exceptions' 'CLASSPREFIX' null null @@ -186,6 +193,8 @@ PBX_BUILD_STYLE PBX_CONTAINER_ITEM_PROXY PBX_COPY_FILES_BUILD_PHASE PBX_FILE_REFERENCE +PBX_FILE_SYSTEM_SYNCHRONIZED_BUILD_FILE_EXCEPTION_SET +PBX_FILE_SYSTEM_SYNCHRONIZED_ROOT_GROUP PBX_FRAMEWORKS_BUILD_PHASE PBX_GROUP PBX_HEADERS_BUILD_PHASE @@ -214,6 +223,8 @@ REMOTE_INFO FILE_ENCODING COMMENTS EXPLICIT_FILE_TYPE +EXPLICIT_FILE_TYPES +EXPLICIT_FOLDERS LAST_KNOWN_FILE_TYPE INCLUDE_IN_INDEX INDENT_WIDTH @@ -277,6 +288,7 @@ KNOWN_REGIONS MAIN_GROUP PRODUCT_REF_GROUP PACKAGE_REFERENCES +PREFERRED_PROJECT_OBJECT_VERSION PRODUCT_DIR_PATH PROJECT_REFERENCES PROJECT_ROOT @@ -307,6 +319,8 @@ SETTINGS SYSTEM_CAPABILITIES CURRENT_VERSION VERSION_GROUP_TYPE +MEMBERSHIP_EXCEPTIONS +EXCEPTIONS CLASSPREFIX REFERENCE QUOTED_STRING @@ -333,6 +347,8 @@ pbx_build_style_section pbx_container_item_proxy_section pbx_copy_files_build_phase_section pbx_file_reference_section +pbx_file_system_synchronized_build_file_exception_set_section +pbx_file_system_synchronized_root_group_section pbx_frameworks_build_phase_section pbx_group_section pbx_headers_build_phase_section @@ -358,6 +374,8 @@ pbx_build_style pbx_container_item_proxy pbx_copy_files_build_phase pbx_file_reference +pbx_file_system_synchronized_build_file_exception_set +pbx_file_system_synchronized_root_group pbx_frameworks_build_phase pbx_group pbx_headers_build_phase @@ -383,6 +401,8 @@ isa_pbx_build_style isa_pbx_container_item_proxy isa_pbx_copy_files_build_phase isa_pbx_file_reference +isa_pbx_file_system_synchronized_build_file_exception_set +isa_pbx_file_system_synchronized_root_group isa_pbx_frameworks_build_phase isa_pbx_group isa_pbx_header_build_phase @@ -411,6 +431,8 @@ remote_info file_encoding comments explicit_file_type +explicit_file_types +explicit_folders last_known_file_type include_in_index indent_width @@ -478,6 +500,7 @@ known_regions main_group product_ref_group package_references +preferred_project_object_version project_dir_path project_references project_root @@ -501,6 +524,8 @@ dst_path dst_subfolder_spec project_references_list project_references_list_element +membership_exceptions +exceptions key_value build_configurations default_configuration_is_visible @@ -516,4 +541,4 @@ any_token atn: -[4, 1, 157, 1954, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 419, 8, 5, 1, 5, 3, 5, 422, 8, 5, 1, 5, 3, 5, 425, 8, 5, 1, 5, 3, 5, 428, 8, 5, 1, 5, 3, 5, 431, 8, 5, 1, 5, 3, 5, 434, 8, 5, 1, 5, 3, 5, 437, 8, 5, 1, 5, 3, 5, 440, 8, 5, 1, 5, 1, 5, 3, 5, 444, 8, 5, 1, 5, 3, 5, 447, 8, 5, 1, 5, 3, 5, 450, 8, 5, 1, 5, 1, 5, 3, 5, 454, 8, 5, 1, 5, 3, 5, 457, 8, 5, 1, 5, 3, 5, 460, 8, 5, 1, 5, 3, 5, 463, 8, 5, 1, 5, 3, 5, 466, 8, 5, 1, 5, 3, 5, 469, 8, 5, 1, 5, 3, 5, 472, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 477, 8, 5, 1, 5, 3, 5, 480, 8, 5, 1, 5, 3, 5, 483, 8, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 4, 7, 494, 8, 7, 11, 7, 12, 7, 495, 1, 8, 4, 8, 499, 8, 8, 11, 8, 12, 8, 500, 1, 9, 4, 9, 504, 8, 9, 11, 9, 12, 9, 505, 1, 10, 4, 10, 509, 8, 10, 11, 10, 12, 10, 510, 1, 11, 4, 11, 514, 8, 11, 11, 11, 12, 11, 515, 1, 12, 4, 12, 519, 8, 12, 11, 12, 12, 12, 520, 1, 13, 4, 13, 524, 8, 13, 11, 13, 12, 13, 525, 1, 14, 4, 14, 529, 8, 14, 11, 14, 12, 14, 530, 1, 15, 4, 15, 534, 8, 15, 11, 15, 12, 15, 535, 1, 16, 4, 16, 539, 8, 16, 11, 16, 12, 16, 540, 1, 17, 4, 17, 544, 8, 17, 11, 17, 12, 17, 545, 1, 18, 4, 18, 549, 8, 18, 11, 18, 12, 18, 550, 1, 19, 4, 19, 554, 8, 19, 11, 19, 12, 19, 555, 1, 20, 4, 20, 559, 8, 20, 11, 20, 12, 20, 560, 1, 21, 4, 21, 564, 8, 21, 11, 21, 12, 21, 565, 1, 22, 4, 22, 569, 8, 22, 11, 22, 12, 22, 570, 1, 23, 4, 23, 574, 8, 23, 11, 23, 12, 23, 575, 1, 24, 4, 24, 579, 8, 24, 11, 24, 12, 24, 580, 1, 25, 4, 25, 584, 8, 25, 11, 25, 12, 25, 585, 1, 26, 4, 26, 589, 8, 26, 11, 26, 12, 26, 590, 1, 27, 4, 27, 594, 8, 27, 11, 27, 12, 27, 595, 1, 28, 4, 28, 599, 8, 28, 11, 28, 12, 28, 600, 1, 29, 4, 29, 604, 8, 29, 11, 29, 12, 29, 605, 1, 30, 4, 30, 609, 8, 30, 11, 30, 12, 30, 610, 1, 31, 4, 31, 614, 8, 31, 11, 31, 12, 31, 615, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 625, 8, 32, 1, 32, 3, 32, 628, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 633, 8, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 643, 8, 33, 1, 33, 3, 33, 646, 8, 33, 1, 33, 3, 33, 649, 8, 33, 1, 33, 3, 33, 652, 8, 33, 1, 33, 3, 33, 655, 8, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 666, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 673, 8, 34, 1, 34, 3, 34, 676, 8, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 686, 8, 35, 1, 35, 3, 35, 689, 8, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 711, 8, 37, 1, 37, 1, 37, 3, 37, 715, 8, 37, 1, 37, 3, 37, 718, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 729, 8, 38, 1, 38, 3, 38, 732, 8, 38, 1, 38, 3, 38, 735, 8, 38, 1, 38, 3, 38, 738, 8, 38, 1, 38, 3, 38, 741, 8, 38, 1, 38, 3, 38, 744, 8, 38, 1, 38, 3, 38, 747, 8, 38, 1, 38, 3, 38, 750, 8, 38, 1, 38, 3, 38, 753, 8, 38, 1, 38, 3, 38, 756, 8, 38, 1, 38, 3, 38, 759, 8, 38, 1, 38, 3, 38, 762, 8, 38, 1, 38, 3, 38, 765, 8, 38, 1, 38, 3, 38, 768, 8, 38, 1, 38, 3, 38, 771, 8, 38, 1, 38, 3, 38, 774, 8, 38, 1, 38, 3, 38, 777, 8, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 798, 8, 40, 1, 40, 3, 40, 801, 8, 40, 1, 40, 3, 40, 804, 8, 40, 1, 40, 3, 40, 807, 8, 40, 1, 40, 3, 40, 810, 8, 40, 1, 40, 1, 40, 3, 40, 814, 8, 40, 1, 40, 3, 40, 817, 8, 40, 1, 40, 3, 40, 820, 8, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 843, 8, 42, 1, 42, 3, 42, 846, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 851, 8, 42, 1, 42, 3, 42, 854, 8, 42, 1, 42, 1, 42, 3, 42, 858, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 885, 8, 44, 1, 44, 1, 44, 3, 44, 889, 8, 44, 1, 44, 3, 44, 892, 8, 44, 1, 44, 3, 44, 895, 8, 44, 1, 44, 3, 44, 898, 8, 44, 1, 44, 1, 44, 3, 44, 902, 8, 44, 1, 44, 1, 44, 3, 44, 906, 8, 44, 1, 44, 3, 44, 909, 8, 44, 1, 44, 1, 44, 3, 44, 913, 8, 44, 1, 44, 3, 44, 916, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 928, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 951, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 956, 8, 47, 1, 47, 3, 47, 959, 8, 47, 1, 47, 3, 47, 962, 8, 47, 1, 47, 3, 47, 965, 8, 47, 1, 47, 3, 47, 968, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 974, 8, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1011, 8, 50, 1, 50, 3, 50, 1014, 8, 50, 1, 50, 3, 50, 1017, 8, 50, 1, 50, 3, 50, 1020, 8, 50, 1, 50, 3, 50, 1023, 8, 50, 1, 50, 3, 50, 1026, 8, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1038, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1049, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1063, 8, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1082, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1095, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1337, 8, 103, 10, 103, 12, 103, 1340, 9, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 5, 112, 1388, 8, 112, 10, 112, 12, 112, 1391, 9, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 1401, 8, 113, 10, 113, 12, 113, 1404, 9, 113, 1, 113, 3, 113, 1407, 8, 113, 1, 113, 1, 113, 3, 113, 1411, 8, 113, 1, 114, 1, 114, 1, 114, 5, 114, 1416, 8, 114, 10, 114, 12, 114, 1419, 9, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 1537, 8, 137, 1, 137, 3, 137, 1540, 8, 137, 1, 137, 3, 137, 1543, 8, 137, 1, 137, 3, 137, 1546, 8, 137, 1, 137, 3, 137, 1549, 8, 137, 1, 137, 3, 137, 1552, 8, 137, 1, 137, 3, 137, 1555, 8, 137, 1, 137, 3, 137, 1558, 8, 137, 1, 137, 3, 137, 1561, 8, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 1605, 8, 145, 10, 145, 12, 145, 1608, 9, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 1617, 8, 146, 1, 146, 3, 146, 1620, 8, 146, 1, 146, 3, 146, 1623, 8, 146, 1, 146, 3, 146, 1626, 8, 146, 1, 146, 3, 146, 1629, 8, 146, 1, 146, 3, 146, 1632, 8, 146, 1, 146, 3, 146, 1635, 8, 146, 1, 146, 3, 146, 1638, 8, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 1720, 8, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 1801, 8, 176, 10, 176, 12, 176, 1804, 9, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 5, 180, 1825, 8, 180, 10, 180, 12, 180, 1828, 9, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 1868, 8, 182, 1, 182, 1, 182, 5, 182, 1872, 8, 182, 10, 182, 12, 182, 1875, 9, 182, 1, 182, 3, 182, 1878, 8, 182, 1, 182, 1, 182, 1, 182, 3, 182, 1883, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 5, 186, 1904, 8, 186, 10, 186, 12, 186, 1907, 9, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 5, 187, 1916, 8, 187, 10, 187, 12, 187, 1919, 9, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 1945, 8, 191, 1, 192, 1, 192, 1, 192, 3, 192, 1950, 8, 192, 1, 193, 1, 193, 1, 193, 0, 0, 194, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 0, 2, 2, 0, 13, 13, 151, 151, 8, 0, 8, 9, 12, 12, 14, 16, 20, 27, 30, 35, 37, 44, 46, 135, 137, 148, 1923, 0, 388, 1, 0, 0, 0, 2, 390, 1, 0, 0, 0, 4, 398, 1, 0, 0, 0, 6, 403, 1, 0, 0, 0, 8, 409, 1, 0, 0, 0, 10, 414, 1, 0, 0, 0, 12, 487, 1, 0, 0, 0, 14, 493, 1, 0, 0, 0, 16, 498, 1, 0, 0, 0, 18, 503, 1, 0, 0, 0, 20, 508, 1, 0, 0, 0, 22, 513, 1, 0, 0, 0, 24, 518, 1, 0, 0, 0, 26, 523, 1, 0, 0, 0, 28, 528, 1, 0, 0, 0, 30, 533, 1, 0, 0, 0, 32, 538, 1, 0, 0, 0, 34, 543, 1, 0, 0, 0, 36, 548, 1, 0, 0, 0, 38, 553, 1, 0, 0, 0, 40, 558, 1, 0, 0, 0, 42, 563, 1, 0, 0, 0, 44, 568, 1, 0, 0, 0, 46, 573, 1, 0, 0, 0, 48, 578, 1, 0, 0, 0, 50, 583, 1, 0, 0, 0, 52, 588, 1, 0, 0, 0, 54, 593, 1, 0, 0, 0, 56, 598, 1, 0, 0, 0, 58, 603, 1, 0, 0, 0, 60, 608, 1, 0, 0, 0, 62, 613, 1, 0, 0, 0, 64, 617, 1, 0, 0, 0, 66, 637, 1, 0, 0, 0, 68, 659, 1, 0, 0, 0, 70, 680, 1, 0, 0, 0, 72, 693, 1, 0, 0, 0, 74, 704, 1, 0, 0, 0, 76, 723, 1, 0, 0, 0, 78, 781, 1, 0, 0, 0, 80, 791, 1, 0, 0, 0, 82, 824, 1, 0, 0, 0, 84, 834, 1, 0, 0, 0, 86, 863, 1, 0, 0, 0, 88, 879, 1, 0, 0, 0, 90, 921, 1, 0, 0, 0, 92, 935, 1, 0, 0, 0, 94, 945, 1, 0, 0, 0, 96, 978, 1, 0, 0, 0, 98, 995, 1, 0, 0, 0, 100, 1005, 1, 0, 0, 0, 102, 1030, 1, 0, 0, 0, 104, 1043, 1, 0, 0, 0, 106, 1055, 1, 0, 0, 0, 108, 1067, 1, 0, 0, 0, 110, 1076, 1, 0, 0, 0, 112, 1087, 1, 0, 0, 0, 114, 1102, 1, 0, 0, 0, 116, 1107, 1, 0, 0, 0, 118, 1112, 1, 0, 0, 0, 120, 1117, 1, 0, 0, 0, 122, 1122, 1, 0, 0, 0, 124, 1127, 1, 0, 0, 0, 126, 1132, 1, 0, 0, 0, 128, 1137, 1, 0, 0, 0, 130, 1142, 1, 0, 0, 0, 132, 1147, 1, 0, 0, 0, 134, 1152, 1, 0, 0, 0, 136, 1157, 1, 0, 0, 0, 138, 1162, 1, 0, 0, 0, 140, 1167, 1, 0, 0, 0, 142, 1172, 1, 0, 0, 0, 144, 1177, 1, 0, 0, 0, 146, 1182, 1, 0, 0, 0, 148, 1187, 1, 0, 0, 0, 150, 1192, 1, 0, 0, 0, 152, 1197, 1, 0, 0, 0, 154, 1202, 1, 0, 0, 0, 156, 1207, 1, 0, 0, 0, 158, 1212, 1, 0, 0, 0, 160, 1217, 1, 0, 0, 0, 162, 1222, 1, 0, 0, 0, 164, 1227, 1, 0, 0, 0, 166, 1232, 1, 0, 0, 0, 168, 1237, 1, 0, 0, 0, 170, 1242, 1, 0, 0, 0, 172, 1247, 1, 0, 0, 0, 174, 1252, 1, 0, 0, 0, 176, 1257, 1, 0, 0, 0, 178, 1262, 1, 0, 0, 0, 180, 1267, 1, 0, 0, 0, 182, 1272, 1, 0, 0, 0, 184, 1277, 1, 0, 0, 0, 186, 1282, 1, 0, 0, 0, 188, 1287, 1, 0, 0, 0, 190, 1292, 1, 0, 0, 0, 192, 1297, 1, 0, 0, 0, 194, 1302, 1, 0, 0, 0, 196, 1307, 1, 0, 0, 0, 198, 1312, 1, 0, 0, 0, 200, 1317, 1, 0, 0, 0, 202, 1322, 1, 0, 0, 0, 204, 1327, 1, 0, 0, 0, 206, 1332, 1, 0, 0, 0, 208, 1344, 1, 0, 0, 0, 210, 1349, 1, 0, 0, 0, 212, 1354, 1, 0, 0, 0, 214, 1359, 1, 0, 0, 0, 216, 1364, 1, 0, 0, 0, 218, 1369, 1, 0, 0, 0, 220, 1374, 1, 0, 0, 0, 222, 1379, 1, 0, 0, 0, 224, 1384, 1, 0, 0, 0, 226, 1410, 1, 0, 0, 0, 228, 1412, 1, 0, 0, 0, 230, 1422, 1, 0, 0, 0, 232, 1427, 1, 0, 0, 0, 234, 1432, 1, 0, 0, 0, 236, 1437, 1, 0, 0, 0, 238, 1442, 1, 0, 0, 0, 240, 1447, 1, 0, 0, 0, 242, 1452, 1, 0, 0, 0, 244, 1457, 1, 0, 0, 0, 246, 1462, 1, 0, 0, 0, 248, 1467, 1, 0, 0, 0, 250, 1472, 1, 0, 0, 0, 252, 1477, 1, 0, 0, 0, 254, 1482, 1, 0, 0, 0, 256, 1487, 1, 0, 0, 0, 258, 1492, 1, 0, 0, 0, 260, 1497, 1, 0, 0, 0, 262, 1502, 1, 0, 0, 0, 264, 1507, 1, 0, 0, 0, 266, 1512, 1, 0, 0, 0, 268, 1517, 1, 0, 0, 0, 270, 1522, 1, 0, 0, 0, 272, 1527, 1, 0, 0, 0, 274, 1532, 1, 0, 0, 0, 276, 1565, 1, 0, 0, 0, 278, 1570, 1, 0, 0, 0, 280, 1575, 1, 0, 0, 0, 282, 1580, 1, 0, 0, 0, 284, 1585, 1, 0, 0, 0, 286, 1590, 1, 0, 0, 0, 288, 1595, 1, 0, 0, 0, 290, 1600, 1, 0, 0, 0, 292, 1612, 1, 0, 0, 0, 294, 1642, 1, 0, 0, 0, 296, 1647, 1, 0, 0, 0, 298, 1652, 1, 0, 0, 0, 300, 1657, 1, 0, 0, 0, 302, 1662, 1, 0, 0, 0, 304, 1667, 1, 0, 0, 0, 306, 1672, 1, 0, 0, 0, 308, 1677, 1, 0, 0, 0, 310, 1682, 1, 0, 0, 0, 312, 1687, 1, 0, 0, 0, 314, 1692, 1, 0, 0, 0, 316, 1697, 1, 0, 0, 0, 318, 1702, 1, 0, 0, 0, 320, 1719, 1, 0, 0, 0, 322, 1721, 1, 0, 0, 0, 324, 1726, 1, 0, 0, 0, 326, 1731, 1, 0, 0, 0, 328, 1736, 1, 0, 0, 0, 330, 1741, 1, 0, 0, 0, 332, 1746, 1, 0, 0, 0, 334, 1751, 1, 0, 0, 0, 336, 1756, 1, 0, 0, 0, 338, 1761, 1, 0, 0, 0, 340, 1766, 1, 0, 0, 0, 342, 1771, 1, 0, 0, 0, 344, 1776, 1, 0, 0, 0, 346, 1781, 1, 0, 0, 0, 348, 1786, 1, 0, 0, 0, 350, 1791, 1, 0, 0, 0, 352, 1796, 1, 0, 0, 0, 354, 1808, 1, 0, 0, 0, 356, 1813, 1, 0, 0, 0, 358, 1818, 1, 0, 0, 0, 360, 1826, 1, 0, 0, 0, 362, 1829, 1, 0, 0, 0, 364, 1882, 1, 0, 0, 0, 366, 1884, 1, 0, 0, 0, 368, 1889, 1, 0, 0, 0, 370, 1894, 1, 0, 0, 0, 372, 1899, 1, 0, 0, 0, 374, 1911, 1, 0, 0, 0, 376, 1923, 1, 0, 0, 0, 378, 1928, 1, 0, 0, 0, 380, 1933, 1, 0, 0, 0, 382, 1944, 1, 0, 0, 0, 384, 1949, 1, 0, 0, 0, 386, 1951, 1, 0, 0, 0, 388, 389, 3, 2, 1, 0, 389, 1, 1, 0, 0, 0, 390, 391, 5, 1, 0, 0, 391, 392, 3, 4, 2, 0, 392, 393, 3, 6, 3, 0, 393, 394, 3, 8, 4, 0, 394, 395, 3, 10, 5, 0, 395, 396, 3, 12, 6, 0, 396, 397, 5, 2, 0, 0, 397, 3, 1, 0, 0, 0, 398, 399, 5, 8, 0, 0, 399, 400, 5, 3, 0, 0, 400, 401, 5, 13, 0, 0, 401, 402, 5, 4, 0, 0, 402, 5, 1, 0, 0, 0, 403, 404, 5, 9, 0, 0, 404, 405, 5, 3, 0, 0, 405, 406, 5, 1, 0, 0, 406, 407, 5, 2, 0, 0, 407, 408, 5, 4, 0, 0, 408, 7, 1, 0, 0, 0, 409, 410, 5, 14, 0, 0, 410, 411, 5, 3, 0, 0, 411, 412, 5, 13, 0, 0, 412, 413, 5, 4, 0, 0, 413, 9, 1, 0, 0, 0, 414, 415, 5, 15, 0, 0, 415, 416, 5, 3, 0, 0, 416, 418, 5, 1, 0, 0, 417, 419, 3, 14, 7, 0, 418, 417, 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 421, 1, 0, 0, 0, 420, 422, 3, 16, 8, 0, 421, 420, 1, 0, 0, 0, 421, 422, 1, 0, 0, 0, 422, 424, 1, 0, 0, 0, 423, 425, 3, 18, 9, 0, 424, 423, 1, 0, 0, 0, 424, 425, 1, 0, 0, 0, 425, 427, 1, 0, 0, 0, 426, 428, 3, 20, 10, 0, 427, 426, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 430, 1, 0, 0, 0, 429, 431, 3, 22, 11, 0, 430, 429, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 433, 1, 0, 0, 0, 432, 434, 3, 24, 12, 0, 433, 432, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, 436, 1, 0, 0, 0, 435, 437, 3, 26, 13, 0, 436, 435, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 439, 1, 0, 0, 0, 438, 440, 3, 28, 14, 0, 439, 438, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 443, 3, 30, 15, 0, 442, 444, 3, 32, 16, 0, 443, 442, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 446, 1, 0, 0, 0, 445, 447, 3, 36, 18, 0, 446, 445, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 449, 1, 0, 0, 0, 448, 450, 3, 34, 17, 0, 449, 448, 1, 0, 0, 0, 449, 450, 1, 0, 0, 0, 450, 451, 1, 0, 0, 0, 451, 453, 3, 38, 19, 0, 452, 454, 3, 40, 20, 0, 453, 452, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 456, 1, 0, 0, 0, 455, 457, 3, 42, 21, 0, 456, 455, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 459, 1, 0, 0, 0, 458, 460, 3, 44, 22, 0, 459, 458, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 462, 1, 0, 0, 0, 461, 463, 3, 46, 23, 0, 462, 461, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 465, 1, 0, 0, 0, 464, 466, 3, 48, 24, 0, 465, 464, 1, 0, 0, 0, 465, 466, 1, 0, 0, 0, 466, 468, 1, 0, 0, 0, 467, 469, 3, 50, 25, 0, 468, 467, 1, 0, 0, 0, 468, 469, 1, 0, 0, 0, 469, 471, 1, 0, 0, 0, 470, 472, 3, 52, 26, 0, 471, 470, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 474, 3, 54, 27, 0, 474, 476, 3, 56, 28, 0, 475, 477, 3, 58, 29, 0, 476, 475, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 479, 1, 0, 0, 0, 478, 480, 3, 60, 30, 0, 479, 478, 1, 0, 0, 0, 479, 480, 1, 0, 0, 0, 480, 482, 1, 0, 0, 0, 481, 483, 3, 62, 31, 0, 482, 481, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 485, 5, 2, 0, 0, 485, 486, 5, 4, 0, 0, 486, 11, 1, 0, 0, 0, 487, 488, 5, 16, 0, 0, 488, 489, 5, 3, 0, 0, 489, 490, 5, 149, 0, 0, 490, 491, 5, 4, 0, 0, 491, 13, 1, 0, 0, 0, 492, 494, 3, 64, 32, 0, 493, 492, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 493, 1, 0, 0, 0, 495, 496, 1, 0, 0, 0, 496, 15, 1, 0, 0, 0, 497, 499, 3, 66, 33, 0, 498, 497, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 498, 1, 0, 0, 0, 500, 501, 1, 0, 0, 0, 501, 17, 1, 0, 0, 0, 502, 504, 3, 68, 34, 0, 503, 502, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 503, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 19, 1, 0, 0, 0, 507, 509, 3, 70, 35, 0, 508, 507, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 508, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 21, 1, 0, 0, 0, 512, 514, 3, 72, 36, 0, 513, 512, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 513, 1, 0, 0, 0, 515, 516, 1, 0, 0, 0, 516, 23, 1, 0, 0, 0, 517, 519, 3, 74, 37, 0, 518, 517, 1, 0, 0, 0, 519, 520, 1, 0, 0, 0, 520, 518, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 25, 1, 0, 0, 0, 522, 524, 3, 76, 38, 0, 523, 522, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 523, 1, 0, 0, 0, 525, 526, 1, 0, 0, 0, 526, 27, 1, 0, 0, 0, 527, 529, 3, 78, 39, 0, 528, 527, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 528, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 29, 1, 0, 0, 0, 532, 534, 3, 80, 40, 0, 533, 532, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 533, 1, 0, 0, 0, 535, 536, 1, 0, 0, 0, 536, 31, 1, 0, 0, 0, 537, 539, 3, 82, 41, 0, 538, 537, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 538, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 33, 1, 0, 0, 0, 542, 544, 3, 84, 42, 0, 543, 542, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 543, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 35, 1, 0, 0, 0, 547, 549, 3, 86, 43, 0, 548, 547, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 548, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 37, 1, 0, 0, 0, 552, 554, 3, 88, 44, 0, 553, 552, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 553, 1, 0, 0, 0, 555, 556, 1, 0, 0, 0, 556, 39, 1, 0, 0, 0, 557, 559, 3, 90, 45, 0, 558, 557, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 558, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 41, 1, 0, 0, 0, 562, 564, 3, 92, 46, 0, 563, 562, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 563, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 43, 1, 0, 0, 0, 567, 569, 3, 94, 47, 0, 568, 567, 1, 0, 0, 0, 569, 570, 1, 0, 0, 0, 570, 568, 1, 0, 0, 0, 570, 571, 1, 0, 0, 0, 571, 45, 1, 0, 0, 0, 572, 574, 3, 96, 48, 0, 573, 572, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 573, 1, 0, 0, 0, 575, 576, 1, 0, 0, 0, 576, 47, 1, 0, 0, 0, 577, 579, 3, 98, 49, 0, 578, 577, 1, 0, 0, 0, 579, 580, 1, 0, 0, 0, 580, 578, 1, 0, 0, 0, 580, 581, 1, 0, 0, 0, 581, 49, 1, 0, 0, 0, 582, 584, 3, 100, 50, 0, 583, 582, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 583, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 51, 1, 0, 0, 0, 587, 589, 3, 102, 51, 0, 588, 587, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 588, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 53, 1, 0, 0, 0, 592, 594, 3, 104, 52, 0, 593, 592, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 593, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 55, 1, 0, 0, 0, 597, 599, 3, 106, 53, 0, 598, 597, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 598, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 57, 1, 0, 0, 0, 602, 604, 3, 108, 54, 0, 603, 602, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 603, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 59, 1, 0, 0, 0, 607, 609, 3, 110, 55, 0, 608, 607, 1, 0, 0, 0, 609, 610, 1, 0, 0, 0, 610, 608, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 61, 1, 0, 0, 0, 612, 614, 3, 112, 56, 0, 613, 612, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 613, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 63, 1, 0, 0, 0, 617, 618, 5, 149, 0, 0, 618, 619, 5, 3, 0, 0, 619, 620, 5, 1, 0, 0, 620, 621, 3, 114, 57, 0, 621, 622, 3, 230, 115, 0, 622, 624, 3, 232, 116, 0, 623, 625, 3, 352, 176, 0, 624, 623, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 627, 1, 0, 0, 0, 626, 628, 3, 180, 90, 0, 627, 626, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 630, 3, 244, 122, 0, 630, 632, 3, 212, 106, 0, 631, 633, 3, 246, 123, 0, 632, 631, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 635, 5, 2, 0, 0, 635, 636, 5, 4, 0, 0, 636, 65, 1, 0, 0, 0, 637, 638, 5, 149, 0, 0, 638, 639, 5, 3, 0, 0, 639, 640, 5, 1, 0, 0, 640, 642, 3, 116, 58, 0, 641, 643, 3, 166, 83, 0, 642, 641, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 645, 1, 0, 0, 0, 644, 646, 3, 196, 98, 0, 645, 644, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 648, 1, 0, 0, 0, 647, 649, 3, 198, 99, 0, 648, 647, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 651, 1, 0, 0, 0, 650, 652, 3, 168, 84, 0, 651, 650, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 654, 1, 0, 0, 0, 653, 655, 3, 372, 186, 0, 654, 653, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 5, 2, 0, 0, 657, 658, 5, 4, 0, 0, 658, 67, 1, 0, 0, 0, 659, 660, 5, 149, 0, 0, 660, 661, 5, 3, 0, 0, 661, 662, 5, 1, 0, 0, 662, 663, 3, 118, 59, 0, 663, 665, 3, 260, 130, 0, 664, 666, 3, 262, 131, 0, 665, 664, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 668, 3, 346, 173, 0, 668, 669, 3, 264, 132, 0, 669, 670, 3, 266, 133, 0, 670, 672, 3, 268, 134, 0, 671, 673, 3, 270, 135, 0, 672, 671, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 675, 1, 0, 0, 0, 674, 676, 3, 272, 136, 0, 675, 674, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 677, 1, 0, 0, 0, 677, 678, 5, 2, 0, 0, 678, 679, 5, 4, 0, 0, 679, 69, 1, 0, 0, 0, 680, 681, 5, 149, 0, 0, 681, 682, 5, 3, 0, 0, 682, 683, 5, 1, 0, 0, 683, 685, 3, 120, 60, 0, 684, 686, 3, 352, 176, 0, 685, 684, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 688, 1, 0, 0, 0, 687, 689, 3, 212, 106, 0, 688, 687, 1, 0, 0, 0, 688, 689, 1, 0, 0, 0, 689, 690, 1, 0, 0, 0, 690, 691, 5, 2, 0, 0, 691, 692, 5, 4, 0, 0, 692, 71, 1, 0, 0, 0, 693, 694, 5, 149, 0, 0, 694, 695, 5, 3, 0, 0, 695, 696, 5, 1, 0, 0, 696, 697, 3, 122, 61, 0, 697, 698, 3, 170, 85, 0, 698, 699, 3, 172, 86, 0, 699, 700, 3, 174, 87, 0, 700, 701, 3, 176, 88, 0, 701, 702, 5, 2, 0, 0, 702, 703, 5, 4, 0, 0, 703, 73, 1, 0, 0, 0, 704, 705, 5, 149, 0, 0, 705, 706, 5, 3, 0, 0, 706, 707, 5, 1, 0, 0, 707, 708, 3, 124, 62, 0, 708, 710, 3, 218, 109, 0, 709, 711, 3, 356, 178, 0, 710, 709, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 714, 3, 358, 179, 0, 713, 715, 3, 220, 110, 0, 714, 713, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 717, 1, 0, 0, 0, 716, 718, 3, 212, 106, 0, 717, 716, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 719, 1, 0, 0, 0, 719, 720, 3, 222, 111, 0, 720, 721, 5, 2, 0, 0, 721, 722, 5, 4, 0, 0, 722, 75, 1, 0, 0, 0, 723, 724, 5, 149, 0, 0, 724, 725, 5, 3, 0, 0, 725, 726, 5, 1, 0, 0, 726, 728, 3, 126, 63, 0, 727, 729, 3, 180, 90, 0, 728, 727, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 731, 1, 0, 0, 0, 730, 732, 3, 178, 89, 0, 731, 730, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 734, 1, 0, 0, 0, 733, 735, 3, 182, 91, 0, 734, 733, 1, 0, 0, 0, 734, 735, 1, 0, 0, 0, 735, 737, 1, 0, 0, 0, 736, 738, 3, 178, 89, 0, 737, 736, 1, 0, 0, 0, 737, 738, 1, 0, 0, 0, 738, 740, 1, 0, 0, 0, 739, 741, 3, 186, 93, 0, 740, 739, 1, 0, 0, 0, 740, 741, 1, 0, 0, 0, 741, 743, 1, 0, 0, 0, 742, 744, 3, 188, 94, 0, 743, 742, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 746, 1, 0, 0, 0, 745, 747, 3, 184, 92, 0, 746, 745, 1, 0, 0, 0, 746, 747, 1, 0, 0, 0, 747, 749, 1, 0, 0, 0, 748, 750, 3, 252, 126, 0, 749, 748, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 752, 1, 0, 0, 0, 751, 753, 3, 212, 106, 0, 752, 751, 1, 0, 0, 0, 752, 753, 1, 0, 0, 0, 753, 755, 1, 0, 0, 0, 754, 756, 3, 214, 107, 0, 755, 754, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 758, 1, 0, 0, 0, 757, 759, 3, 258, 129, 0, 758, 757, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 761, 1, 0, 0, 0, 760, 762, 3, 256, 128, 0, 761, 760, 1, 0, 0, 0, 761, 762, 1, 0, 0, 0, 762, 764, 1, 0, 0, 0, 763, 765, 3, 216, 108, 0, 764, 763, 1, 0, 0, 0, 764, 765, 1, 0, 0, 0, 765, 767, 1, 0, 0, 0, 766, 768, 3, 190, 95, 0, 767, 766, 1, 0, 0, 0, 767, 768, 1, 0, 0, 0, 768, 770, 1, 0, 0, 0, 769, 771, 3, 254, 127, 0, 770, 769, 1, 0, 0, 0, 770, 771, 1, 0, 0, 0, 771, 773, 1, 0, 0, 0, 772, 774, 3, 192, 96, 0, 773, 772, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 776, 1, 0, 0, 0, 775, 777, 3, 194, 97, 0, 776, 775, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 778, 1, 0, 0, 0, 778, 779, 5, 2, 0, 0, 779, 780, 5, 4, 0, 0, 780, 77, 1, 0, 0, 0, 781, 782, 5, 149, 0, 0, 782, 783, 5, 3, 0, 0, 783, 784, 5, 1, 0, 0, 784, 785, 3, 128, 64, 0, 785, 786, 3, 218, 109, 0, 786, 787, 3, 220, 110, 0, 787, 788, 3, 222, 111, 0, 788, 789, 5, 2, 0, 0, 789, 790, 5, 4, 0, 0, 790, 79, 1, 0, 0, 0, 791, 792, 5, 149, 0, 0, 792, 793, 5, 3, 0, 0, 793, 794, 5, 1, 0, 0, 794, 795, 3, 130, 65, 0, 795, 797, 3, 200, 100, 0, 796, 798, 3, 180, 90, 0, 797, 796, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 800, 1, 0, 0, 0, 799, 801, 3, 188, 94, 0, 800, 799, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 803, 1, 0, 0, 0, 802, 804, 3, 186, 93, 0, 803, 802, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 806, 1, 0, 0, 0, 805, 807, 3, 212, 106, 0, 806, 805, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 809, 1, 0, 0, 0, 808, 810, 3, 214, 107, 0, 809, 808, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 813, 3, 216, 108, 0, 812, 814, 3, 190, 95, 0, 813, 812, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 814, 816, 1, 0, 0, 0, 815, 817, 3, 192, 96, 0, 816, 815, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 819, 1, 0, 0, 0, 818, 820, 3, 194, 97, 0, 819, 818, 1, 0, 0, 0, 819, 820, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 822, 5, 2, 0, 0, 822, 823, 5, 4, 0, 0, 823, 81, 1, 0, 0, 0, 824, 825, 5, 149, 0, 0, 825, 826, 5, 3, 0, 0, 826, 827, 5, 1, 0, 0, 827, 828, 3, 132, 66, 0, 828, 829, 3, 218, 109, 0, 829, 830, 3, 220, 110, 0, 830, 831, 3, 222, 111, 0, 831, 832, 5, 2, 0, 0, 832, 833, 5, 4, 0, 0, 833, 83, 1, 0, 0, 0, 834, 835, 5, 149, 0, 0, 835, 836, 5, 3, 0, 0, 836, 837, 5, 1, 0, 0, 837, 838, 3, 134, 67, 0, 838, 839, 3, 230, 115, 0, 839, 840, 3, 232, 116, 0, 840, 842, 3, 234, 117, 0, 841, 843, 3, 180, 90, 0, 842, 841, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 845, 1, 0, 0, 0, 844, 846, 3, 352, 176, 0, 845, 844, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 848, 3, 244, 122, 0, 848, 850, 3, 212, 106, 0, 849, 851, 3, 202, 101, 0, 850, 849, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 853, 1, 0, 0, 0, 852, 854, 3, 210, 105, 0, 853, 852, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 857, 3, 246, 123, 0, 856, 858, 3, 248, 124, 0, 857, 856, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 860, 3, 250, 125, 0, 860, 861, 5, 2, 0, 0, 861, 862, 5, 4, 0, 0, 862, 85, 1, 0, 0, 0, 863, 864, 5, 149, 0, 0, 864, 865, 5, 3, 0, 0, 865, 866, 5, 1, 0, 0, 866, 867, 3, 136, 68, 0, 867, 868, 3, 236, 118, 0, 868, 869, 3, 230, 115, 0, 869, 870, 3, 232, 116, 0, 870, 871, 3, 238, 119, 0, 871, 872, 3, 240, 120, 0, 872, 873, 3, 244, 122, 0, 873, 874, 3, 212, 106, 0, 874, 875, 3, 242, 121, 0, 875, 876, 3, 246, 123, 0, 876, 877, 5, 2, 0, 0, 877, 878, 5, 4, 0, 0, 878, 87, 1, 0, 0, 0, 879, 880, 5, 149, 0, 0, 880, 881, 5, 3, 0, 0, 881, 882, 5, 1, 0, 0, 882, 884, 3, 138, 69, 0, 883, 885, 3, 274, 137, 0, 884, 883, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 888, 3, 230, 115, 0, 887, 889, 3, 352, 176, 0, 888, 887, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 891, 1, 0, 0, 0, 890, 892, 3, 354, 177, 0, 891, 890, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 894, 1, 0, 0, 0, 893, 895, 3, 304, 152, 0, 894, 893, 1, 0, 0, 0, 894, 895, 1, 0, 0, 0, 895, 897, 1, 0, 0, 0, 896, 898, 3, 306, 153, 0, 897, 896, 1, 0, 0, 0, 897, 898, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 901, 3, 308, 154, 0, 900, 902, 3, 310, 155, 0, 901, 900, 1, 0, 0, 0, 901, 902, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 905, 3, 312, 156, 0, 904, 906, 3, 316, 158, 0, 905, 904, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 908, 1, 0, 0, 0, 907, 909, 3, 314, 157, 0, 908, 907, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 912, 3, 318, 159, 0, 911, 913, 3, 320, 160, 0, 912, 911, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 915, 1, 0, 0, 0, 914, 916, 3, 322, 161, 0, 915, 914, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 917, 1, 0, 0, 0, 917, 918, 3, 324, 162, 0, 918, 919, 5, 2, 0, 0, 919, 920, 5, 4, 0, 0, 920, 89, 1, 0, 0, 0, 921, 922, 5, 149, 0, 0, 922, 923, 5, 3, 0, 0, 923, 924, 5, 1, 0, 0, 924, 925, 3, 140, 70, 0, 925, 927, 3, 346, 173, 0, 926, 928, 3, 212, 106, 0, 927, 926, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 930, 3, 214, 107, 0, 930, 931, 3, 348, 174, 0, 931, 932, 3, 216, 108, 0, 932, 933, 5, 2, 0, 0, 933, 934, 5, 4, 0, 0, 934, 91, 1, 0, 0, 0, 935, 936, 5, 149, 0, 0, 936, 937, 5, 3, 0, 0, 937, 938, 5, 1, 0, 0, 938, 939, 3, 142, 71, 0, 939, 940, 3, 218, 109, 0, 940, 941, 3, 220, 110, 0, 941, 942, 3, 222, 111, 0, 942, 943, 5, 2, 0, 0, 943, 944, 5, 4, 0, 0, 944, 93, 1, 0, 0, 0, 945, 946, 5, 149, 0, 0, 946, 947, 5, 3, 0, 0, 947, 948, 5, 1, 0, 0, 948, 950, 3, 144, 72, 0, 949, 951, 3, 164, 82, 0, 950, 949, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 953, 3, 218, 109, 0, 953, 955, 3, 220, 110, 0, 954, 956, 3, 326, 163, 0, 955, 954, 1, 0, 0, 0, 955, 956, 1, 0, 0, 0, 956, 958, 1, 0, 0, 0, 957, 959, 3, 328, 164, 0, 958, 957, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 961, 1, 0, 0, 0, 960, 962, 3, 212, 106, 0, 961, 960, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 964, 1, 0, 0, 0, 963, 965, 3, 330, 165, 0, 964, 963, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 967, 1, 0, 0, 0, 966, 968, 3, 332, 166, 0, 967, 966, 1, 0, 0, 0, 967, 968, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 970, 3, 222, 111, 0, 970, 971, 3, 334, 167, 0, 971, 973, 3, 338, 169, 0, 972, 974, 3, 340, 170, 0, 973, 972, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 976, 5, 2, 0, 0, 976, 977, 5, 4, 0, 0, 977, 95, 1, 0, 0, 0, 978, 979, 5, 149, 0, 0, 979, 980, 5, 3, 0, 0, 980, 981, 5, 1, 0, 0, 981, 982, 3, 146, 73, 0, 982, 983, 3, 218, 109, 0, 983, 984, 3, 220, 110, 0, 984, 985, 3, 326, 163, 0, 985, 986, 3, 328, 164, 0, 986, 987, 3, 212, 106, 0, 987, 988, 3, 330, 165, 0, 988, 989, 3, 332, 166, 0, 989, 990, 3, 222, 111, 0, 990, 991, 3, 334, 167, 0, 991, 992, 3, 336, 168, 0, 992, 993, 5, 2, 0, 0, 993, 994, 5, 4, 0, 0, 994, 97, 1, 0, 0, 0, 995, 996, 5, 149, 0, 0, 996, 997, 5, 3, 0, 0, 997, 998, 5, 1, 0, 0, 998, 999, 3, 148, 74, 0, 999, 1000, 3, 218, 109, 0, 1000, 1001, 3, 220, 110, 0, 1001, 1002, 3, 222, 111, 0, 1002, 1003, 5, 2, 0, 0, 1003, 1004, 5, 4, 0, 0, 1004, 99, 1, 0, 0, 0, 1005, 1006, 5, 149, 0, 0, 1006, 1007, 5, 3, 0, 0, 1007, 1008, 5, 1, 0, 0, 1008, 1010, 3, 150, 75, 0, 1009, 1011, 3, 212, 106, 0, 1010, 1009, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1013, 1, 0, 0, 0, 1012, 1014, 3, 196, 98, 0, 1013, 1012, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1016, 1, 0, 0, 0, 1015, 1017, 3, 198, 99, 0, 1016, 1015, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1019, 1, 0, 0, 0, 1018, 1020, 3, 168, 84, 0, 1019, 1018, 1, 0, 0, 0, 1019, 1020, 1, 0, 0, 0, 1020, 1022, 1, 0, 0, 0, 1021, 1023, 3, 342, 171, 0, 1022, 1021, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1025, 1, 0, 0, 0, 1024, 1026, 3, 344, 172, 0, 1025, 1024, 1, 0, 0, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1028, 5, 2, 0, 0, 1028, 1029, 5, 4, 0, 0, 1029, 101, 1, 0, 0, 0, 1030, 1031, 5, 149, 0, 0, 1031, 1032, 5, 3, 0, 0, 1032, 1033, 5, 1, 0, 0, 1033, 1034, 3, 152, 76, 0, 1034, 1035, 3, 200, 100, 0, 1035, 1037, 3, 212, 106, 0, 1036, 1038, 3, 214, 107, 0, 1037, 1036, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1040, 3, 216, 108, 0, 1040, 1041, 5, 2, 0, 0, 1041, 1042, 5, 4, 0, 0, 1042, 103, 1, 0, 0, 0, 1043, 1044, 5, 149, 0, 0, 1044, 1045, 5, 3, 0, 0, 1045, 1046, 5, 1, 0, 0, 1046, 1048, 3, 154, 77, 0, 1047, 1049, 3, 350, 175, 0, 1048, 1047, 1, 0, 0, 0, 1048, 1049, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1051, 3, 352, 176, 0, 1051, 1052, 3, 212, 106, 0, 1052, 1053, 5, 2, 0, 0, 1053, 1054, 5, 4, 0, 0, 1054, 105, 1, 0, 0, 0, 1055, 1056, 5, 149, 0, 0, 1056, 1057, 5, 3, 0, 0, 1057, 1058, 5, 1, 0, 0, 1058, 1059, 3, 156, 78, 0, 1059, 1060, 3, 366, 183, 0, 1060, 1062, 3, 368, 184, 0, 1061, 1063, 3, 370, 185, 0, 1062, 1061, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1064, 1, 0, 0, 0, 1064, 1065, 5, 2, 0, 0, 1065, 1066, 5, 4, 0, 0, 1066, 107, 1, 0, 0, 0, 1067, 1068, 5, 149, 0, 0, 1068, 1069, 5, 3, 0, 0, 1069, 1070, 5, 1, 0, 0, 1070, 1071, 3, 158, 79, 0, 1071, 1072, 3, 204, 102, 0, 1072, 1073, 3, 206, 103, 0, 1073, 1074, 5, 2, 0, 0, 1074, 1075, 5, 4, 0, 0, 1075, 109, 1, 0, 0, 0, 1076, 1077, 5, 149, 0, 0, 1077, 1078, 5, 3, 0, 0, 1078, 1079, 5, 1, 0, 0, 1079, 1081, 3, 160, 80, 0, 1080, 1082, 3, 208, 104, 0, 1081, 1080, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1084, 3, 246, 123, 0, 1084, 1085, 5, 2, 0, 0, 1085, 1086, 5, 4, 0, 0, 1086, 111, 1, 0, 0, 0, 1087, 1088, 5, 149, 0, 0, 1088, 1089, 5, 3, 0, 0, 1089, 1090, 5, 1, 0, 0, 1090, 1091, 3, 162, 81, 0, 1091, 1092, 3, 200, 100, 0, 1092, 1094, 3, 376, 188, 0, 1093, 1095, 3, 212, 106, 0, 1094, 1093, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1097, 3, 214, 107, 0, 1097, 1098, 3, 216, 108, 0, 1098, 1099, 3, 378, 189, 0, 1099, 1100, 5, 2, 0, 0, 1100, 1101, 5, 4, 0, 0, 1101, 113, 1, 0, 0, 0, 1102, 1103, 5, 12, 0, 0, 1103, 1104, 5, 3, 0, 0, 1104, 1105, 5, 20, 0, 0, 1105, 1106, 5, 4, 0, 0, 1106, 115, 1, 0, 0, 0, 1107, 1108, 5, 12, 0, 0, 1108, 1109, 5, 3, 0, 0, 1109, 1110, 5, 21, 0, 0, 1110, 1111, 5, 4, 0, 0, 1111, 117, 1, 0, 0, 0, 1112, 1113, 5, 12, 0, 0, 1113, 1114, 5, 3, 0, 0, 1114, 1115, 5, 22, 0, 0, 1115, 1116, 5, 4, 0, 0, 1116, 119, 1, 0, 0, 0, 1117, 1118, 5, 12, 0, 0, 1118, 1119, 5, 3, 0, 0, 1119, 1120, 5, 23, 0, 0, 1120, 1121, 5, 4, 0, 0, 1121, 121, 1, 0, 0, 0, 1122, 1123, 5, 12, 0, 0, 1123, 1124, 5, 3, 0, 0, 1124, 1125, 5, 24, 0, 0, 1125, 1126, 5, 4, 0, 0, 1126, 123, 1, 0, 0, 0, 1127, 1128, 5, 12, 0, 0, 1128, 1129, 5, 3, 0, 0, 1129, 1130, 5, 25, 0, 0, 1130, 1131, 5, 4, 0, 0, 1131, 125, 1, 0, 0, 0, 1132, 1133, 5, 12, 0, 0, 1133, 1134, 5, 3, 0, 0, 1134, 1135, 5, 26, 0, 0, 1135, 1136, 5, 4, 0, 0, 1136, 127, 1, 0, 0, 0, 1137, 1138, 5, 12, 0, 0, 1138, 1139, 5, 3, 0, 0, 1139, 1140, 5, 27, 0, 0, 1140, 1141, 5, 4, 0, 0, 1141, 129, 1, 0, 0, 0, 1142, 1143, 5, 12, 0, 0, 1143, 1144, 5, 3, 0, 0, 1144, 1145, 5, 28, 0, 0, 1145, 1146, 5, 4, 0, 0, 1146, 131, 1, 0, 0, 0, 1147, 1148, 5, 12, 0, 0, 1148, 1149, 5, 3, 0, 0, 1149, 1150, 5, 29, 0, 0, 1150, 1151, 5, 4, 0, 0, 1151, 133, 1, 0, 0, 0, 1152, 1153, 5, 12, 0, 0, 1153, 1154, 5, 3, 0, 0, 1154, 1155, 5, 30, 0, 0, 1155, 1156, 5, 4, 0, 0, 1156, 135, 1, 0, 0, 0, 1157, 1158, 5, 12, 0, 0, 1158, 1159, 5, 3, 0, 0, 1159, 1160, 5, 31, 0, 0, 1160, 1161, 5, 4, 0, 0, 1161, 137, 1, 0, 0, 0, 1162, 1163, 5, 12, 0, 0, 1163, 1164, 5, 3, 0, 0, 1164, 1165, 5, 32, 0, 0, 1165, 1166, 5, 4, 0, 0, 1166, 139, 1, 0, 0, 0, 1167, 1168, 5, 12, 0, 0, 1168, 1169, 5, 3, 0, 0, 1169, 1170, 5, 33, 0, 0, 1170, 1171, 5, 4, 0, 0, 1171, 141, 1, 0, 0, 0, 1172, 1173, 5, 12, 0, 0, 1173, 1174, 5, 3, 0, 0, 1174, 1175, 5, 34, 0, 0, 1175, 1176, 5, 4, 0, 0, 1176, 143, 1, 0, 0, 0, 1177, 1178, 5, 12, 0, 0, 1178, 1179, 5, 3, 0, 0, 1179, 1180, 5, 35, 0, 0, 1180, 1181, 5, 4, 0, 0, 1181, 145, 1, 0, 0, 0, 1182, 1183, 5, 12, 0, 0, 1183, 1184, 5, 3, 0, 0, 1184, 1185, 5, 36, 0, 0, 1185, 1186, 5, 4, 0, 0, 1186, 147, 1, 0, 0, 0, 1187, 1188, 5, 12, 0, 0, 1188, 1189, 5, 3, 0, 0, 1189, 1190, 5, 37, 0, 0, 1190, 1191, 5, 4, 0, 0, 1191, 149, 1, 0, 0, 0, 1192, 1193, 5, 12, 0, 0, 1193, 1194, 5, 3, 0, 0, 1194, 1195, 5, 38, 0, 0, 1195, 1196, 5, 4, 0, 0, 1196, 151, 1, 0, 0, 0, 1197, 1198, 5, 12, 0, 0, 1198, 1199, 5, 3, 0, 0, 1199, 1200, 5, 39, 0, 0, 1200, 1201, 5, 4, 0, 0, 1201, 153, 1, 0, 0, 0, 1202, 1203, 5, 12, 0, 0, 1203, 1204, 5, 3, 0, 0, 1204, 1205, 5, 40, 0, 0, 1205, 1206, 5, 4, 0, 0, 1206, 155, 1, 0, 0, 0, 1207, 1208, 5, 12, 0, 0, 1208, 1209, 5, 3, 0, 0, 1209, 1210, 5, 41, 0, 0, 1210, 1211, 5, 4, 0, 0, 1211, 157, 1, 0, 0, 0, 1212, 1213, 5, 12, 0, 0, 1213, 1214, 5, 3, 0, 0, 1214, 1215, 5, 42, 0, 0, 1215, 1216, 5, 4, 0, 0, 1216, 159, 1, 0, 0, 0, 1217, 1218, 5, 12, 0, 0, 1218, 1219, 5, 3, 0, 0, 1219, 1220, 5, 43, 0, 0, 1220, 1221, 5, 4, 0, 0, 1221, 161, 1, 0, 0, 0, 1222, 1223, 5, 12, 0, 0, 1223, 1224, 5, 3, 0, 0, 1224, 1225, 5, 44, 0, 0, 1225, 1226, 5, 4, 0, 0, 1226, 163, 1, 0, 0, 0, 1227, 1228, 5, 45, 0, 0, 1228, 1229, 5, 3, 0, 0, 1229, 1230, 5, 13, 0, 0, 1230, 1231, 5, 4, 0, 0, 1231, 165, 1, 0, 0, 0, 1232, 1233, 5, 46, 0, 0, 1233, 1234, 5, 3, 0, 0, 1234, 1235, 5, 149, 0, 0, 1235, 1236, 5, 4, 0, 0, 1236, 167, 1, 0, 0, 0, 1237, 1238, 5, 47, 0, 0, 1238, 1239, 5, 3, 0, 0, 1239, 1240, 5, 149, 0, 0, 1240, 1241, 5, 4, 0, 0, 1241, 169, 1, 0, 0, 0, 1242, 1243, 5, 48, 0, 0, 1243, 1244, 5, 3, 0, 0, 1244, 1245, 5, 149, 0, 0, 1245, 1246, 5, 4, 0, 0, 1246, 171, 1, 0, 0, 0, 1247, 1248, 5, 49, 0, 0, 1248, 1249, 5, 3, 0, 0, 1249, 1250, 5, 13, 0, 0, 1250, 1251, 5, 4, 0, 0, 1251, 173, 1, 0, 0, 0, 1252, 1253, 5, 50, 0, 0, 1253, 1254, 5, 3, 0, 0, 1254, 1255, 5, 149, 0, 0, 1255, 1256, 5, 4, 0, 0, 1256, 175, 1, 0, 0, 0, 1257, 1258, 5, 51, 0, 0, 1258, 1259, 5, 3, 0, 0, 1259, 1260, 3, 384, 192, 0, 1260, 1261, 5, 4, 0, 0, 1261, 177, 1, 0, 0, 0, 1262, 1263, 5, 52, 0, 0, 1263, 1264, 5, 3, 0, 0, 1264, 1265, 5, 13, 0, 0, 1265, 1266, 5, 4, 0, 0, 1266, 179, 1, 0, 0, 0, 1267, 1268, 5, 53, 0, 0, 1268, 1269, 5, 3, 0, 0, 1269, 1270, 3, 384, 192, 0, 1270, 1271, 5, 4, 0, 0, 1271, 181, 1, 0, 0, 0, 1272, 1273, 5, 54, 0, 0, 1273, 1274, 5, 3, 0, 0, 1274, 1275, 3, 384, 192, 0, 1275, 1276, 5, 4, 0, 0, 1276, 183, 1, 0, 0, 0, 1277, 1278, 5, 55, 0, 0, 1278, 1279, 5, 3, 0, 0, 1279, 1280, 3, 384, 192, 0, 1280, 1281, 5, 4, 0, 0, 1281, 185, 1, 0, 0, 0, 1282, 1283, 5, 56, 0, 0, 1283, 1284, 5, 3, 0, 0, 1284, 1285, 5, 13, 0, 0, 1285, 1286, 5, 4, 0, 0, 1286, 187, 1, 0, 0, 0, 1287, 1288, 5, 57, 0, 0, 1288, 1289, 5, 3, 0, 0, 1289, 1290, 5, 13, 0, 0, 1290, 1291, 5, 4, 0, 0, 1291, 189, 1, 0, 0, 0, 1292, 1293, 5, 58, 0, 0, 1293, 1294, 5, 3, 0, 0, 1294, 1295, 5, 13, 0, 0, 1295, 1296, 5, 4, 0, 0, 1296, 191, 1, 0, 0, 0, 1297, 1298, 5, 59, 0, 0, 1298, 1299, 5, 3, 0, 0, 1299, 1300, 5, 13, 0, 0, 1300, 1301, 5, 4, 0, 0, 1301, 193, 1, 0, 0, 0, 1302, 1303, 5, 60, 0, 0, 1303, 1304, 5, 3, 0, 0, 1304, 1305, 5, 13, 0, 0, 1305, 1306, 5, 4, 0, 0, 1306, 195, 1, 0, 0, 0, 1307, 1308, 5, 61, 0, 0, 1308, 1309, 5, 3, 0, 0, 1309, 1310, 3, 382, 191, 0, 1310, 1311, 5, 4, 0, 0, 1311, 197, 1, 0, 0, 0, 1312, 1313, 5, 62, 0, 0, 1313, 1314, 5, 3, 0, 0, 1314, 1315, 3, 226, 113, 0, 1315, 1316, 5, 4, 0, 0, 1316, 199, 1, 0, 0, 0, 1317, 1318, 5, 63, 0, 0, 1318, 1319, 5, 3, 0, 0, 1319, 1320, 3, 224, 112, 0, 1320, 1321, 5, 4, 0, 0, 1321, 201, 1, 0, 0, 0, 1322, 1323, 5, 64, 0, 0, 1323, 1324, 5, 3, 0, 0, 1324, 1325, 3, 382, 191, 0, 1325, 1326, 5, 4, 0, 0, 1326, 203, 1, 0, 0, 0, 1327, 1328, 5, 65, 0, 0, 1328, 1329, 5, 3, 0, 0, 1329, 1330, 5, 150, 0, 0, 1330, 1331, 5, 4, 0, 0, 1331, 205, 1, 0, 0, 0, 1332, 1333, 5, 66, 0, 0, 1333, 1334, 5, 3, 0, 0, 1334, 1338, 5, 1, 0, 0, 1335, 1337, 3, 364, 182, 0, 1336, 1335, 1, 0, 0, 0, 1337, 1340, 1, 0, 0, 0, 1338, 1336, 1, 0, 0, 0, 1338, 1339, 1, 0, 0, 0, 1339, 1341, 1, 0, 0, 0, 1340, 1338, 1, 0, 0, 0, 1341, 1342, 5, 2, 0, 0, 1342, 1343, 5, 4, 0, 0, 1343, 207, 1, 0, 0, 0, 1344, 1345, 5, 67, 0, 0, 1345, 1346, 5, 3, 0, 0, 1346, 1347, 5, 149, 0, 0, 1347, 1348, 5, 4, 0, 0, 1348, 209, 1, 0, 0, 0, 1349, 1350, 5, 68, 0, 0, 1350, 1351, 5, 3, 0, 0, 1351, 1352, 3, 224, 112, 0, 1352, 1353, 5, 4, 0, 0, 1353, 211, 1, 0, 0, 0, 1354, 1355, 5, 69, 0, 0, 1355, 1356, 5, 3, 0, 0, 1356, 1357, 3, 382, 191, 0, 1357, 1358, 5, 4, 0, 0, 1358, 213, 1, 0, 0, 0, 1359, 1360, 5, 70, 0, 0, 1360, 1361, 5, 3, 0, 0, 1361, 1362, 3, 384, 192, 0, 1362, 1363, 5, 4, 0, 0, 1363, 215, 1, 0, 0, 0, 1364, 1365, 5, 71, 0, 0, 1365, 1366, 5, 3, 0, 0, 1366, 1367, 3, 382, 191, 0, 1367, 1368, 5, 4, 0, 0, 1368, 217, 1, 0, 0, 0, 1369, 1370, 5, 72, 0, 0, 1370, 1371, 5, 3, 0, 0, 1371, 1372, 5, 13, 0, 0, 1372, 1373, 5, 4, 0, 0, 1373, 219, 1, 0, 0, 0, 1374, 1375, 5, 73, 0, 0, 1375, 1376, 5, 3, 0, 0, 1376, 1377, 3, 224, 112, 0, 1377, 1378, 5, 4, 0, 0, 1378, 221, 1, 0, 0, 0, 1379, 1380, 5, 74, 0, 0, 1380, 1381, 5, 3, 0, 0, 1381, 1382, 5, 13, 0, 0, 1382, 1383, 5, 4, 0, 0, 1383, 223, 1, 0, 0, 0, 1384, 1389, 5, 5, 0, 0, 1385, 1386, 5, 149, 0, 0, 1386, 1388, 5, 6, 0, 0, 1387, 1385, 1, 0, 0, 0, 1388, 1391, 1, 0, 0, 0, 1389, 1387, 1, 0, 0, 0, 1389, 1390, 1, 0, 0, 0, 1390, 1392, 1, 0, 0, 0, 1391, 1389, 1, 0, 0, 0, 1392, 1393, 5, 7, 0, 0, 1393, 225, 1, 0, 0, 0, 1394, 1395, 5, 5, 0, 0, 1395, 1411, 5, 7, 0, 0, 1396, 1397, 5, 5, 0, 0, 1397, 1402, 3, 384, 192, 0, 1398, 1399, 5, 6, 0, 0, 1399, 1401, 3, 384, 192, 0, 1400, 1398, 1, 0, 0, 0, 1401, 1404, 1, 0, 0, 0, 1402, 1400, 1, 0, 0, 0, 1402, 1403, 1, 0, 0, 0, 1403, 1406, 1, 0, 0, 0, 1404, 1402, 1, 0, 0, 0, 1405, 1407, 5, 6, 0, 0, 1406, 1405, 1, 0, 0, 0, 1406, 1407, 1, 0, 0, 0, 1407, 1408, 1, 0, 0, 0, 1408, 1409, 5, 7, 0, 0, 1409, 1411, 1, 0, 0, 0, 1410, 1394, 1, 0, 0, 0, 1410, 1396, 1, 0, 0, 0, 1411, 227, 1, 0, 0, 0, 1412, 1417, 5, 5, 0, 0, 1413, 1414, 5, 151, 0, 0, 1414, 1416, 5, 6, 0, 0, 1415, 1413, 1, 0, 0, 0, 1416, 1419, 1, 0, 0, 0, 1417, 1415, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1420, 1, 0, 0, 0, 1419, 1417, 1, 0, 0, 0, 1420, 1421, 5, 7, 0, 0, 1421, 229, 1, 0, 0, 0, 1422, 1423, 5, 75, 0, 0, 1423, 1424, 5, 3, 0, 0, 1424, 1425, 5, 149, 0, 0, 1425, 1426, 5, 4, 0, 0, 1426, 231, 1, 0, 0, 0, 1427, 1428, 5, 76, 0, 0, 1428, 1429, 5, 3, 0, 0, 1429, 1430, 3, 224, 112, 0, 1430, 1431, 5, 4, 0, 0, 1431, 233, 1, 0, 0, 0, 1432, 1433, 5, 77, 0, 0, 1433, 1434, 5, 3, 0, 0, 1434, 1435, 3, 224, 112, 0, 1435, 1436, 5, 4, 0, 0, 1436, 235, 1, 0, 0, 0, 1437, 1438, 5, 78, 0, 0, 1438, 1439, 5, 3, 0, 0, 1439, 1440, 3, 382, 191, 0, 1440, 1441, 5, 4, 0, 0, 1441, 237, 1, 0, 0, 0, 1442, 1443, 5, 79, 0, 0, 1443, 1444, 5, 3, 0, 0, 1444, 1445, 3, 382, 191, 0, 1445, 1446, 5, 4, 0, 0, 1446, 239, 1, 0, 0, 0, 1447, 1448, 5, 80, 0, 0, 1448, 1449, 5, 3, 0, 0, 1449, 1450, 3, 382, 191, 0, 1450, 1451, 5, 4, 0, 0, 1451, 241, 1, 0, 0, 0, 1452, 1453, 5, 81, 0, 0, 1453, 1454, 5, 3, 0, 0, 1454, 1455, 5, 13, 0, 0, 1455, 1456, 5, 4, 0, 0, 1456, 243, 1, 0, 0, 0, 1457, 1458, 5, 82, 0, 0, 1458, 1459, 5, 3, 0, 0, 1459, 1460, 3, 224, 112, 0, 1460, 1461, 5, 4, 0, 0, 1461, 245, 1, 0, 0, 0, 1462, 1463, 5, 83, 0, 0, 1463, 1464, 5, 3, 0, 0, 1464, 1465, 3, 384, 192, 0, 1465, 1466, 5, 4, 0, 0, 1466, 247, 1, 0, 0, 0, 1467, 1468, 5, 84, 0, 0, 1468, 1469, 5, 3, 0, 0, 1469, 1470, 5, 149, 0, 0, 1470, 1471, 5, 4, 0, 0, 1471, 249, 1, 0, 0, 0, 1472, 1473, 5, 85, 0, 0, 1473, 1474, 5, 3, 0, 0, 1474, 1475, 5, 150, 0, 0, 1475, 1476, 5, 4, 0, 0, 1476, 251, 1, 0, 0, 0, 1477, 1478, 5, 86, 0, 0, 1478, 1479, 5, 3, 0, 0, 1479, 1480, 5, 13, 0, 0, 1480, 1481, 5, 4, 0, 0, 1481, 253, 1, 0, 0, 0, 1482, 1483, 5, 87, 0, 0, 1483, 1484, 5, 3, 0, 0, 1484, 1485, 3, 384, 192, 0, 1485, 1486, 5, 4, 0, 0, 1486, 255, 1, 0, 0, 0, 1487, 1488, 5, 88, 0, 0, 1488, 1489, 5, 3, 0, 0, 1489, 1490, 3, 384, 192, 0, 1490, 1491, 5, 4, 0, 0, 1491, 257, 1, 0, 0, 0, 1492, 1493, 5, 89, 0, 0, 1493, 1494, 5, 3, 0, 0, 1494, 1495, 5, 13, 0, 0, 1495, 1496, 5, 4, 0, 0, 1496, 259, 1, 0, 0, 0, 1497, 1498, 5, 90, 0, 0, 1498, 1499, 5, 3, 0, 0, 1499, 1500, 3, 382, 191, 0, 1500, 1501, 5, 4, 0, 0, 1501, 261, 1, 0, 0, 0, 1502, 1503, 5, 91, 0, 0, 1503, 1504, 5, 3, 0, 0, 1504, 1505, 3, 382, 191, 0, 1505, 1506, 5, 4, 0, 0, 1506, 263, 1, 0, 0, 0, 1507, 1508, 5, 92, 0, 0, 1508, 1509, 5, 3, 0, 0, 1509, 1510, 3, 226, 113, 0, 1510, 1511, 5, 4, 0, 0, 1511, 265, 1, 0, 0, 0, 1512, 1513, 5, 93, 0, 0, 1513, 1514, 5, 3, 0, 0, 1514, 1515, 5, 13, 0, 0, 1515, 1516, 5, 4, 0, 0, 1516, 267, 1, 0, 0, 0, 1517, 1518, 5, 94, 0, 0, 1518, 1519, 5, 3, 0, 0, 1519, 1520, 3, 226, 113, 0, 1520, 1521, 5, 4, 0, 0, 1521, 269, 1, 0, 0, 0, 1522, 1523, 5, 95, 0, 0, 1523, 1524, 5, 3, 0, 0, 1524, 1525, 5, 13, 0, 0, 1525, 1526, 5, 4, 0, 0, 1526, 271, 1, 0, 0, 0, 1527, 1528, 5, 96, 0, 0, 1528, 1529, 5, 3, 0, 0, 1529, 1530, 3, 382, 191, 0, 1530, 1531, 5, 4, 0, 0, 1531, 273, 1, 0, 0, 0, 1532, 1533, 5, 97, 0, 0, 1533, 1534, 5, 3, 0, 0, 1534, 1536, 5, 1, 0, 0, 1535, 1537, 3, 282, 141, 0, 1536, 1535, 1, 0, 0, 0, 1536, 1537, 1, 0, 0, 0, 1537, 1539, 1, 0, 0, 0, 1538, 1540, 3, 380, 190, 0, 1539, 1538, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1542, 1, 0, 0, 0, 1541, 1543, 3, 278, 139, 0, 1542, 1541, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1545, 1, 0, 0, 0, 1544, 1546, 3, 276, 138, 0, 1545, 1544, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1548, 1, 0, 0, 0, 1547, 1549, 3, 280, 140, 0, 1548, 1547, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1551, 1, 0, 0, 0, 1550, 1552, 3, 284, 142, 0, 1551, 1550, 1, 0, 0, 0, 1551, 1552, 1, 0, 0, 0, 1552, 1554, 1, 0, 0, 0, 1553, 1555, 3, 286, 143, 0, 1554, 1553, 1, 0, 0, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1557, 1, 0, 0, 0, 1556, 1558, 3, 288, 144, 0, 1557, 1556, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1560, 1, 0, 0, 0, 1559, 1561, 3, 290, 145, 0, 1560, 1559, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1562, 1, 0, 0, 0, 1562, 1563, 5, 2, 0, 0, 1563, 1564, 5, 4, 0, 0, 1564, 275, 1, 0, 0, 0, 1565, 1566, 5, 98, 0, 0, 1566, 1567, 5, 3, 0, 0, 1567, 1568, 5, 13, 0, 0, 1568, 1569, 5, 4, 0, 0, 1569, 277, 1, 0, 0, 0, 1570, 1571, 5, 99, 0, 0, 1571, 1572, 5, 3, 0, 0, 1572, 1573, 5, 151, 0, 0, 1573, 1574, 5, 4, 0, 0, 1574, 279, 1, 0, 0, 0, 1575, 1576, 5, 100, 0, 0, 1576, 1577, 5, 3, 0, 0, 1577, 1578, 5, 13, 0, 0, 1578, 1579, 5, 4, 0, 0, 1579, 281, 1, 0, 0, 0, 1580, 1581, 5, 101, 0, 0, 1581, 1582, 5, 3, 0, 0, 1582, 1583, 7, 0, 0, 0, 1583, 1584, 5, 4, 0, 0, 1584, 283, 1, 0, 0, 0, 1585, 1586, 5, 102, 0, 0, 1586, 1587, 5, 3, 0, 0, 1587, 1588, 5, 13, 0, 0, 1588, 1589, 5, 4, 0, 0, 1589, 285, 1, 0, 0, 0, 1590, 1591, 5, 103, 0, 0, 1591, 1592, 5, 3, 0, 0, 1592, 1593, 5, 13, 0, 0, 1593, 1594, 5, 4, 0, 0, 1594, 287, 1, 0, 0, 0, 1595, 1596, 5, 104, 0, 0, 1596, 1597, 5, 3, 0, 0, 1597, 1598, 3, 384, 192, 0, 1598, 1599, 5, 4, 0, 0, 1599, 289, 1, 0, 0, 0, 1600, 1601, 5, 105, 0, 0, 1601, 1602, 5, 3, 0, 0, 1602, 1606, 5, 1, 0, 0, 1603, 1605, 3, 292, 146, 0, 1604, 1603, 1, 0, 0, 0, 1605, 1608, 1, 0, 0, 0, 1606, 1604, 1, 0, 0, 0, 1606, 1607, 1, 0, 0, 0, 1607, 1609, 1, 0, 0, 0, 1608, 1606, 1, 0, 0, 0, 1609, 1610, 5, 2, 0, 0, 1610, 1611, 5, 4, 0, 0, 1611, 291, 1, 0, 0, 0, 1612, 1613, 5, 149, 0, 0, 1613, 1614, 5, 3, 0, 0, 1614, 1616, 5, 1, 0, 0, 1615, 1617, 3, 294, 147, 0, 1616, 1615, 1, 0, 0, 0, 1616, 1617, 1, 0, 0, 0, 1617, 1619, 1, 0, 0, 0, 1618, 1620, 3, 296, 148, 0, 1619, 1618, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1622, 1, 0, 0, 0, 1621, 1623, 3, 298, 149, 0, 1622, 1621, 1, 0, 0, 0, 1622, 1623, 1, 0, 0, 0, 1623, 1625, 1, 0, 0, 0, 1624, 1626, 3, 300, 150, 0, 1625, 1624, 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1628, 1, 0, 0, 0, 1627, 1629, 3, 276, 138, 0, 1628, 1627, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1631, 1, 0, 0, 0, 1630, 1632, 3, 302, 151, 0, 1631, 1630, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1634, 1, 0, 0, 0, 1633, 1635, 3, 374, 187, 0, 1634, 1633, 1, 0, 0, 0, 1634, 1635, 1, 0, 0, 0, 1635, 1637, 1, 0, 0, 0, 1636, 1638, 3, 296, 148, 0, 1637, 1636, 1, 0, 0, 0, 1637, 1638, 1, 0, 0, 0, 1638, 1639, 1, 0, 0, 0, 1639, 1640, 5, 2, 0, 0, 1640, 1641, 5, 4, 0, 0, 1641, 293, 1, 0, 0, 0, 1642, 1643, 5, 106, 0, 0, 1643, 1644, 5, 3, 0, 0, 1644, 1645, 5, 151, 0, 0, 1645, 1646, 5, 4, 0, 0, 1646, 295, 1, 0, 0, 0, 1647, 1648, 5, 107, 0, 0, 1648, 1649, 5, 3, 0, 0, 1649, 1650, 5, 149, 0, 0, 1650, 1651, 5, 4, 0, 0, 1651, 297, 1, 0, 0, 0, 1652, 1653, 5, 108, 0, 0, 1653, 1654, 5, 3, 0, 0, 1654, 1655, 3, 382, 191, 0, 1655, 1656, 5, 4, 0, 0, 1656, 299, 1, 0, 0, 0, 1657, 1658, 5, 109, 0, 0, 1658, 1659, 5, 3, 0, 0, 1659, 1660, 3, 382, 191, 0, 1660, 1661, 5, 4, 0, 0, 1661, 301, 1, 0, 0, 0, 1662, 1663, 5, 110, 0, 0, 1663, 1664, 5, 3, 0, 0, 1664, 1665, 5, 151, 0, 0, 1665, 1666, 5, 4, 0, 0, 1666, 303, 1, 0, 0, 0, 1667, 1668, 5, 111, 0, 0, 1668, 1669, 5, 3, 0, 0, 1669, 1670, 5, 150, 0, 0, 1670, 1671, 5, 4, 0, 0, 1671, 305, 1, 0, 0, 0, 1672, 1673, 5, 112, 0, 0, 1673, 1674, 5, 3, 0, 0, 1674, 1675, 5, 151, 0, 0, 1675, 1676, 5, 4, 0, 0, 1676, 307, 1, 0, 0, 0, 1677, 1678, 5, 113, 0, 0, 1678, 1679, 5, 3, 0, 0, 1679, 1680, 5, 13, 0, 0, 1680, 1681, 5, 4, 0, 0, 1681, 309, 1, 0, 0, 0, 1682, 1683, 5, 114, 0, 0, 1683, 1684, 5, 3, 0, 0, 1684, 1685, 3, 226, 113, 0, 1685, 1686, 5, 4, 0, 0, 1686, 311, 1, 0, 0, 0, 1687, 1688, 5, 115, 0, 0, 1688, 1689, 5, 3, 0, 0, 1689, 1690, 5, 149, 0, 0, 1690, 1691, 5, 4, 0, 0, 1691, 313, 1, 0, 0, 0, 1692, 1693, 5, 116, 0, 0, 1693, 1694, 5, 3, 0, 0, 1694, 1695, 5, 149, 0, 0, 1695, 1696, 5, 4, 0, 0, 1696, 315, 1, 0, 0, 0, 1697, 1698, 5, 117, 0, 0, 1698, 1699, 5, 3, 0, 0, 1699, 1700, 3, 224, 112, 0, 1700, 1701, 5, 4, 0, 0, 1701, 317, 1, 0, 0, 0, 1702, 1703, 5, 118, 0, 0, 1703, 1704, 5, 3, 0, 0, 1704, 1705, 3, 382, 191, 0, 1705, 1706, 5, 4, 0, 0, 1706, 319, 1, 0, 0, 0, 1707, 1708, 5, 119, 0, 0, 1708, 1709, 5, 3, 0, 0, 1709, 1710, 3, 384, 192, 0, 1710, 1711, 5, 4, 0, 0, 1711, 1720, 1, 0, 0, 0, 1712, 1713, 5, 119, 0, 0, 1713, 1714, 5, 3, 0, 0, 1714, 1715, 5, 5, 0, 0, 1715, 1716, 3, 360, 180, 0, 1716, 1717, 5, 7, 0, 0, 1717, 1718, 5, 4, 0, 0, 1718, 1720, 1, 0, 0, 0, 1719, 1707, 1, 0, 0, 0, 1719, 1712, 1, 0, 0, 0, 1720, 321, 1, 0, 0, 0, 1721, 1722, 5, 120, 0, 0, 1722, 1723, 5, 3, 0, 0, 1723, 1724, 3, 382, 191, 0, 1724, 1725, 5, 4, 0, 0, 1725, 323, 1, 0, 0, 0, 1726, 1727, 5, 121, 0, 0, 1727, 1728, 5, 3, 0, 0, 1728, 1729, 3, 224, 112, 0, 1729, 1730, 5, 4, 0, 0, 1730, 325, 1, 0, 0, 0, 1731, 1732, 5, 122, 0, 0, 1732, 1733, 5, 3, 0, 0, 1733, 1734, 3, 226, 113, 0, 1734, 1735, 5, 4, 0, 0, 1735, 327, 1, 0, 0, 0, 1736, 1737, 5, 123, 0, 0, 1737, 1738, 5, 3, 0, 0, 1738, 1739, 3, 226, 113, 0, 1739, 1740, 5, 4, 0, 0, 1740, 329, 1, 0, 0, 0, 1741, 1742, 5, 124, 0, 0, 1742, 1743, 5, 3, 0, 0, 1743, 1744, 3, 226, 113, 0, 1744, 1745, 5, 4, 0, 0, 1745, 331, 1, 0, 0, 0, 1746, 1747, 5, 125, 0, 0, 1747, 1748, 5, 3, 0, 0, 1748, 1749, 3, 226, 113, 0, 1749, 1750, 5, 4, 0, 0, 1750, 333, 1, 0, 0, 0, 1751, 1752, 5, 126, 0, 0, 1752, 1753, 5, 3, 0, 0, 1753, 1754, 3, 382, 191, 0, 1754, 1755, 5, 4, 0, 0, 1755, 335, 1, 0, 0, 0, 1756, 1757, 5, 127, 0, 0, 1757, 1758, 5, 3, 0, 0, 1758, 1759, 5, 150, 0, 0, 1759, 1760, 5, 4, 0, 0, 1760, 337, 1, 0, 0, 0, 1761, 1762, 5, 128, 0, 0, 1762, 1763, 5, 3, 0, 0, 1763, 1764, 3, 382, 191, 0, 1764, 1765, 5, 4, 0, 0, 1765, 339, 1, 0, 0, 0, 1766, 1767, 5, 129, 0, 0, 1767, 1768, 5, 3, 0, 0, 1768, 1769, 5, 13, 0, 0, 1769, 1770, 5, 4, 0, 0, 1770, 341, 1, 0, 0, 0, 1771, 1772, 5, 130, 0, 0, 1772, 1773, 5, 3, 0, 0, 1773, 1774, 5, 149, 0, 0, 1774, 1775, 5, 4, 0, 0, 1775, 343, 1, 0, 0, 0, 1776, 1777, 5, 131, 0, 0, 1777, 1778, 5, 3, 0, 0, 1778, 1779, 5, 149, 0, 0, 1779, 1780, 5, 4, 0, 0, 1780, 345, 1, 0, 0, 0, 1781, 1782, 5, 132, 0, 0, 1782, 1783, 5, 3, 0, 0, 1783, 1784, 3, 384, 192, 0, 1784, 1785, 5, 4, 0, 0, 1785, 347, 1, 0, 0, 0, 1786, 1787, 5, 133, 0, 0, 1787, 1788, 5, 3, 0, 0, 1788, 1789, 5, 149, 0, 0, 1789, 1790, 5, 4, 0, 0, 1790, 349, 1, 0, 0, 0, 1791, 1792, 5, 134, 0, 0, 1792, 1793, 5, 3, 0, 0, 1793, 1794, 5, 149, 0, 0, 1794, 1795, 5, 4, 0, 0, 1795, 351, 1, 0, 0, 0, 1796, 1797, 5, 135, 0, 0, 1797, 1798, 5, 3, 0, 0, 1798, 1802, 5, 1, 0, 0, 1799, 1801, 3, 364, 182, 0, 1800, 1799, 1, 0, 0, 0, 1801, 1804, 1, 0, 0, 0, 1802, 1800, 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1805, 1, 0, 0, 0, 1804, 1802, 1, 0, 0, 0, 1805, 1806, 5, 2, 0, 0, 1806, 1807, 5, 4, 0, 0, 1807, 353, 1, 0, 0, 0, 1808, 1809, 5, 136, 0, 0, 1809, 1810, 5, 3, 0, 0, 1810, 1811, 3, 224, 112, 0, 1811, 1812, 5, 4, 0, 0, 1812, 355, 1, 0, 0, 0, 1813, 1814, 5, 137, 0, 0, 1814, 1815, 5, 3, 0, 0, 1815, 1816, 3, 382, 191, 0, 1816, 1817, 5, 4, 0, 0, 1817, 357, 1, 0, 0, 0, 1818, 1819, 5, 138, 0, 0, 1819, 1820, 5, 3, 0, 0, 1820, 1821, 5, 13, 0, 0, 1821, 1822, 5, 4, 0, 0, 1822, 359, 1, 0, 0, 0, 1823, 1825, 3, 362, 181, 0, 1824, 1823, 1, 0, 0, 0, 1825, 1828, 1, 0, 0, 0, 1826, 1824, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 361, 1, 0, 0, 0, 1828, 1826, 1, 0, 0, 0, 1829, 1830, 5, 1, 0, 0, 1830, 1831, 5, 139, 0, 0, 1831, 1832, 5, 3, 0, 0, 1832, 1833, 5, 149, 0, 0, 1833, 1834, 5, 4, 0, 0, 1834, 1835, 5, 140, 0, 0, 1835, 1836, 5, 3, 0, 0, 1836, 1837, 5, 149, 0, 0, 1837, 1838, 5, 4, 0, 0, 1838, 1839, 5, 2, 0, 0, 1839, 1840, 5, 6, 0, 0, 1840, 363, 1, 0, 0, 0, 1841, 1842, 3, 384, 192, 0, 1842, 1843, 5, 3, 0, 0, 1843, 1844, 3, 384, 192, 0, 1844, 1845, 5, 4, 0, 0, 1845, 1883, 1, 0, 0, 0, 1846, 1847, 3, 384, 192, 0, 1847, 1848, 5, 3, 0, 0, 1848, 1849, 5, 13, 0, 0, 1849, 1850, 5, 4, 0, 0, 1850, 1883, 1, 0, 0, 0, 1851, 1852, 3, 384, 192, 0, 1852, 1853, 5, 3, 0, 0, 1853, 1854, 5, 153, 0, 0, 1854, 1855, 5, 4, 0, 0, 1855, 1883, 1, 0, 0, 0, 1856, 1857, 3, 384, 192, 0, 1857, 1858, 5, 3, 0, 0, 1858, 1859, 5, 1, 0, 0, 1859, 1860, 3, 364, 182, 0, 1860, 1861, 5, 2, 0, 0, 1861, 1862, 5, 4, 0, 0, 1862, 1883, 1, 0, 0, 0, 1863, 1864, 3, 384, 192, 0, 1864, 1865, 5, 3, 0, 0, 1865, 1867, 5, 5, 0, 0, 1866, 1868, 3, 384, 192, 0, 1867, 1866, 1, 0, 0, 0, 1867, 1868, 1, 0, 0, 0, 1868, 1873, 1, 0, 0, 0, 1869, 1870, 5, 6, 0, 0, 1870, 1872, 3, 384, 192, 0, 1871, 1869, 1, 0, 0, 0, 1872, 1875, 1, 0, 0, 0, 1873, 1871, 1, 0, 0, 0, 1873, 1874, 1, 0, 0, 0, 1874, 1877, 1, 0, 0, 0, 1875, 1873, 1, 0, 0, 0, 1876, 1878, 5, 6, 0, 0, 1877, 1876, 1, 0, 0, 0, 1877, 1878, 1, 0, 0, 0, 1878, 1879, 1, 0, 0, 0, 1879, 1880, 5, 7, 0, 0, 1880, 1881, 5, 4, 0, 0, 1881, 1883, 1, 0, 0, 0, 1882, 1841, 1, 0, 0, 0, 1882, 1846, 1, 0, 0, 0, 1882, 1851, 1, 0, 0, 0, 1882, 1856, 1, 0, 0, 0, 1882, 1863, 1, 0, 0, 0, 1883, 365, 1, 0, 0, 0, 1884, 1885, 5, 141, 0, 0, 1885, 1886, 5, 3, 0, 0, 1886, 1887, 3, 224, 112, 0, 1887, 1888, 5, 4, 0, 0, 1888, 367, 1, 0, 0, 0, 1889, 1890, 5, 142, 0, 0, 1890, 1891, 5, 3, 0, 0, 1891, 1892, 5, 13, 0, 0, 1892, 1893, 5, 4, 0, 0, 1893, 369, 1, 0, 0, 0, 1894, 1895, 5, 143, 0, 0, 1895, 1896, 5, 3, 0, 0, 1896, 1897, 3, 382, 191, 0, 1897, 1898, 5, 4, 0, 0, 1898, 371, 1, 0, 0, 0, 1899, 1900, 5, 144, 0, 0, 1900, 1901, 5, 3, 0, 0, 1901, 1905, 5, 1, 0, 0, 1902, 1904, 3, 364, 182, 0, 1903, 1902, 1, 0, 0, 0, 1904, 1907, 1, 0, 0, 0, 1905, 1903, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1908, 1, 0, 0, 0, 1907, 1905, 1, 0, 0, 0, 1908, 1909, 5, 2, 0, 0, 1909, 1910, 5, 4, 0, 0, 1910, 373, 1, 0, 0, 0, 1911, 1912, 5, 145, 0, 0, 1912, 1913, 5, 3, 0, 0, 1913, 1917, 5, 1, 0, 0, 1914, 1916, 3, 364, 182, 0, 1915, 1914, 1, 0, 0, 0, 1916, 1919, 1, 0, 0, 0, 1917, 1915, 1, 0, 0, 0, 1917, 1918, 1, 0, 0, 0, 1918, 1920, 1, 0, 0, 0, 1919, 1917, 1, 0, 0, 0, 1920, 1921, 5, 2, 0, 0, 1921, 1922, 5, 4, 0, 0, 1922, 375, 1, 0, 0, 0, 1923, 1924, 5, 146, 0, 0, 1924, 1925, 5, 3, 0, 0, 1925, 1926, 5, 149, 0, 0, 1926, 1927, 5, 4, 0, 0, 1927, 377, 1, 0, 0, 0, 1928, 1929, 5, 147, 0, 0, 1929, 1930, 5, 3, 0, 0, 1930, 1931, 5, 151, 0, 0, 1931, 1932, 5, 4, 0, 0, 1932, 379, 1, 0, 0, 0, 1933, 1934, 5, 148, 0, 0, 1934, 1935, 5, 3, 0, 0, 1935, 1936, 3, 384, 192, 0, 1936, 1937, 5, 4, 0, 0, 1937, 381, 1, 0, 0, 0, 1938, 1945, 5, 151, 0, 0, 1939, 1945, 5, 150, 0, 0, 1940, 1945, 5, 18, 0, 0, 1941, 1945, 5, 10, 0, 0, 1942, 1945, 5, 11, 0, 0, 1943, 1945, 3, 386, 193, 0, 1944, 1938, 1, 0, 0, 0, 1944, 1939, 1, 0, 0, 0, 1944, 1940, 1, 0, 0, 0, 1944, 1941, 1, 0, 0, 0, 1944, 1942, 1, 0, 0, 0, 1944, 1943, 1, 0, 0, 0, 1945, 383, 1, 0, 0, 0, 1946, 1950, 3, 382, 191, 0, 1947, 1950, 5, 13, 0, 0, 1948, 1950, 5, 152, 0, 0, 1949, 1946, 1, 0, 0, 0, 1949, 1947, 1, 0, 0, 0, 1949, 1948, 1, 0, 0, 0, 1950, 385, 1, 0, 0, 0, 1951, 1952, 7, 1, 0, 0, 1952, 387, 1, 0, 0, 0, 156, 418, 421, 424, 427, 430, 433, 436, 439, 443, 446, 449, 453, 456, 459, 462, 465, 468, 471, 476, 479, 482, 495, 500, 505, 510, 515, 520, 525, 530, 535, 540, 545, 550, 555, 560, 565, 570, 575, 580, 585, 590, 595, 600, 605, 610, 615, 624, 627, 632, 642, 645, 648, 651, 654, 665, 672, 675, 685, 688, 710, 714, 717, 728, 731, 734, 737, 740, 743, 746, 749, 752, 755, 758, 761, 764, 767, 770, 773, 776, 797, 800, 803, 806, 809, 813, 816, 819, 842, 845, 850, 853, 857, 884, 888, 891, 894, 897, 901, 905, 908, 912, 915, 927, 950, 955, 958, 961, 964, 967, 973, 1010, 1013, 1016, 1019, 1022, 1025, 1037, 1048, 1062, 1081, 1094, 1338, 1389, 1402, 1406, 1410, 1417, 1536, 1539, 1542, 1545, 1548, 1551, 1554, 1557, 1560, 1606, 1616, 1619, 1622, 1625, 1628, 1631, 1634, 1637, 1719, 1802, 1826, 1867, 1873, 1877, 1882, 1905, 1917, 1944, 1949] \ No newline at end of file +[4, 1, 164, 2058, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 441, 8, 5, 1, 5, 3, 5, 444, 8, 5, 1, 5, 3, 5, 447, 8, 5, 1, 5, 3, 5, 450, 8, 5, 1, 5, 3, 5, 453, 8, 5, 1, 5, 3, 5, 456, 8, 5, 1, 5, 3, 5, 459, 8, 5, 1, 5, 3, 5, 462, 8, 5, 1, 5, 3, 5, 465, 8, 5, 1, 5, 3, 5, 468, 8, 5, 1, 5, 1, 5, 3, 5, 472, 8, 5, 1, 5, 3, 5, 475, 8, 5, 1, 5, 3, 5, 478, 8, 5, 1, 5, 1, 5, 3, 5, 482, 8, 5, 1, 5, 3, 5, 485, 8, 5, 1, 5, 3, 5, 488, 8, 5, 1, 5, 3, 5, 491, 8, 5, 1, 5, 3, 5, 494, 8, 5, 1, 5, 3, 5, 497, 8, 5, 1, 5, 3, 5, 500, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 505, 8, 5, 1, 5, 3, 5, 508, 8, 5, 1, 5, 3, 5, 511, 8, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 4, 7, 522, 8, 7, 11, 7, 12, 7, 523, 1, 8, 4, 8, 527, 8, 8, 11, 8, 12, 8, 528, 1, 9, 4, 9, 532, 8, 9, 11, 9, 12, 9, 533, 1, 10, 4, 10, 537, 8, 10, 11, 10, 12, 10, 538, 1, 11, 4, 11, 542, 8, 11, 11, 11, 12, 11, 543, 1, 12, 4, 12, 547, 8, 12, 11, 12, 12, 12, 548, 1, 13, 4, 13, 552, 8, 13, 11, 13, 12, 13, 553, 1, 14, 4, 14, 557, 8, 14, 11, 14, 12, 14, 558, 1, 15, 4, 15, 562, 8, 15, 11, 15, 12, 15, 563, 1, 16, 4, 16, 567, 8, 16, 11, 16, 12, 16, 568, 1, 17, 4, 17, 572, 8, 17, 11, 17, 12, 17, 573, 1, 18, 4, 18, 577, 8, 18, 11, 18, 12, 18, 578, 1, 19, 4, 19, 582, 8, 19, 11, 19, 12, 19, 583, 1, 20, 4, 20, 587, 8, 20, 11, 20, 12, 20, 588, 1, 21, 4, 21, 592, 8, 21, 11, 21, 12, 21, 593, 1, 22, 4, 22, 597, 8, 22, 11, 22, 12, 22, 598, 1, 23, 4, 23, 602, 8, 23, 11, 23, 12, 23, 603, 1, 24, 4, 24, 607, 8, 24, 11, 24, 12, 24, 608, 1, 25, 4, 25, 612, 8, 25, 11, 25, 12, 25, 613, 1, 26, 4, 26, 617, 8, 26, 11, 26, 12, 26, 618, 1, 27, 4, 27, 622, 8, 27, 11, 27, 12, 27, 623, 1, 28, 4, 28, 627, 8, 28, 11, 28, 12, 28, 628, 1, 29, 4, 29, 632, 8, 29, 11, 29, 12, 29, 633, 1, 30, 4, 30, 637, 8, 30, 11, 30, 12, 30, 638, 1, 31, 4, 31, 642, 8, 31, 11, 31, 12, 31, 643, 1, 32, 4, 32, 647, 8, 32, 11, 32, 12, 32, 648, 1, 33, 4, 33, 652, 8, 33, 11, 33, 12, 33, 653, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 663, 8, 34, 1, 34, 3, 34, 666, 8, 34, 1, 34, 1, 34, 1, 34, 3, 34, 671, 8, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 681, 8, 35, 1, 35, 3, 35, 684, 8, 35, 1, 35, 3, 35, 687, 8, 35, 1, 35, 3, 35, 690, 8, 35, 1, 35, 3, 35, 693, 8, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 704, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 711, 8, 36, 1, 36, 3, 36, 714, 8, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 724, 8, 37, 1, 37, 3, 37, 727, 8, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 749, 8, 39, 1, 39, 1, 39, 3, 39, 753, 8, 39, 1, 39, 3, 39, 756, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 767, 8, 40, 1, 40, 3, 40, 770, 8, 40, 1, 40, 3, 40, 773, 8, 40, 1, 40, 3, 40, 776, 8, 40, 1, 40, 3, 40, 779, 8, 40, 1, 40, 3, 40, 782, 8, 40, 1, 40, 3, 40, 785, 8, 40, 1, 40, 3, 40, 788, 8, 40, 1, 40, 3, 40, 791, 8, 40, 1, 40, 3, 40, 794, 8, 40, 1, 40, 3, 40, 797, 8, 40, 1, 40, 3, 40, 800, 8, 40, 1, 40, 3, 40, 803, 8, 40, 1, 40, 3, 40, 806, 8, 40, 1, 40, 3, 40, 809, 8, 40, 1, 40, 3, 40, 812, 8, 40, 1, 40, 3, 40, 815, 8, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 857, 8, 44, 1, 44, 3, 44, 860, 8, 44, 1, 44, 3, 44, 863, 8, 44, 1, 44, 3, 44, 866, 8, 44, 1, 44, 3, 44, 869, 8, 44, 1, 44, 1, 44, 3, 44, 873, 8, 44, 1, 44, 3, 44, 876, 8, 44, 1, 44, 3, 44, 879, 8, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 902, 8, 46, 1, 46, 3, 46, 905, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 910, 8, 46, 1, 46, 3, 46, 913, 8, 46, 1, 46, 1, 46, 3, 46, 917, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 944, 8, 48, 1, 48, 1, 48, 3, 48, 948, 8, 48, 1, 48, 3, 48, 951, 8, 48, 1, 48, 3, 48, 954, 8, 48, 1, 48, 3, 48, 957, 8, 48, 1, 48, 1, 48, 3, 48, 961, 8, 48, 1, 48, 1, 48, 3, 48, 965, 8, 48, 1, 48, 3, 48, 968, 8, 48, 1, 48, 3, 48, 971, 8, 48, 1, 48, 1, 48, 3, 48, 975, 8, 48, 1, 48, 3, 48, 978, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 990, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1013, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1018, 8, 51, 1, 51, 3, 51, 1021, 8, 51, 1, 51, 3, 51, 1024, 8, 51, 1, 51, 3, 51, 1027, 8, 51, 1, 51, 3, 51, 1030, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1036, 8, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1073, 8, 54, 1, 54, 3, 54, 1076, 8, 54, 1, 54, 3, 54, 1079, 8, 54, 1, 54, 3, 54, 1082, 8, 54, 1, 54, 3, 54, 1085, 8, 54, 1, 54, 3, 54, 1088, 8, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1100, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1111, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1125, 8, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1144, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1157, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 1354, 8, 98, 10, 98, 12, 98, 1357, 9, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 5, 111, 1426, 8, 111, 10, 111, 12, 111, 1429, 9, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 5, 120, 1477, 8, 120, 10, 120, 12, 120, 1480, 9, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 1490, 8, 121, 10, 121, 12, 121, 1493, 9, 121, 1, 121, 3, 121, 1496, 8, 121, 1, 121, 1, 121, 3, 121, 1500, 8, 121, 1, 122, 1, 122, 1, 122, 5, 122, 1505, 8, 122, 10, 122, 12, 122, 1508, 9, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 1626, 8, 145, 1, 145, 3, 145, 1629, 8, 145, 1, 145, 3, 145, 1632, 8, 145, 1, 145, 3, 145, 1635, 8, 145, 1, 145, 3, 145, 1638, 8, 145, 1, 145, 3, 145, 1641, 8, 145, 1, 145, 3, 145, 1644, 8, 145, 1, 145, 3, 145, 1647, 8, 145, 1, 145, 3, 145, 1650, 8, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 5, 153, 1694, 8, 153, 10, 153, 12, 153, 1697, 9, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 1706, 8, 154, 1, 154, 3, 154, 1709, 8, 154, 1, 154, 3, 154, 1712, 8, 154, 1, 154, 3, 154, 1715, 8, 154, 1, 154, 3, 154, 1718, 8, 154, 1, 154, 3, 154, 1721, 8, 154, 1, 154, 3, 154, 1724, 8, 154, 1, 154, 3, 154, 1727, 8, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 1814, 8, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 5, 185, 1895, 8, 185, 10, 185, 12, 185, 1898, 9, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 5, 189, 1919, 8, 189, 10, 189, 12, 189, 1922, 9, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 1972, 8, 193, 1, 193, 1, 193, 5, 193, 1976, 8, 193, 10, 193, 12, 193, 1979, 9, 193, 1, 193, 3, 193, 1982, 8, 193, 1, 193, 1, 193, 1, 193, 3, 193, 1987, 8, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 197, 5, 197, 2008, 8, 197, 10, 197, 12, 197, 2011, 9, 197, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 198, 5, 198, 2020, 8, 198, 10, 198, 12, 198, 2023, 9, 198, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2049, 8, 202, 1, 203, 1, 203, 1, 203, 3, 203, 2054, 8, 203, 1, 204, 1, 204, 1, 204, 0, 0, 205, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 0, 2, 2, 0, 13, 13, 158, 158, 8, 0, 8, 9, 12, 12, 14, 16, 20, 29, 32, 37, 39, 46, 48, 140, 142, 155, 2022, 0, 410, 1, 0, 0, 0, 2, 412, 1, 0, 0, 0, 4, 420, 1, 0, 0, 0, 6, 425, 1, 0, 0, 0, 8, 431, 1, 0, 0, 0, 10, 436, 1, 0, 0, 0, 12, 515, 1, 0, 0, 0, 14, 521, 1, 0, 0, 0, 16, 526, 1, 0, 0, 0, 18, 531, 1, 0, 0, 0, 20, 536, 1, 0, 0, 0, 22, 541, 1, 0, 0, 0, 24, 546, 1, 0, 0, 0, 26, 551, 1, 0, 0, 0, 28, 556, 1, 0, 0, 0, 30, 561, 1, 0, 0, 0, 32, 566, 1, 0, 0, 0, 34, 571, 1, 0, 0, 0, 36, 576, 1, 0, 0, 0, 38, 581, 1, 0, 0, 0, 40, 586, 1, 0, 0, 0, 42, 591, 1, 0, 0, 0, 44, 596, 1, 0, 0, 0, 46, 601, 1, 0, 0, 0, 48, 606, 1, 0, 0, 0, 50, 611, 1, 0, 0, 0, 52, 616, 1, 0, 0, 0, 54, 621, 1, 0, 0, 0, 56, 626, 1, 0, 0, 0, 58, 631, 1, 0, 0, 0, 60, 636, 1, 0, 0, 0, 62, 641, 1, 0, 0, 0, 64, 646, 1, 0, 0, 0, 66, 651, 1, 0, 0, 0, 68, 655, 1, 0, 0, 0, 70, 675, 1, 0, 0, 0, 72, 697, 1, 0, 0, 0, 74, 718, 1, 0, 0, 0, 76, 731, 1, 0, 0, 0, 78, 742, 1, 0, 0, 0, 80, 761, 1, 0, 0, 0, 82, 819, 1, 0, 0, 0, 84, 828, 1, 0, 0, 0, 86, 840, 1, 0, 0, 0, 88, 850, 1, 0, 0, 0, 90, 883, 1, 0, 0, 0, 92, 893, 1, 0, 0, 0, 94, 922, 1, 0, 0, 0, 96, 938, 1, 0, 0, 0, 98, 983, 1, 0, 0, 0, 100, 997, 1, 0, 0, 0, 102, 1007, 1, 0, 0, 0, 104, 1040, 1, 0, 0, 0, 106, 1057, 1, 0, 0, 0, 108, 1067, 1, 0, 0, 0, 110, 1092, 1, 0, 0, 0, 112, 1105, 1, 0, 0, 0, 114, 1117, 1, 0, 0, 0, 116, 1129, 1, 0, 0, 0, 118, 1138, 1, 0, 0, 0, 120, 1149, 1, 0, 0, 0, 122, 1164, 1, 0, 0, 0, 124, 1169, 1, 0, 0, 0, 126, 1174, 1, 0, 0, 0, 128, 1179, 1, 0, 0, 0, 130, 1184, 1, 0, 0, 0, 132, 1189, 1, 0, 0, 0, 134, 1194, 1, 0, 0, 0, 136, 1199, 1, 0, 0, 0, 138, 1204, 1, 0, 0, 0, 140, 1209, 1, 0, 0, 0, 142, 1214, 1, 0, 0, 0, 144, 1219, 1, 0, 0, 0, 146, 1224, 1, 0, 0, 0, 148, 1229, 1, 0, 0, 0, 150, 1234, 1, 0, 0, 0, 152, 1239, 1, 0, 0, 0, 154, 1244, 1, 0, 0, 0, 156, 1249, 1, 0, 0, 0, 158, 1254, 1, 0, 0, 0, 160, 1259, 1, 0, 0, 0, 162, 1264, 1, 0, 0, 0, 164, 1269, 1, 0, 0, 0, 166, 1274, 1, 0, 0, 0, 168, 1279, 1, 0, 0, 0, 170, 1284, 1, 0, 0, 0, 172, 1289, 1, 0, 0, 0, 174, 1294, 1, 0, 0, 0, 176, 1299, 1, 0, 0, 0, 178, 1304, 1, 0, 0, 0, 180, 1309, 1, 0, 0, 0, 182, 1314, 1, 0, 0, 0, 184, 1319, 1, 0, 0, 0, 186, 1324, 1, 0, 0, 0, 188, 1329, 1, 0, 0, 0, 190, 1334, 1, 0, 0, 0, 192, 1339, 1, 0, 0, 0, 194, 1344, 1, 0, 0, 0, 196, 1349, 1, 0, 0, 0, 198, 1361, 1, 0, 0, 0, 200, 1366, 1, 0, 0, 0, 202, 1371, 1, 0, 0, 0, 204, 1376, 1, 0, 0, 0, 206, 1381, 1, 0, 0, 0, 208, 1386, 1, 0, 0, 0, 210, 1391, 1, 0, 0, 0, 212, 1396, 1, 0, 0, 0, 214, 1401, 1, 0, 0, 0, 216, 1406, 1, 0, 0, 0, 218, 1411, 1, 0, 0, 0, 220, 1416, 1, 0, 0, 0, 222, 1421, 1, 0, 0, 0, 224, 1433, 1, 0, 0, 0, 226, 1438, 1, 0, 0, 0, 228, 1443, 1, 0, 0, 0, 230, 1448, 1, 0, 0, 0, 232, 1453, 1, 0, 0, 0, 234, 1458, 1, 0, 0, 0, 236, 1463, 1, 0, 0, 0, 238, 1468, 1, 0, 0, 0, 240, 1473, 1, 0, 0, 0, 242, 1499, 1, 0, 0, 0, 244, 1501, 1, 0, 0, 0, 246, 1511, 1, 0, 0, 0, 248, 1516, 1, 0, 0, 0, 250, 1521, 1, 0, 0, 0, 252, 1526, 1, 0, 0, 0, 254, 1531, 1, 0, 0, 0, 256, 1536, 1, 0, 0, 0, 258, 1541, 1, 0, 0, 0, 260, 1546, 1, 0, 0, 0, 262, 1551, 1, 0, 0, 0, 264, 1556, 1, 0, 0, 0, 266, 1561, 1, 0, 0, 0, 268, 1566, 1, 0, 0, 0, 270, 1571, 1, 0, 0, 0, 272, 1576, 1, 0, 0, 0, 274, 1581, 1, 0, 0, 0, 276, 1586, 1, 0, 0, 0, 278, 1591, 1, 0, 0, 0, 280, 1596, 1, 0, 0, 0, 282, 1601, 1, 0, 0, 0, 284, 1606, 1, 0, 0, 0, 286, 1611, 1, 0, 0, 0, 288, 1616, 1, 0, 0, 0, 290, 1621, 1, 0, 0, 0, 292, 1654, 1, 0, 0, 0, 294, 1659, 1, 0, 0, 0, 296, 1664, 1, 0, 0, 0, 298, 1669, 1, 0, 0, 0, 300, 1674, 1, 0, 0, 0, 302, 1679, 1, 0, 0, 0, 304, 1684, 1, 0, 0, 0, 306, 1689, 1, 0, 0, 0, 308, 1701, 1, 0, 0, 0, 310, 1731, 1, 0, 0, 0, 312, 1736, 1, 0, 0, 0, 314, 1741, 1, 0, 0, 0, 316, 1746, 1, 0, 0, 0, 318, 1751, 1, 0, 0, 0, 320, 1756, 1, 0, 0, 0, 322, 1761, 1, 0, 0, 0, 324, 1766, 1, 0, 0, 0, 326, 1771, 1, 0, 0, 0, 328, 1776, 1, 0, 0, 0, 330, 1781, 1, 0, 0, 0, 332, 1786, 1, 0, 0, 0, 334, 1791, 1, 0, 0, 0, 336, 1796, 1, 0, 0, 0, 338, 1813, 1, 0, 0, 0, 340, 1815, 1, 0, 0, 0, 342, 1820, 1, 0, 0, 0, 344, 1825, 1, 0, 0, 0, 346, 1830, 1, 0, 0, 0, 348, 1835, 1, 0, 0, 0, 350, 1840, 1, 0, 0, 0, 352, 1845, 1, 0, 0, 0, 354, 1850, 1, 0, 0, 0, 356, 1855, 1, 0, 0, 0, 358, 1860, 1, 0, 0, 0, 360, 1865, 1, 0, 0, 0, 362, 1870, 1, 0, 0, 0, 364, 1875, 1, 0, 0, 0, 366, 1880, 1, 0, 0, 0, 368, 1885, 1, 0, 0, 0, 370, 1890, 1, 0, 0, 0, 372, 1902, 1, 0, 0, 0, 374, 1907, 1, 0, 0, 0, 376, 1912, 1, 0, 0, 0, 378, 1920, 1, 0, 0, 0, 380, 1923, 1, 0, 0, 0, 382, 1935, 1, 0, 0, 0, 384, 1940, 1, 0, 0, 0, 386, 1986, 1, 0, 0, 0, 388, 1988, 1, 0, 0, 0, 390, 1993, 1, 0, 0, 0, 392, 1998, 1, 0, 0, 0, 394, 2003, 1, 0, 0, 0, 396, 2015, 1, 0, 0, 0, 398, 2027, 1, 0, 0, 0, 400, 2032, 1, 0, 0, 0, 402, 2037, 1, 0, 0, 0, 404, 2048, 1, 0, 0, 0, 406, 2053, 1, 0, 0, 0, 408, 2055, 1, 0, 0, 0, 410, 411, 3, 2, 1, 0, 411, 1, 1, 0, 0, 0, 412, 413, 5, 1, 0, 0, 413, 414, 3, 4, 2, 0, 414, 415, 3, 6, 3, 0, 415, 416, 3, 8, 4, 0, 416, 417, 3, 10, 5, 0, 417, 418, 3, 12, 6, 0, 418, 419, 5, 2, 0, 0, 419, 3, 1, 0, 0, 0, 420, 421, 5, 8, 0, 0, 421, 422, 5, 3, 0, 0, 422, 423, 5, 13, 0, 0, 423, 424, 5, 4, 0, 0, 424, 5, 1, 0, 0, 0, 425, 426, 5, 9, 0, 0, 426, 427, 5, 3, 0, 0, 427, 428, 5, 1, 0, 0, 428, 429, 5, 2, 0, 0, 429, 430, 5, 4, 0, 0, 430, 7, 1, 0, 0, 0, 431, 432, 5, 14, 0, 0, 432, 433, 5, 3, 0, 0, 433, 434, 5, 13, 0, 0, 434, 435, 5, 4, 0, 0, 435, 9, 1, 0, 0, 0, 436, 437, 5, 15, 0, 0, 437, 438, 5, 3, 0, 0, 438, 440, 5, 1, 0, 0, 439, 441, 3, 14, 7, 0, 440, 439, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 443, 1, 0, 0, 0, 442, 444, 3, 16, 8, 0, 443, 442, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 446, 1, 0, 0, 0, 445, 447, 3, 18, 9, 0, 446, 445, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 449, 1, 0, 0, 0, 448, 450, 3, 20, 10, 0, 449, 448, 1, 0, 0, 0, 449, 450, 1, 0, 0, 0, 450, 452, 1, 0, 0, 0, 451, 453, 3, 22, 11, 0, 452, 451, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 455, 1, 0, 0, 0, 454, 456, 3, 24, 12, 0, 455, 454, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 458, 1, 0, 0, 0, 457, 459, 3, 26, 13, 0, 458, 457, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 461, 1, 0, 0, 0, 460, 462, 3, 28, 14, 0, 461, 460, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 464, 1, 0, 0, 0, 463, 465, 3, 30, 15, 0, 464, 463, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 467, 1, 0, 0, 0, 466, 468, 3, 32, 16, 0, 467, 466, 1, 0, 0, 0, 467, 468, 1, 0, 0, 0, 468, 469, 1, 0, 0, 0, 469, 471, 3, 34, 17, 0, 470, 472, 3, 36, 18, 0, 471, 470, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 474, 1, 0, 0, 0, 473, 475, 3, 40, 20, 0, 474, 473, 1, 0, 0, 0, 474, 475, 1, 0, 0, 0, 475, 477, 1, 0, 0, 0, 476, 478, 3, 38, 19, 0, 477, 476, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 481, 3, 42, 21, 0, 480, 482, 3, 44, 22, 0, 481, 480, 1, 0, 0, 0, 481, 482, 1, 0, 0, 0, 482, 484, 1, 0, 0, 0, 483, 485, 3, 46, 23, 0, 484, 483, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 487, 1, 0, 0, 0, 486, 488, 3, 48, 24, 0, 487, 486, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 490, 1, 0, 0, 0, 489, 491, 3, 50, 25, 0, 490, 489, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 493, 1, 0, 0, 0, 492, 494, 3, 52, 26, 0, 493, 492, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 496, 1, 0, 0, 0, 495, 497, 3, 54, 27, 0, 496, 495, 1, 0, 0, 0, 496, 497, 1, 0, 0, 0, 497, 499, 1, 0, 0, 0, 498, 500, 3, 56, 28, 0, 499, 498, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 501, 1, 0, 0, 0, 501, 502, 3, 58, 29, 0, 502, 504, 3, 60, 30, 0, 503, 505, 3, 62, 31, 0, 504, 503, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 507, 1, 0, 0, 0, 506, 508, 3, 64, 32, 0, 507, 506, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 510, 1, 0, 0, 0, 509, 511, 3, 66, 33, 0, 510, 509, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 513, 5, 2, 0, 0, 513, 514, 5, 4, 0, 0, 514, 11, 1, 0, 0, 0, 515, 516, 5, 16, 0, 0, 516, 517, 5, 3, 0, 0, 517, 518, 5, 156, 0, 0, 518, 519, 5, 4, 0, 0, 519, 13, 1, 0, 0, 0, 520, 522, 3, 68, 34, 0, 521, 520, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 521, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 15, 1, 0, 0, 0, 525, 527, 3, 70, 35, 0, 526, 525, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 526, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 17, 1, 0, 0, 0, 530, 532, 3, 72, 36, 0, 531, 530, 1, 0, 0, 0, 532, 533, 1, 0, 0, 0, 533, 531, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 19, 1, 0, 0, 0, 535, 537, 3, 74, 37, 0, 536, 535, 1, 0, 0, 0, 537, 538, 1, 0, 0, 0, 538, 536, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 21, 1, 0, 0, 0, 540, 542, 3, 76, 38, 0, 541, 540, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 541, 1, 0, 0, 0, 543, 544, 1, 0, 0, 0, 544, 23, 1, 0, 0, 0, 545, 547, 3, 78, 39, 0, 546, 545, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 546, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 25, 1, 0, 0, 0, 550, 552, 3, 80, 40, 0, 551, 550, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 27, 1, 0, 0, 0, 555, 557, 3, 82, 41, 0, 556, 555, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 556, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 29, 1, 0, 0, 0, 560, 562, 3, 84, 42, 0, 561, 560, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 561, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 31, 1, 0, 0, 0, 565, 567, 3, 86, 43, 0, 566, 565, 1, 0, 0, 0, 567, 568, 1, 0, 0, 0, 568, 566, 1, 0, 0, 0, 568, 569, 1, 0, 0, 0, 569, 33, 1, 0, 0, 0, 570, 572, 3, 88, 44, 0, 571, 570, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 571, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 35, 1, 0, 0, 0, 575, 577, 3, 90, 45, 0, 576, 575, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 576, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 37, 1, 0, 0, 0, 580, 582, 3, 92, 46, 0, 581, 580, 1, 0, 0, 0, 582, 583, 1, 0, 0, 0, 583, 581, 1, 0, 0, 0, 583, 584, 1, 0, 0, 0, 584, 39, 1, 0, 0, 0, 585, 587, 3, 94, 47, 0, 586, 585, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 586, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 41, 1, 0, 0, 0, 590, 592, 3, 96, 48, 0, 591, 590, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 591, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 43, 1, 0, 0, 0, 595, 597, 3, 98, 49, 0, 596, 595, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 596, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 45, 1, 0, 0, 0, 600, 602, 3, 100, 50, 0, 601, 600, 1, 0, 0, 0, 602, 603, 1, 0, 0, 0, 603, 601, 1, 0, 0, 0, 603, 604, 1, 0, 0, 0, 604, 47, 1, 0, 0, 0, 605, 607, 3, 102, 51, 0, 606, 605, 1, 0, 0, 0, 607, 608, 1, 0, 0, 0, 608, 606, 1, 0, 0, 0, 608, 609, 1, 0, 0, 0, 609, 49, 1, 0, 0, 0, 610, 612, 3, 104, 52, 0, 611, 610, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 611, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 51, 1, 0, 0, 0, 615, 617, 3, 106, 53, 0, 616, 615, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 616, 1, 0, 0, 0, 618, 619, 1, 0, 0, 0, 619, 53, 1, 0, 0, 0, 620, 622, 3, 108, 54, 0, 621, 620, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 621, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 55, 1, 0, 0, 0, 625, 627, 3, 110, 55, 0, 626, 625, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 626, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 57, 1, 0, 0, 0, 630, 632, 3, 112, 56, 0, 631, 630, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 631, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 59, 1, 0, 0, 0, 635, 637, 3, 114, 57, 0, 636, 635, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 636, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 61, 1, 0, 0, 0, 640, 642, 3, 116, 58, 0, 641, 640, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 641, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 63, 1, 0, 0, 0, 645, 647, 3, 118, 59, 0, 646, 645, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 646, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 65, 1, 0, 0, 0, 650, 652, 3, 120, 60, 0, 651, 650, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 651, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 67, 1, 0, 0, 0, 655, 656, 5, 156, 0, 0, 656, 657, 5, 3, 0, 0, 657, 658, 5, 1, 0, 0, 658, 659, 3, 122, 61, 0, 659, 660, 3, 246, 123, 0, 660, 662, 3, 248, 124, 0, 661, 663, 3, 370, 185, 0, 662, 661, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 665, 1, 0, 0, 0, 664, 666, 3, 192, 96, 0, 665, 664, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 668, 3, 260, 130, 0, 668, 670, 3, 228, 114, 0, 669, 671, 3, 262, 131, 0, 670, 669, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 5, 2, 0, 0, 673, 674, 5, 4, 0, 0, 674, 69, 1, 0, 0, 0, 675, 676, 5, 156, 0, 0, 676, 677, 5, 3, 0, 0, 677, 678, 5, 1, 0, 0, 678, 680, 3, 124, 62, 0, 679, 681, 3, 178, 89, 0, 680, 679, 1, 0, 0, 0, 680, 681, 1, 0, 0, 0, 681, 683, 1, 0, 0, 0, 682, 684, 3, 212, 106, 0, 683, 682, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 686, 1, 0, 0, 0, 685, 687, 3, 214, 107, 0, 686, 685, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 689, 1, 0, 0, 0, 688, 690, 3, 180, 90, 0, 689, 688, 1, 0, 0, 0, 689, 690, 1, 0, 0, 0, 690, 692, 1, 0, 0, 0, 691, 693, 3, 394, 197, 0, 692, 691, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 5, 2, 0, 0, 695, 696, 5, 4, 0, 0, 696, 71, 1, 0, 0, 0, 697, 698, 5, 156, 0, 0, 698, 699, 5, 3, 0, 0, 699, 700, 5, 1, 0, 0, 700, 701, 3, 126, 63, 0, 701, 703, 3, 276, 138, 0, 702, 704, 3, 278, 139, 0, 703, 702, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 706, 3, 364, 182, 0, 706, 707, 3, 280, 140, 0, 707, 708, 3, 282, 141, 0, 708, 710, 3, 284, 142, 0, 709, 711, 3, 286, 143, 0, 710, 709, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 713, 1, 0, 0, 0, 712, 714, 3, 288, 144, 0, 713, 712, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 5, 2, 0, 0, 716, 717, 5, 4, 0, 0, 717, 73, 1, 0, 0, 0, 718, 719, 5, 156, 0, 0, 719, 720, 5, 3, 0, 0, 720, 721, 5, 1, 0, 0, 721, 723, 3, 128, 64, 0, 722, 724, 3, 370, 185, 0, 723, 722, 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 726, 1, 0, 0, 0, 725, 727, 3, 228, 114, 0, 726, 725, 1, 0, 0, 0, 726, 727, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 729, 5, 2, 0, 0, 729, 730, 5, 4, 0, 0, 730, 75, 1, 0, 0, 0, 731, 732, 5, 156, 0, 0, 732, 733, 5, 3, 0, 0, 733, 734, 5, 1, 0, 0, 734, 735, 3, 130, 65, 0, 735, 736, 3, 182, 91, 0, 736, 737, 3, 184, 92, 0, 737, 738, 3, 186, 93, 0, 738, 739, 3, 188, 94, 0, 739, 740, 5, 2, 0, 0, 740, 741, 5, 4, 0, 0, 741, 77, 1, 0, 0, 0, 742, 743, 5, 156, 0, 0, 743, 744, 5, 3, 0, 0, 744, 745, 5, 1, 0, 0, 745, 746, 3, 132, 66, 0, 746, 748, 3, 234, 117, 0, 747, 749, 3, 374, 187, 0, 748, 747, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 752, 3, 376, 188, 0, 751, 753, 3, 236, 118, 0, 752, 751, 1, 0, 0, 0, 752, 753, 1, 0, 0, 0, 753, 755, 1, 0, 0, 0, 754, 756, 3, 228, 114, 0, 755, 754, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 757, 1, 0, 0, 0, 757, 758, 3, 238, 119, 0, 758, 759, 5, 2, 0, 0, 759, 760, 5, 4, 0, 0, 760, 79, 1, 0, 0, 0, 761, 762, 5, 156, 0, 0, 762, 763, 5, 3, 0, 0, 763, 764, 5, 1, 0, 0, 764, 766, 3, 134, 67, 0, 765, 767, 3, 192, 96, 0, 766, 765, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 769, 1, 0, 0, 0, 768, 770, 3, 190, 95, 0, 769, 768, 1, 0, 0, 0, 769, 770, 1, 0, 0, 0, 770, 772, 1, 0, 0, 0, 771, 773, 3, 194, 97, 0, 772, 771, 1, 0, 0, 0, 772, 773, 1, 0, 0, 0, 773, 775, 1, 0, 0, 0, 774, 776, 3, 190, 95, 0, 775, 774, 1, 0, 0, 0, 775, 776, 1, 0, 0, 0, 776, 778, 1, 0, 0, 0, 777, 779, 3, 202, 101, 0, 778, 777, 1, 0, 0, 0, 778, 779, 1, 0, 0, 0, 779, 781, 1, 0, 0, 0, 780, 782, 3, 204, 102, 0, 781, 780, 1, 0, 0, 0, 781, 782, 1, 0, 0, 0, 782, 784, 1, 0, 0, 0, 783, 785, 3, 200, 100, 0, 784, 783, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 787, 1, 0, 0, 0, 786, 788, 3, 268, 134, 0, 787, 786, 1, 0, 0, 0, 787, 788, 1, 0, 0, 0, 788, 790, 1, 0, 0, 0, 789, 791, 3, 228, 114, 0, 790, 789, 1, 0, 0, 0, 790, 791, 1, 0, 0, 0, 791, 793, 1, 0, 0, 0, 792, 794, 3, 230, 115, 0, 793, 792, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 796, 1, 0, 0, 0, 795, 797, 3, 274, 137, 0, 796, 795, 1, 0, 0, 0, 796, 797, 1, 0, 0, 0, 797, 799, 1, 0, 0, 0, 798, 800, 3, 272, 136, 0, 799, 798, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 802, 1, 0, 0, 0, 801, 803, 3, 232, 116, 0, 802, 801, 1, 0, 0, 0, 802, 803, 1, 0, 0, 0, 803, 805, 1, 0, 0, 0, 804, 806, 3, 206, 103, 0, 805, 804, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 808, 1, 0, 0, 0, 807, 809, 3, 270, 135, 0, 808, 807, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 811, 1, 0, 0, 0, 810, 812, 3, 208, 104, 0, 811, 810, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 814, 1, 0, 0, 0, 813, 815, 3, 210, 105, 0, 814, 813, 1, 0, 0, 0, 814, 815, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 817, 5, 2, 0, 0, 817, 818, 5, 4, 0, 0, 818, 81, 1, 0, 0, 0, 819, 820, 5, 156, 0, 0, 820, 821, 5, 3, 0, 0, 821, 822, 5, 1, 0, 0, 822, 823, 3, 136, 68, 0, 823, 824, 3, 382, 191, 0, 824, 825, 3, 360, 180, 0, 825, 826, 5, 2, 0, 0, 826, 827, 5, 4, 0, 0, 827, 83, 1, 0, 0, 0, 828, 829, 5, 156, 0, 0, 829, 830, 5, 3, 0, 0, 830, 831, 5, 1, 0, 0, 831, 832, 3, 138, 69, 0, 832, 833, 3, 384, 192, 0, 833, 834, 3, 196, 98, 0, 834, 835, 3, 198, 99, 0, 835, 836, 3, 230, 115, 0, 836, 837, 3, 232, 116, 0, 837, 838, 5, 2, 0, 0, 838, 839, 5, 4, 0, 0, 839, 85, 1, 0, 0, 0, 840, 841, 5, 156, 0, 0, 841, 842, 5, 3, 0, 0, 842, 843, 5, 1, 0, 0, 843, 844, 3, 140, 70, 0, 844, 845, 3, 234, 117, 0, 845, 846, 3, 236, 118, 0, 846, 847, 3, 238, 119, 0, 847, 848, 5, 2, 0, 0, 848, 849, 5, 4, 0, 0, 849, 87, 1, 0, 0, 0, 850, 851, 5, 156, 0, 0, 851, 852, 5, 3, 0, 0, 852, 853, 5, 1, 0, 0, 853, 854, 3, 142, 71, 0, 854, 856, 3, 216, 108, 0, 855, 857, 3, 192, 96, 0, 856, 855, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 859, 1, 0, 0, 0, 858, 860, 3, 204, 102, 0, 859, 858, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 862, 1, 0, 0, 0, 861, 863, 3, 202, 101, 0, 862, 861, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 865, 1, 0, 0, 0, 864, 866, 3, 228, 114, 0, 865, 864, 1, 0, 0, 0, 865, 866, 1, 0, 0, 0, 866, 868, 1, 0, 0, 0, 867, 869, 3, 230, 115, 0, 868, 867, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 872, 3, 232, 116, 0, 871, 873, 3, 206, 103, 0, 872, 871, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 875, 1, 0, 0, 0, 874, 876, 3, 208, 104, 0, 875, 874, 1, 0, 0, 0, 875, 876, 1, 0, 0, 0, 876, 878, 1, 0, 0, 0, 877, 879, 3, 210, 105, 0, 878, 877, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 881, 5, 2, 0, 0, 881, 882, 5, 4, 0, 0, 882, 89, 1, 0, 0, 0, 883, 884, 5, 156, 0, 0, 884, 885, 5, 3, 0, 0, 885, 886, 5, 1, 0, 0, 886, 887, 3, 144, 72, 0, 887, 888, 3, 234, 117, 0, 888, 889, 3, 236, 118, 0, 889, 890, 3, 238, 119, 0, 890, 891, 5, 2, 0, 0, 891, 892, 5, 4, 0, 0, 892, 91, 1, 0, 0, 0, 893, 894, 5, 156, 0, 0, 894, 895, 5, 3, 0, 0, 895, 896, 5, 1, 0, 0, 896, 897, 3, 146, 73, 0, 897, 898, 3, 246, 123, 0, 898, 899, 3, 248, 124, 0, 899, 901, 3, 250, 125, 0, 900, 902, 3, 192, 96, 0, 901, 900, 1, 0, 0, 0, 901, 902, 1, 0, 0, 0, 902, 904, 1, 0, 0, 0, 903, 905, 3, 370, 185, 0, 904, 903, 1, 0, 0, 0, 904, 905, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 907, 3, 260, 130, 0, 907, 909, 3, 228, 114, 0, 908, 910, 3, 218, 109, 0, 909, 908, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 912, 1, 0, 0, 0, 911, 913, 3, 226, 113, 0, 912, 911, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 914, 1, 0, 0, 0, 914, 916, 3, 262, 131, 0, 915, 917, 3, 264, 132, 0, 916, 915, 1, 0, 0, 0, 916, 917, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 919, 3, 266, 133, 0, 919, 920, 5, 2, 0, 0, 920, 921, 5, 4, 0, 0, 921, 93, 1, 0, 0, 0, 922, 923, 5, 156, 0, 0, 923, 924, 5, 3, 0, 0, 924, 925, 5, 1, 0, 0, 925, 926, 3, 148, 74, 0, 926, 927, 3, 252, 126, 0, 927, 928, 3, 246, 123, 0, 928, 929, 3, 248, 124, 0, 929, 930, 3, 254, 127, 0, 930, 931, 3, 256, 128, 0, 931, 932, 3, 260, 130, 0, 932, 933, 3, 228, 114, 0, 933, 934, 3, 258, 129, 0, 934, 935, 3, 262, 131, 0, 935, 936, 5, 2, 0, 0, 936, 937, 5, 4, 0, 0, 937, 95, 1, 0, 0, 0, 938, 939, 5, 156, 0, 0, 939, 940, 5, 3, 0, 0, 940, 941, 5, 1, 0, 0, 941, 943, 3, 150, 75, 0, 942, 944, 3, 290, 145, 0, 943, 942, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 947, 3, 246, 123, 0, 946, 948, 3, 370, 185, 0, 947, 946, 1, 0, 0, 0, 947, 948, 1, 0, 0, 0, 948, 950, 1, 0, 0, 0, 949, 951, 3, 372, 186, 0, 950, 949, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 953, 1, 0, 0, 0, 952, 954, 3, 320, 160, 0, 953, 952, 1, 0, 0, 0, 953, 954, 1, 0, 0, 0, 954, 956, 1, 0, 0, 0, 955, 957, 3, 322, 161, 0, 956, 955, 1, 0, 0, 0, 956, 957, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 960, 3, 324, 162, 0, 959, 961, 3, 326, 163, 0, 960, 959, 1, 0, 0, 0, 960, 961, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 964, 3, 328, 164, 0, 963, 965, 3, 332, 166, 0, 964, 963, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 967, 1, 0, 0, 0, 966, 968, 3, 334, 167, 0, 967, 966, 1, 0, 0, 0, 967, 968, 1, 0, 0, 0, 968, 970, 1, 0, 0, 0, 969, 971, 3, 330, 165, 0, 970, 969, 1, 0, 0, 0, 970, 971, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 974, 3, 336, 168, 0, 973, 975, 3, 338, 169, 0, 974, 973, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 977, 1, 0, 0, 0, 976, 978, 3, 340, 170, 0, 977, 976, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, 979, 980, 3, 342, 171, 0, 980, 981, 5, 2, 0, 0, 981, 982, 5, 4, 0, 0, 982, 97, 1, 0, 0, 0, 983, 984, 5, 156, 0, 0, 984, 985, 5, 3, 0, 0, 985, 986, 5, 1, 0, 0, 986, 987, 3, 152, 76, 0, 987, 989, 3, 364, 182, 0, 988, 990, 3, 228, 114, 0, 989, 988, 1, 0, 0, 0, 989, 990, 1, 0, 0, 0, 990, 991, 1, 0, 0, 0, 991, 992, 3, 230, 115, 0, 992, 993, 3, 366, 183, 0, 993, 994, 3, 232, 116, 0, 994, 995, 5, 2, 0, 0, 995, 996, 5, 4, 0, 0, 996, 99, 1, 0, 0, 0, 997, 998, 5, 156, 0, 0, 998, 999, 5, 3, 0, 0, 999, 1000, 5, 1, 0, 0, 1000, 1001, 3, 154, 77, 0, 1001, 1002, 3, 234, 117, 0, 1002, 1003, 3, 236, 118, 0, 1003, 1004, 3, 238, 119, 0, 1004, 1005, 5, 2, 0, 0, 1005, 1006, 5, 4, 0, 0, 1006, 101, 1, 0, 0, 0, 1007, 1008, 5, 156, 0, 0, 1008, 1009, 5, 3, 0, 0, 1009, 1010, 5, 1, 0, 0, 1010, 1012, 3, 156, 78, 0, 1011, 1013, 3, 176, 88, 0, 1012, 1011, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1015, 3, 234, 117, 0, 1015, 1017, 3, 236, 118, 0, 1016, 1018, 3, 344, 172, 0, 1017, 1016, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1020, 1, 0, 0, 0, 1019, 1021, 3, 346, 173, 0, 1020, 1019, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1023, 1, 0, 0, 0, 1022, 1024, 3, 228, 114, 0, 1023, 1022, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1026, 1, 0, 0, 0, 1025, 1027, 3, 348, 174, 0, 1026, 1025, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1029, 1, 0, 0, 0, 1028, 1030, 3, 350, 175, 0, 1029, 1028, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1032, 3, 238, 119, 0, 1032, 1033, 3, 352, 176, 0, 1033, 1035, 3, 356, 178, 0, 1034, 1036, 3, 358, 179, 0, 1035, 1034, 1, 0, 0, 0, 1035, 1036, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1038, 5, 2, 0, 0, 1038, 1039, 5, 4, 0, 0, 1039, 103, 1, 0, 0, 0, 1040, 1041, 5, 156, 0, 0, 1041, 1042, 5, 3, 0, 0, 1042, 1043, 5, 1, 0, 0, 1043, 1044, 3, 158, 79, 0, 1044, 1045, 3, 234, 117, 0, 1045, 1046, 3, 236, 118, 0, 1046, 1047, 3, 344, 172, 0, 1047, 1048, 3, 346, 173, 0, 1048, 1049, 3, 228, 114, 0, 1049, 1050, 3, 348, 174, 0, 1050, 1051, 3, 350, 175, 0, 1051, 1052, 3, 238, 119, 0, 1052, 1053, 3, 352, 176, 0, 1053, 1054, 3, 354, 177, 0, 1054, 1055, 5, 2, 0, 0, 1055, 1056, 5, 4, 0, 0, 1056, 105, 1, 0, 0, 0, 1057, 1058, 5, 156, 0, 0, 1058, 1059, 5, 3, 0, 0, 1059, 1060, 5, 1, 0, 0, 1060, 1061, 3, 160, 80, 0, 1061, 1062, 3, 234, 117, 0, 1062, 1063, 3, 236, 118, 0, 1063, 1064, 3, 238, 119, 0, 1064, 1065, 5, 2, 0, 0, 1065, 1066, 5, 4, 0, 0, 1066, 107, 1, 0, 0, 0, 1067, 1068, 5, 156, 0, 0, 1068, 1069, 5, 3, 0, 0, 1069, 1070, 5, 1, 0, 0, 1070, 1072, 3, 162, 81, 0, 1071, 1073, 3, 228, 114, 0, 1072, 1071, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1075, 1, 0, 0, 0, 1074, 1076, 3, 212, 106, 0, 1075, 1074, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1078, 1, 0, 0, 0, 1077, 1079, 3, 214, 107, 0, 1078, 1077, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1081, 1, 0, 0, 0, 1080, 1082, 3, 180, 90, 0, 1081, 1080, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1084, 1, 0, 0, 0, 1083, 1085, 3, 360, 180, 0, 1084, 1083, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1087, 1, 0, 0, 0, 1086, 1088, 3, 362, 181, 0, 1087, 1086, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1090, 5, 2, 0, 0, 1090, 1091, 5, 4, 0, 0, 1091, 109, 1, 0, 0, 0, 1092, 1093, 5, 156, 0, 0, 1093, 1094, 5, 3, 0, 0, 1094, 1095, 5, 1, 0, 0, 1095, 1096, 3, 164, 82, 0, 1096, 1097, 3, 216, 108, 0, 1097, 1099, 3, 228, 114, 0, 1098, 1100, 3, 230, 115, 0, 1099, 1098, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1102, 3, 232, 116, 0, 1102, 1103, 5, 2, 0, 0, 1103, 1104, 5, 4, 0, 0, 1104, 111, 1, 0, 0, 0, 1105, 1106, 5, 156, 0, 0, 1106, 1107, 5, 3, 0, 0, 1107, 1108, 5, 1, 0, 0, 1108, 1110, 3, 166, 83, 0, 1109, 1111, 3, 368, 184, 0, 1110, 1109, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1113, 3, 370, 185, 0, 1113, 1114, 3, 228, 114, 0, 1114, 1115, 5, 2, 0, 0, 1115, 1116, 5, 4, 0, 0, 1116, 113, 1, 0, 0, 0, 1117, 1118, 5, 156, 0, 0, 1118, 1119, 5, 3, 0, 0, 1119, 1120, 5, 1, 0, 0, 1120, 1121, 3, 168, 84, 0, 1121, 1122, 3, 388, 194, 0, 1122, 1124, 3, 390, 195, 0, 1123, 1125, 3, 392, 196, 0, 1124, 1123, 1, 0, 0, 0, 1124, 1125, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1127, 5, 2, 0, 0, 1127, 1128, 5, 4, 0, 0, 1128, 115, 1, 0, 0, 0, 1129, 1130, 5, 156, 0, 0, 1130, 1131, 5, 3, 0, 0, 1131, 1132, 5, 1, 0, 0, 1132, 1133, 3, 170, 85, 0, 1133, 1134, 3, 220, 110, 0, 1134, 1135, 3, 222, 111, 0, 1135, 1136, 5, 2, 0, 0, 1136, 1137, 5, 4, 0, 0, 1137, 117, 1, 0, 0, 0, 1138, 1139, 5, 156, 0, 0, 1139, 1140, 5, 3, 0, 0, 1140, 1141, 5, 1, 0, 0, 1141, 1143, 3, 172, 86, 0, 1142, 1144, 3, 224, 112, 0, 1143, 1142, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1146, 3, 262, 131, 0, 1146, 1147, 5, 2, 0, 0, 1147, 1148, 5, 4, 0, 0, 1148, 119, 1, 0, 0, 0, 1149, 1150, 5, 156, 0, 0, 1150, 1151, 5, 3, 0, 0, 1151, 1152, 5, 1, 0, 0, 1152, 1153, 3, 174, 87, 0, 1153, 1154, 3, 216, 108, 0, 1154, 1156, 3, 398, 199, 0, 1155, 1157, 3, 228, 114, 0, 1156, 1155, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1159, 3, 230, 115, 0, 1159, 1160, 3, 232, 116, 0, 1160, 1161, 3, 400, 200, 0, 1161, 1162, 5, 2, 0, 0, 1162, 1163, 5, 4, 0, 0, 1163, 121, 1, 0, 0, 0, 1164, 1165, 5, 12, 0, 0, 1165, 1166, 5, 3, 0, 0, 1166, 1167, 5, 20, 0, 0, 1167, 1168, 5, 4, 0, 0, 1168, 123, 1, 0, 0, 0, 1169, 1170, 5, 12, 0, 0, 1170, 1171, 5, 3, 0, 0, 1171, 1172, 5, 21, 0, 0, 1172, 1173, 5, 4, 0, 0, 1173, 125, 1, 0, 0, 0, 1174, 1175, 5, 12, 0, 0, 1175, 1176, 5, 3, 0, 0, 1176, 1177, 5, 22, 0, 0, 1177, 1178, 5, 4, 0, 0, 1178, 127, 1, 0, 0, 0, 1179, 1180, 5, 12, 0, 0, 1180, 1181, 5, 3, 0, 0, 1181, 1182, 5, 23, 0, 0, 1182, 1183, 5, 4, 0, 0, 1183, 129, 1, 0, 0, 0, 1184, 1185, 5, 12, 0, 0, 1185, 1186, 5, 3, 0, 0, 1186, 1187, 5, 24, 0, 0, 1187, 1188, 5, 4, 0, 0, 1188, 131, 1, 0, 0, 0, 1189, 1190, 5, 12, 0, 0, 1190, 1191, 5, 3, 0, 0, 1191, 1192, 5, 25, 0, 0, 1192, 1193, 5, 4, 0, 0, 1193, 133, 1, 0, 0, 0, 1194, 1195, 5, 12, 0, 0, 1195, 1196, 5, 3, 0, 0, 1196, 1197, 5, 26, 0, 0, 1197, 1198, 5, 4, 0, 0, 1198, 135, 1, 0, 0, 0, 1199, 1200, 5, 12, 0, 0, 1200, 1201, 5, 3, 0, 0, 1201, 1202, 5, 27, 0, 0, 1202, 1203, 5, 4, 0, 0, 1203, 137, 1, 0, 0, 0, 1204, 1205, 5, 12, 0, 0, 1205, 1206, 5, 3, 0, 0, 1206, 1207, 5, 28, 0, 0, 1207, 1208, 5, 4, 0, 0, 1208, 139, 1, 0, 0, 0, 1209, 1210, 5, 12, 0, 0, 1210, 1211, 5, 3, 0, 0, 1211, 1212, 5, 29, 0, 0, 1212, 1213, 5, 4, 0, 0, 1213, 141, 1, 0, 0, 0, 1214, 1215, 5, 12, 0, 0, 1215, 1216, 5, 3, 0, 0, 1216, 1217, 5, 30, 0, 0, 1217, 1218, 5, 4, 0, 0, 1218, 143, 1, 0, 0, 0, 1219, 1220, 5, 12, 0, 0, 1220, 1221, 5, 3, 0, 0, 1221, 1222, 5, 31, 0, 0, 1222, 1223, 5, 4, 0, 0, 1223, 145, 1, 0, 0, 0, 1224, 1225, 5, 12, 0, 0, 1225, 1226, 5, 3, 0, 0, 1226, 1227, 5, 32, 0, 0, 1227, 1228, 5, 4, 0, 0, 1228, 147, 1, 0, 0, 0, 1229, 1230, 5, 12, 0, 0, 1230, 1231, 5, 3, 0, 0, 1231, 1232, 5, 33, 0, 0, 1232, 1233, 5, 4, 0, 0, 1233, 149, 1, 0, 0, 0, 1234, 1235, 5, 12, 0, 0, 1235, 1236, 5, 3, 0, 0, 1236, 1237, 5, 34, 0, 0, 1237, 1238, 5, 4, 0, 0, 1238, 151, 1, 0, 0, 0, 1239, 1240, 5, 12, 0, 0, 1240, 1241, 5, 3, 0, 0, 1241, 1242, 5, 35, 0, 0, 1242, 1243, 5, 4, 0, 0, 1243, 153, 1, 0, 0, 0, 1244, 1245, 5, 12, 0, 0, 1245, 1246, 5, 3, 0, 0, 1246, 1247, 5, 36, 0, 0, 1247, 1248, 5, 4, 0, 0, 1248, 155, 1, 0, 0, 0, 1249, 1250, 5, 12, 0, 0, 1250, 1251, 5, 3, 0, 0, 1251, 1252, 5, 37, 0, 0, 1252, 1253, 5, 4, 0, 0, 1253, 157, 1, 0, 0, 0, 1254, 1255, 5, 12, 0, 0, 1255, 1256, 5, 3, 0, 0, 1256, 1257, 5, 38, 0, 0, 1257, 1258, 5, 4, 0, 0, 1258, 159, 1, 0, 0, 0, 1259, 1260, 5, 12, 0, 0, 1260, 1261, 5, 3, 0, 0, 1261, 1262, 5, 39, 0, 0, 1262, 1263, 5, 4, 0, 0, 1263, 161, 1, 0, 0, 0, 1264, 1265, 5, 12, 0, 0, 1265, 1266, 5, 3, 0, 0, 1266, 1267, 5, 40, 0, 0, 1267, 1268, 5, 4, 0, 0, 1268, 163, 1, 0, 0, 0, 1269, 1270, 5, 12, 0, 0, 1270, 1271, 5, 3, 0, 0, 1271, 1272, 5, 41, 0, 0, 1272, 1273, 5, 4, 0, 0, 1273, 165, 1, 0, 0, 0, 1274, 1275, 5, 12, 0, 0, 1275, 1276, 5, 3, 0, 0, 1276, 1277, 5, 42, 0, 0, 1277, 1278, 5, 4, 0, 0, 1278, 167, 1, 0, 0, 0, 1279, 1280, 5, 12, 0, 0, 1280, 1281, 5, 3, 0, 0, 1281, 1282, 5, 43, 0, 0, 1282, 1283, 5, 4, 0, 0, 1283, 169, 1, 0, 0, 0, 1284, 1285, 5, 12, 0, 0, 1285, 1286, 5, 3, 0, 0, 1286, 1287, 5, 44, 0, 0, 1287, 1288, 5, 4, 0, 0, 1288, 171, 1, 0, 0, 0, 1289, 1290, 5, 12, 0, 0, 1290, 1291, 5, 3, 0, 0, 1291, 1292, 5, 45, 0, 0, 1292, 1293, 5, 4, 0, 0, 1293, 173, 1, 0, 0, 0, 1294, 1295, 5, 12, 0, 0, 1295, 1296, 5, 3, 0, 0, 1296, 1297, 5, 46, 0, 0, 1297, 1298, 5, 4, 0, 0, 1298, 175, 1, 0, 0, 0, 1299, 1300, 5, 47, 0, 0, 1300, 1301, 5, 3, 0, 0, 1301, 1302, 5, 13, 0, 0, 1302, 1303, 5, 4, 0, 0, 1303, 177, 1, 0, 0, 0, 1304, 1305, 5, 48, 0, 0, 1305, 1306, 5, 3, 0, 0, 1306, 1307, 5, 156, 0, 0, 1307, 1308, 5, 4, 0, 0, 1308, 179, 1, 0, 0, 0, 1309, 1310, 5, 49, 0, 0, 1310, 1311, 5, 3, 0, 0, 1311, 1312, 5, 156, 0, 0, 1312, 1313, 5, 4, 0, 0, 1313, 181, 1, 0, 0, 0, 1314, 1315, 5, 50, 0, 0, 1315, 1316, 5, 3, 0, 0, 1316, 1317, 5, 156, 0, 0, 1317, 1318, 5, 4, 0, 0, 1318, 183, 1, 0, 0, 0, 1319, 1320, 5, 51, 0, 0, 1320, 1321, 5, 3, 0, 0, 1321, 1322, 5, 13, 0, 0, 1322, 1323, 5, 4, 0, 0, 1323, 185, 1, 0, 0, 0, 1324, 1325, 5, 52, 0, 0, 1325, 1326, 5, 3, 0, 0, 1326, 1327, 5, 156, 0, 0, 1327, 1328, 5, 4, 0, 0, 1328, 187, 1, 0, 0, 0, 1329, 1330, 5, 53, 0, 0, 1330, 1331, 5, 3, 0, 0, 1331, 1332, 3, 406, 203, 0, 1332, 1333, 5, 4, 0, 0, 1333, 189, 1, 0, 0, 0, 1334, 1335, 5, 54, 0, 0, 1335, 1336, 5, 3, 0, 0, 1336, 1337, 5, 13, 0, 0, 1337, 1338, 5, 4, 0, 0, 1338, 191, 1, 0, 0, 0, 1339, 1340, 5, 55, 0, 0, 1340, 1341, 5, 3, 0, 0, 1341, 1342, 3, 406, 203, 0, 1342, 1343, 5, 4, 0, 0, 1343, 193, 1, 0, 0, 0, 1344, 1345, 5, 56, 0, 0, 1345, 1346, 5, 3, 0, 0, 1346, 1347, 3, 406, 203, 0, 1347, 1348, 5, 4, 0, 0, 1348, 195, 1, 0, 0, 0, 1349, 1350, 5, 57, 0, 0, 1350, 1351, 5, 3, 0, 0, 1351, 1355, 5, 1, 0, 0, 1352, 1354, 3, 386, 193, 0, 1353, 1352, 1, 0, 0, 0, 1354, 1357, 1, 0, 0, 0, 1355, 1353, 1, 0, 0, 0, 1355, 1356, 1, 0, 0, 0, 1356, 1358, 1, 0, 0, 0, 1357, 1355, 1, 0, 0, 0, 1358, 1359, 5, 2, 0, 0, 1359, 1360, 5, 4, 0, 0, 1360, 197, 1, 0, 0, 0, 1361, 1362, 5, 58, 0, 0, 1362, 1363, 5, 3, 0, 0, 1363, 1364, 3, 242, 121, 0, 1364, 1365, 5, 4, 0, 0, 1365, 199, 1, 0, 0, 0, 1366, 1367, 5, 59, 0, 0, 1367, 1368, 5, 3, 0, 0, 1368, 1369, 3, 406, 203, 0, 1369, 1370, 5, 4, 0, 0, 1370, 201, 1, 0, 0, 0, 1371, 1372, 5, 60, 0, 0, 1372, 1373, 5, 3, 0, 0, 1373, 1374, 5, 13, 0, 0, 1374, 1375, 5, 4, 0, 0, 1375, 203, 1, 0, 0, 0, 1376, 1377, 5, 61, 0, 0, 1377, 1378, 5, 3, 0, 0, 1378, 1379, 5, 13, 0, 0, 1379, 1380, 5, 4, 0, 0, 1380, 205, 1, 0, 0, 0, 1381, 1382, 5, 62, 0, 0, 1382, 1383, 5, 3, 0, 0, 1383, 1384, 5, 13, 0, 0, 1384, 1385, 5, 4, 0, 0, 1385, 207, 1, 0, 0, 0, 1386, 1387, 5, 63, 0, 0, 1387, 1388, 5, 3, 0, 0, 1388, 1389, 5, 13, 0, 0, 1389, 1390, 5, 4, 0, 0, 1390, 209, 1, 0, 0, 0, 1391, 1392, 5, 64, 0, 0, 1392, 1393, 5, 3, 0, 0, 1393, 1394, 5, 13, 0, 0, 1394, 1395, 5, 4, 0, 0, 1395, 211, 1, 0, 0, 0, 1396, 1397, 5, 65, 0, 0, 1397, 1398, 5, 3, 0, 0, 1398, 1399, 3, 404, 202, 0, 1399, 1400, 5, 4, 0, 0, 1400, 213, 1, 0, 0, 0, 1401, 1402, 5, 66, 0, 0, 1402, 1403, 5, 3, 0, 0, 1403, 1404, 3, 242, 121, 0, 1404, 1405, 5, 4, 0, 0, 1405, 215, 1, 0, 0, 0, 1406, 1407, 5, 67, 0, 0, 1407, 1408, 5, 3, 0, 0, 1408, 1409, 3, 240, 120, 0, 1409, 1410, 5, 4, 0, 0, 1410, 217, 1, 0, 0, 0, 1411, 1412, 5, 68, 0, 0, 1412, 1413, 5, 3, 0, 0, 1413, 1414, 3, 404, 202, 0, 1414, 1415, 5, 4, 0, 0, 1415, 219, 1, 0, 0, 0, 1416, 1417, 5, 69, 0, 0, 1417, 1418, 5, 3, 0, 0, 1418, 1419, 5, 157, 0, 0, 1419, 1420, 5, 4, 0, 0, 1420, 221, 1, 0, 0, 0, 1421, 1422, 5, 70, 0, 0, 1422, 1423, 5, 3, 0, 0, 1423, 1427, 5, 1, 0, 0, 1424, 1426, 3, 386, 193, 0, 1425, 1424, 1, 0, 0, 0, 1426, 1429, 1, 0, 0, 0, 1427, 1425, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1430, 1, 0, 0, 0, 1429, 1427, 1, 0, 0, 0, 1430, 1431, 5, 2, 0, 0, 1431, 1432, 5, 4, 0, 0, 1432, 223, 1, 0, 0, 0, 1433, 1434, 5, 71, 0, 0, 1434, 1435, 5, 3, 0, 0, 1435, 1436, 5, 156, 0, 0, 1436, 1437, 5, 4, 0, 0, 1437, 225, 1, 0, 0, 0, 1438, 1439, 5, 72, 0, 0, 1439, 1440, 5, 3, 0, 0, 1440, 1441, 3, 240, 120, 0, 1441, 1442, 5, 4, 0, 0, 1442, 227, 1, 0, 0, 0, 1443, 1444, 5, 73, 0, 0, 1444, 1445, 5, 3, 0, 0, 1445, 1446, 3, 404, 202, 0, 1446, 1447, 5, 4, 0, 0, 1447, 229, 1, 0, 0, 0, 1448, 1449, 5, 74, 0, 0, 1449, 1450, 5, 3, 0, 0, 1450, 1451, 3, 406, 203, 0, 1451, 1452, 5, 4, 0, 0, 1452, 231, 1, 0, 0, 0, 1453, 1454, 5, 75, 0, 0, 1454, 1455, 5, 3, 0, 0, 1455, 1456, 3, 404, 202, 0, 1456, 1457, 5, 4, 0, 0, 1457, 233, 1, 0, 0, 0, 1458, 1459, 5, 76, 0, 0, 1459, 1460, 5, 3, 0, 0, 1460, 1461, 5, 13, 0, 0, 1461, 1462, 5, 4, 0, 0, 1462, 235, 1, 0, 0, 0, 1463, 1464, 5, 77, 0, 0, 1464, 1465, 5, 3, 0, 0, 1465, 1466, 3, 240, 120, 0, 1466, 1467, 5, 4, 0, 0, 1467, 237, 1, 0, 0, 0, 1468, 1469, 5, 78, 0, 0, 1469, 1470, 5, 3, 0, 0, 1470, 1471, 5, 13, 0, 0, 1471, 1472, 5, 4, 0, 0, 1472, 239, 1, 0, 0, 0, 1473, 1478, 5, 5, 0, 0, 1474, 1475, 5, 156, 0, 0, 1475, 1477, 5, 6, 0, 0, 1476, 1474, 1, 0, 0, 0, 1477, 1480, 1, 0, 0, 0, 1478, 1476, 1, 0, 0, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1481, 1, 0, 0, 0, 1480, 1478, 1, 0, 0, 0, 1481, 1482, 5, 7, 0, 0, 1482, 241, 1, 0, 0, 0, 1483, 1484, 5, 5, 0, 0, 1484, 1500, 5, 7, 0, 0, 1485, 1486, 5, 5, 0, 0, 1486, 1491, 3, 406, 203, 0, 1487, 1488, 5, 6, 0, 0, 1488, 1490, 3, 406, 203, 0, 1489, 1487, 1, 0, 0, 0, 1490, 1493, 1, 0, 0, 0, 1491, 1489, 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1495, 1, 0, 0, 0, 1493, 1491, 1, 0, 0, 0, 1494, 1496, 5, 6, 0, 0, 1495, 1494, 1, 0, 0, 0, 1495, 1496, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1498, 5, 7, 0, 0, 1498, 1500, 1, 0, 0, 0, 1499, 1483, 1, 0, 0, 0, 1499, 1485, 1, 0, 0, 0, 1500, 243, 1, 0, 0, 0, 1501, 1506, 5, 5, 0, 0, 1502, 1503, 5, 158, 0, 0, 1503, 1505, 5, 6, 0, 0, 1504, 1502, 1, 0, 0, 0, 1505, 1508, 1, 0, 0, 0, 1506, 1504, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1509, 1, 0, 0, 0, 1508, 1506, 1, 0, 0, 0, 1509, 1510, 5, 7, 0, 0, 1510, 245, 1, 0, 0, 0, 1511, 1512, 5, 79, 0, 0, 1512, 1513, 5, 3, 0, 0, 1513, 1514, 5, 156, 0, 0, 1514, 1515, 5, 4, 0, 0, 1515, 247, 1, 0, 0, 0, 1516, 1517, 5, 80, 0, 0, 1517, 1518, 5, 3, 0, 0, 1518, 1519, 3, 240, 120, 0, 1519, 1520, 5, 4, 0, 0, 1520, 249, 1, 0, 0, 0, 1521, 1522, 5, 81, 0, 0, 1522, 1523, 5, 3, 0, 0, 1523, 1524, 3, 240, 120, 0, 1524, 1525, 5, 4, 0, 0, 1525, 251, 1, 0, 0, 0, 1526, 1527, 5, 82, 0, 0, 1527, 1528, 5, 3, 0, 0, 1528, 1529, 3, 404, 202, 0, 1529, 1530, 5, 4, 0, 0, 1530, 253, 1, 0, 0, 0, 1531, 1532, 5, 83, 0, 0, 1532, 1533, 5, 3, 0, 0, 1533, 1534, 3, 404, 202, 0, 1534, 1535, 5, 4, 0, 0, 1535, 255, 1, 0, 0, 0, 1536, 1537, 5, 84, 0, 0, 1537, 1538, 5, 3, 0, 0, 1538, 1539, 3, 404, 202, 0, 1539, 1540, 5, 4, 0, 0, 1540, 257, 1, 0, 0, 0, 1541, 1542, 5, 85, 0, 0, 1542, 1543, 5, 3, 0, 0, 1543, 1544, 5, 13, 0, 0, 1544, 1545, 5, 4, 0, 0, 1545, 259, 1, 0, 0, 0, 1546, 1547, 5, 86, 0, 0, 1547, 1548, 5, 3, 0, 0, 1548, 1549, 3, 240, 120, 0, 1549, 1550, 5, 4, 0, 0, 1550, 261, 1, 0, 0, 0, 1551, 1552, 5, 87, 0, 0, 1552, 1553, 5, 3, 0, 0, 1553, 1554, 3, 406, 203, 0, 1554, 1555, 5, 4, 0, 0, 1555, 263, 1, 0, 0, 0, 1556, 1557, 5, 88, 0, 0, 1557, 1558, 5, 3, 0, 0, 1558, 1559, 5, 156, 0, 0, 1559, 1560, 5, 4, 0, 0, 1560, 265, 1, 0, 0, 0, 1561, 1562, 5, 89, 0, 0, 1562, 1563, 5, 3, 0, 0, 1563, 1564, 5, 157, 0, 0, 1564, 1565, 5, 4, 0, 0, 1565, 267, 1, 0, 0, 0, 1566, 1567, 5, 90, 0, 0, 1567, 1568, 5, 3, 0, 0, 1568, 1569, 5, 13, 0, 0, 1569, 1570, 5, 4, 0, 0, 1570, 269, 1, 0, 0, 0, 1571, 1572, 5, 91, 0, 0, 1572, 1573, 5, 3, 0, 0, 1573, 1574, 3, 406, 203, 0, 1574, 1575, 5, 4, 0, 0, 1575, 271, 1, 0, 0, 0, 1576, 1577, 5, 92, 0, 0, 1577, 1578, 5, 3, 0, 0, 1578, 1579, 3, 406, 203, 0, 1579, 1580, 5, 4, 0, 0, 1580, 273, 1, 0, 0, 0, 1581, 1582, 5, 93, 0, 0, 1582, 1583, 5, 3, 0, 0, 1583, 1584, 5, 13, 0, 0, 1584, 1585, 5, 4, 0, 0, 1585, 275, 1, 0, 0, 0, 1586, 1587, 5, 94, 0, 0, 1587, 1588, 5, 3, 0, 0, 1588, 1589, 3, 404, 202, 0, 1589, 1590, 5, 4, 0, 0, 1590, 277, 1, 0, 0, 0, 1591, 1592, 5, 95, 0, 0, 1592, 1593, 5, 3, 0, 0, 1593, 1594, 3, 404, 202, 0, 1594, 1595, 5, 4, 0, 0, 1595, 279, 1, 0, 0, 0, 1596, 1597, 5, 96, 0, 0, 1597, 1598, 5, 3, 0, 0, 1598, 1599, 3, 242, 121, 0, 1599, 1600, 5, 4, 0, 0, 1600, 281, 1, 0, 0, 0, 1601, 1602, 5, 97, 0, 0, 1602, 1603, 5, 3, 0, 0, 1603, 1604, 5, 13, 0, 0, 1604, 1605, 5, 4, 0, 0, 1605, 283, 1, 0, 0, 0, 1606, 1607, 5, 98, 0, 0, 1607, 1608, 5, 3, 0, 0, 1608, 1609, 3, 242, 121, 0, 1609, 1610, 5, 4, 0, 0, 1610, 285, 1, 0, 0, 0, 1611, 1612, 5, 99, 0, 0, 1612, 1613, 5, 3, 0, 0, 1613, 1614, 5, 13, 0, 0, 1614, 1615, 5, 4, 0, 0, 1615, 287, 1, 0, 0, 0, 1616, 1617, 5, 100, 0, 0, 1617, 1618, 5, 3, 0, 0, 1618, 1619, 3, 404, 202, 0, 1619, 1620, 5, 4, 0, 0, 1620, 289, 1, 0, 0, 0, 1621, 1622, 5, 101, 0, 0, 1622, 1623, 5, 3, 0, 0, 1623, 1625, 5, 1, 0, 0, 1624, 1626, 3, 298, 149, 0, 1625, 1624, 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1628, 1, 0, 0, 0, 1627, 1629, 3, 402, 201, 0, 1628, 1627, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1631, 1, 0, 0, 0, 1630, 1632, 3, 294, 147, 0, 1631, 1630, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1634, 1, 0, 0, 0, 1633, 1635, 3, 292, 146, 0, 1634, 1633, 1, 0, 0, 0, 1634, 1635, 1, 0, 0, 0, 1635, 1637, 1, 0, 0, 0, 1636, 1638, 3, 296, 148, 0, 1637, 1636, 1, 0, 0, 0, 1637, 1638, 1, 0, 0, 0, 1638, 1640, 1, 0, 0, 0, 1639, 1641, 3, 300, 150, 0, 1640, 1639, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1643, 1, 0, 0, 0, 1642, 1644, 3, 302, 151, 0, 1643, 1642, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 1646, 1, 0, 0, 0, 1645, 1647, 3, 304, 152, 0, 1646, 1645, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1649, 1, 0, 0, 0, 1648, 1650, 3, 306, 153, 0, 1649, 1648, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 1651, 1, 0, 0, 0, 1651, 1652, 5, 2, 0, 0, 1652, 1653, 5, 4, 0, 0, 1653, 291, 1, 0, 0, 0, 1654, 1655, 5, 102, 0, 0, 1655, 1656, 5, 3, 0, 0, 1656, 1657, 5, 13, 0, 0, 1657, 1658, 5, 4, 0, 0, 1658, 293, 1, 0, 0, 0, 1659, 1660, 5, 103, 0, 0, 1660, 1661, 5, 3, 0, 0, 1661, 1662, 5, 158, 0, 0, 1662, 1663, 5, 4, 0, 0, 1663, 295, 1, 0, 0, 0, 1664, 1665, 5, 104, 0, 0, 1665, 1666, 5, 3, 0, 0, 1666, 1667, 5, 13, 0, 0, 1667, 1668, 5, 4, 0, 0, 1668, 297, 1, 0, 0, 0, 1669, 1670, 5, 105, 0, 0, 1670, 1671, 5, 3, 0, 0, 1671, 1672, 7, 0, 0, 0, 1672, 1673, 5, 4, 0, 0, 1673, 299, 1, 0, 0, 0, 1674, 1675, 5, 106, 0, 0, 1675, 1676, 5, 3, 0, 0, 1676, 1677, 5, 13, 0, 0, 1677, 1678, 5, 4, 0, 0, 1678, 301, 1, 0, 0, 0, 1679, 1680, 5, 107, 0, 0, 1680, 1681, 5, 3, 0, 0, 1681, 1682, 5, 13, 0, 0, 1682, 1683, 5, 4, 0, 0, 1683, 303, 1, 0, 0, 0, 1684, 1685, 5, 108, 0, 0, 1685, 1686, 5, 3, 0, 0, 1686, 1687, 3, 406, 203, 0, 1687, 1688, 5, 4, 0, 0, 1688, 305, 1, 0, 0, 0, 1689, 1690, 5, 109, 0, 0, 1690, 1691, 5, 3, 0, 0, 1691, 1695, 5, 1, 0, 0, 1692, 1694, 3, 308, 154, 0, 1693, 1692, 1, 0, 0, 0, 1694, 1697, 1, 0, 0, 0, 1695, 1693, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1698, 1, 0, 0, 0, 1697, 1695, 1, 0, 0, 0, 1698, 1699, 5, 2, 0, 0, 1699, 1700, 5, 4, 0, 0, 1700, 307, 1, 0, 0, 0, 1701, 1702, 5, 156, 0, 0, 1702, 1703, 5, 3, 0, 0, 1703, 1705, 5, 1, 0, 0, 1704, 1706, 3, 310, 155, 0, 1705, 1704, 1, 0, 0, 0, 1705, 1706, 1, 0, 0, 0, 1706, 1708, 1, 0, 0, 0, 1707, 1709, 3, 312, 156, 0, 1708, 1707, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1711, 1, 0, 0, 0, 1710, 1712, 3, 314, 157, 0, 1711, 1710, 1, 0, 0, 0, 1711, 1712, 1, 0, 0, 0, 1712, 1714, 1, 0, 0, 0, 1713, 1715, 3, 316, 158, 0, 1714, 1713, 1, 0, 0, 0, 1714, 1715, 1, 0, 0, 0, 1715, 1717, 1, 0, 0, 0, 1716, 1718, 3, 292, 146, 0, 1717, 1716, 1, 0, 0, 0, 1717, 1718, 1, 0, 0, 0, 1718, 1720, 1, 0, 0, 0, 1719, 1721, 3, 318, 159, 0, 1720, 1719, 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1723, 1, 0, 0, 0, 1722, 1724, 3, 396, 198, 0, 1723, 1722, 1, 0, 0, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1726, 1, 0, 0, 0, 1725, 1727, 3, 312, 156, 0, 1726, 1725, 1, 0, 0, 0, 1726, 1727, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1729, 5, 2, 0, 0, 1729, 1730, 5, 4, 0, 0, 1730, 309, 1, 0, 0, 0, 1731, 1732, 5, 110, 0, 0, 1732, 1733, 5, 3, 0, 0, 1733, 1734, 5, 158, 0, 0, 1734, 1735, 5, 4, 0, 0, 1735, 311, 1, 0, 0, 0, 1736, 1737, 5, 111, 0, 0, 1737, 1738, 5, 3, 0, 0, 1738, 1739, 5, 156, 0, 0, 1739, 1740, 5, 4, 0, 0, 1740, 313, 1, 0, 0, 0, 1741, 1742, 5, 112, 0, 0, 1742, 1743, 5, 3, 0, 0, 1743, 1744, 3, 404, 202, 0, 1744, 1745, 5, 4, 0, 0, 1745, 315, 1, 0, 0, 0, 1746, 1747, 5, 113, 0, 0, 1747, 1748, 5, 3, 0, 0, 1748, 1749, 3, 404, 202, 0, 1749, 1750, 5, 4, 0, 0, 1750, 317, 1, 0, 0, 0, 1751, 1752, 5, 114, 0, 0, 1752, 1753, 5, 3, 0, 0, 1753, 1754, 5, 158, 0, 0, 1754, 1755, 5, 4, 0, 0, 1755, 319, 1, 0, 0, 0, 1756, 1757, 5, 115, 0, 0, 1757, 1758, 5, 3, 0, 0, 1758, 1759, 5, 157, 0, 0, 1759, 1760, 5, 4, 0, 0, 1760, 321, 1, 0, 0, 0, 1761, 1762, 5, 116, 0, 0, 1762, 1763, 5, 3, 0, 0, 1763, 1764, 5, 158, 0, 0, 1764, 1765, 5, 4, 0, 0, 1765, 323, 1, 0, 0, 0, 1766, 1767, 5, 117, 0, 0, 1767, 1768, 5, 3, 0, 0, 1768, 1769, 5, 13, 0, 0, 1769, 1770, 5, 4, 0, 0, 1770, 325, 1, 0, 0, 0, 1771, 1772, 5, 118, 0, 0, 1772, 1773, 5, 3, 0, 0, 1773, 1774, 3, 242, 121, 0, 1774, 1775, 5, 4, 0, 0, 1775, 327, 1, 0, 0, 0, 1776, 1777, 5, 119, 0, 0, 1777, 1778, 5, 3, 0, 0, 1778, 1779, 5, 156, 0, 0, 1779, 1780, 5, 4, 0, 0, 1780, 329, 1, 0, 0, 0, 1781, 1782, 5, 120, 0, 0, 1782, 1783, 5, 3, 0, 0, 1783, 1784, 5, 156, 0, 0, 1784, 1785, 5, 4, 0, 0, 1785, 331, 1, 0, 0, 0, 1786, 1787, 5, 121, 0, 0, 1787, 1788, 5, 3, 0, 0, 1788, 1789, 3, 240, 120, 0, 1789, 1790, 5, 4, 0, 0, 1790, 333, 1, 0, 0, 0, 1791, 1792, 5, 122, 0, 0, 1792, 1793, 5, 3, 0, 0, 1793, 1794, 5, 13, 0, 0, 1794, 1795, 5, 4, 0, 0, 1795, 335, 1, 0, 0, 0, 1796, 1797, 5, 123, 0, 0, 1797, 1798, 5, 3, 0, 0, 1798, 1799, 3, 404, 202, 0, 1799, 1800, 5, 4, 0, 0, 1800, 337, 1, 0, 0, 0, 1801, 1802, 5, 124, 0, 0, 1802, 1803, 5, 3, 0, 0, 1803, 1804, 3, 406, 203, 0, 1804, 1805, 5, 4, 0, 0, 1805, 1814, 1, 0, 0, 0, 1806, 1807, 5, 124, 0, 0, 1807, 1808, 5, 3, 0, 0, 1808, 1809, 5, 5, 0, 0, 1809, 1810, 3, 378, 189, 0, 1810, 1811, 5, 7, 0, 0, 1811, 1812, 5, 4, 0, 0, 1812, 1814, 1, 0, 0, 0, 1813, 1801, 1, 0, 0, 0, 1813, 1806, 1, 0, 0, 0, 1814, 339, 1, 0, 0, 0, 1815, 1816, 5, 125, 0, 0, 1816, 1817, 5, 3, 0, 0, 1817, 1818, 3, 404, 202, 0, 1818, 1819, 5, 4, 0, 0, 1819, 341, 1, 0, 0, 0, 1820, 1821, 5, 126, 0, 0, 1821, 1822, 5, 3, 0, 0, 1822, 1823, 3, 240, 120, 0, 1823, 1824, 5, 4, 0, 0, 1824, 343, 1, 0, 0, 0, 1825, 1826, 5, 127, 0, 0, 1826, 1827, 5, 3, 0, 0, 1827, 1828, 3, 242, 121, 0, 1828, 1829, 5, 4, 0, 0, 1829, 345, 1, 0, 0, 0, 1830, 1831, 5, 128, 0, 0, 1831, 1832, 5, 3, 0, 0, 1832, 1833, 3, 242, 121, 0, 1833, 1834, 5, 4, 0, 0, 1834, 347, 1, 0, 0, 0, 1835, 1836, 5, 129, 0, 0, 1836, 1837, 5, 3, 0, 0, 1837, 1838, 3, 242, 121, 0, 1838, 1839, 5, 4, 0, 0, 1839, 349, 1, 0, 0, 0, 1840, 1841, 5, 130, 0, 0, 1841, 1842, 5, 3, 0, 0, 1842, 1843, 3, 242, 121, 0, 1843, 1844, 5, 4, 0, 0, 1844, 351, 1, 0, 0, 0, 1845, 1846, 5, 131, 0, 0, 1846, 1847, 5, 3, 0, 0, 1847, 1848, 3, 404, 202, 0, 1848, 1849, 5, 4, 0, 0, 1849, 353, 1, 0, 0, 0, 1850, 1851, 5, 132, 0, 0, 1851, 1852, 5, 3, 0, 0, 1852, 1853, 5, 157, 0, 0, 1853, 1854, 5, 4, 0, 0, 1854, 355, 1, 0, 0, 0, 1855, 1856, 5, 133, 0, 0, 1856, 1857, 5, 3, 0, 0, 1857, 1858, 3, 404, 202, 0, 1858, 1859, 5, 4, 0, 0, 1859, 357, 1, 0, 0, 0, 1860, 1861, 5, 134, 0, 0, 1861, 1862, 5, 3, 0, 0, 1862, 1863, 5, 13, 0, 0, 1863, 1864, 5, 4, 0, 0, 1864, 359, 1, 0, 0, 0, 1865, 1866, 5, 135, 0, 0, 1866, 1867, 5, 3, 0, 0, 1867, 1868, 5, 156, 0, 0, 1868, 1869, 5, 4, 0, 0, 1869, 361, 1, 0, 0, 0, 1870, 1871, 5, 136, 0, 0, 1871, 1872, 5, 3, 0, 0, 1872, 1873, 5, 156, 0, 0, 1873, 1874, 5, 4, 0, 0, 1874, 363, 1, 0, 0, 0, 1875, 1876, 5, 137, 0, 0, 1876, 1877, 5, 3, 0, 0, 1877, 1878, 3, 406, 203, 0, 1878, 1879, 5, 4, 0, 0, 1879, 365, 1, 0, 0, 0, 1880, 1881, 5, 138, 0, 0, 1881, 1882, 5, 3, 0, 0, 1882, 1883, 5, 156, 0, 0, 1883, 1884, 5, 4, 0, 0, 1884, 367, 1, 0, 0, 0, 1885, 1886, 5, 139, 0, 0, 1886, 1887, 5, 3, 0, 0, 1887, 1888, 5, 156, 0, 0, 1888, 1889, 5, 4, 0, 0, 1889, 369, 1, 0, 0, 0, 1890, 1891, 5, 140, 0, 0, 1891, 1892, 5, 3, 0, 0, 1892, 1896, 5, 1, 0, 0, 1893, 1895, 3, 386, 193, 0, 1894, 1893, 1, 0, 0, 0, 1895, 1898, 1, 0, 0, 0, 1896, 1894, 1, 0, 0, 0, 1896, 1897, 1, 0, 0, 0, 1897, 1899, 1, 0, 0, 0, 1898, 1896, 1, 0, 0, 0, 1899, 1900, 5, 2, 0, 0, 1900, 1901, 5, 4, 0, 0, 1901, 371, 1, 0, 0, 0, 1902, 1903, 5, 141, 0, 0, 1903, 1904, 5, 3, 0, 0, 1904, 1905, 3, 240, 120, 0, 1905, 1906, 5, 4, 0, 0, 1906, 373, 1, 0, 0, 0, 1907, 1908, 5, 142, 0, 0, 1908, 1909, 5, 3, 0, 0, 1909, 1910, 3, 404, 202, 0, 1910, 1911, 5, 4, 0, 0, 1911, 375, 1, 0, 0, 0, 1912, 1913, 5, 143, 0, 0, 1913, 1914, 5, 3, 0, 0, 1914, 1915, 5, 13, 0, 0, 1915, 1916, 5, 4, 0, 0, 1916, 377, 1, 0, 0, 0, 1917, 1919, 3, 380, 190, 0, 1918, 1917, 1, 0, 0, 0, 1919, 1922, 1, 0, 0, 0, 1920, 1918, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 379, 1, 0, 0, 0, 1922, 1920, 1, 0, 0, 0, 1923, 1924, 5, 1, 0, 0, 1924, 1925, 5, 144, 0, 0, 1925, 1926, 5, 3, 0, 0, 1926, 1927, 5, 156, 0, 0, 1927, 1928, 5, 4, 0, 0, 1928, 1929, 5, 145, 0, 0, 1929, 1930, 5, 3, 0, 0, 1930, 1931, 5, 156, 0, 0, 1931, 1932, 5, 4, 0, 0, 1932, 1933, 5, 2, 0, 0, 1933, 1934, 5, 6, 0, 0, 1934, 381, 1, 0, 0, 0, 1935, 1936, 5, 153, 0, 0, 1936, 1937, 5, 3, 0, 0, 1937, 1938, 3, 242, 121, 0, 1938, 1939, 5, 4, 0, 0, 1939, 383, 1, 0, 0, 0, 1940, 1941, 5, 154, 0, 0, 1941, 1942, 5, 3, 0, 0, 1942, 1943, 3, 240, 120, 0, 1943, 1944, 5, 4, 0, 0, 1944, 385, 1, 0, 0, 0, 1945, 1946, 3, 406, 203, 0, 1946, 1947, 5, 3, 0, 0, 1947, 1948, 3, 406, 203, 0, 1948, 1949, 5, 4, 0, 0, 1949, 1987, 1, 0, 0, 0, 1950, 1951, 3, 406, 203, 0, 1951, 1952, 5, 3, 0, 0, 1952, 1953, 5, 13, 0, 0, 1953, 1954, 5, 4, 0, 0, 1954, 1987, 1, 0, 0, 0, 1955, 1956, 3, 406, 203, 0, 1956, 1957, 5, 3, 0, 0, 1957, 1958, 5, 160, 0, 0, 1958, 1959, 5, 4, 0, 0, 1959, 1987, 1, 0, 0, 0, 1960, 1961, 3, 406, 203, 0, 1961, 1962, 5, 3, 0, 0, 1962, 1963, 5, 1, 0, 0, 1963, 1964, 3, 386, 193, 0, 1964, 1965, 5, 2, 0, 0, 1965, 1966, 5, 4, 0, 0, 1966, 1987, 1, 0, 0, 0, 1967, 1968, 3, 406, 203, 0, 1968, 1969, 5, 3, 0, 0, 1969, 1971, 5, 5, 0, 0, 1970, 1972, 3, 406, 203, 0, 1971, 1970, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 1977, 1, 0, 0, 0, 1973, 1974, 5, 6, 0, 0, 1974, 1976, 3, 406, 203, 0, 1975, 1973, 1, 0, 0, 0, 1976, 1979, 1, 0, 0, 0, 1977, 1975, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 1981, 1, 0, 0, 0, 1979, 1977, 1, 0, 0, 0, 1980, 1982, 5, 6, 0, 0, 1981, 1980, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1984, 5, 7, 0, 0, 1984, 1985, 5, 4, 0, 0, 1985, 1987, 1, 0, 0, 0, 1986, 1945, 1, 0, 0, 0, 1986, 1950, 1, 0, 0, 0, 1986, 1955, 1, 0, 0, 0, 1986, 1960, 1, 0, 0, 0, 1986, 1967, 1, 0, 0, 0, 1987, 387, 1, 0, 0, 0, 1988, 1989, 5, 146, 0, 0, 1989, 1990, 5, 3, 0, 0, 1990, 1991, 3, 240, 120, 0, 1991, 1992, 5, 4, 0, 0, 1992, 389, 1, 0, 0, 0, 1993, 1994, 5, 147, 0, 0, 1994, 1995, 5, 3, 0, 0, 1995, 1996, 5, 13, 0, 0, 1996, 1997, 5, 4, 0, 0, 1997, 391, 1, 0, 0, 0, 1998, 1999, 5, 148, 0, 0, 1999, 2000, 5, 3, 0, 0, 2000, 2001, 3, 404, 202, 0, 2001, 2002, 5, 4, 0, 0, 2002, 393, 1, 0, 0, 0, 2003, 2004, 5, 149, 0, 0, 2004, 2005, 5, 3, 0, 0, 2005, 2009, 5, 1, 0, 0, 2006, 2008, 3, 386, 193, 0, 2007, 2006, 1, 0, 0, 0, 2008, 2011, 1, 0, 0, 0, 2009, 2007, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2012, 1, 0, 0, 0, 2011, 2009, 1, 0, 0, 0, 2012, 2013, 5, 2, 0, 0, 2013, 2014, 5, 4, 0, 0, 2014, 395, 1, 0, 0, 0, 2015, 2016, 5, 150, 0, 0, 2016, 2017, 5, 3, 0, 0, 2017, 2021, 5, 1, 0, 0, 2018, 2020, 3, 386, 193, 0, 2019, 2018, 1, 0, 0, 0, 2020, 2023, 1, 0, 0, 0, 2021, 2019, 1, 0, 0, 0, 2021, 2022, 1, 0, 0, 0, 2022, 2024, 1, 0, 0, 0, 2023, 2021, 1, 0, 0, 0, 2024, 2025, 5, 2, 0, 0, 2025, 2026, 5, 4, 0, 0, 2026, 397, 1, 0, 0, 0, 2027, 2028, 5, 151, 0, 0, 2028, 2029, 5, 3, 0, 0, 2029, 2030, 5, 156, 0, 0, 2030, 2031, 5, 4, 0, 0, 2031, 399, 1, 0, 0, 0, 2032, 2033, 5, 152, 0, 0, 2033, 2034, 5, 3, 0, 0, 2034, 2035, 5, 158, 0, 0, 2035, 2036, 5, 4, 0, 0, 2036, 401, 1, 0, 0, 0, 2037, 2038, 5, 155, 0, 0, 2038, 2039, 5, 3, 0, 0, 2039, 2040, 3, 406, 203, 0, 2040, 2041, 5, 4, 0, 0, 2041, 403, 1, 0, 0, 0, 2042, 2049, 5, 158, 0, 0, 2043, 2049, 5, 157, 0, 0, 2044, 2049, 5, 18, 0, 0, 2045, 2049, 5, 10, 0, 0, 2046, 2049, 5, 11, 0, 0, 2047, 2049, 3, 408, 204, 0, 2048, 2042, 1, 0, 0, 0, 2048, 2043, 1, 0, 0, 0, 2048, 2044, 1, 0, 0, 0, 2048, 2045, 1, 0, 0, 0, 2048, 2046, 1, 0, 0, 0, 2048, 2047, 1, 0, 0, 0, 2049, 405, 1, 0, 0, 0, 2050, 2054, 3, 404, 202, 0, 2051, 2054, 5, 13, 0, 0, 2052, 2054, 5, 159, 0, 0, 2053, 2050, 1, 0, 0, 0, 2053, 2051, 1, 0, 0, 0, 2053, 2052, 1, 0, 0, 0, 2054, 407, 1, 0, 0, 0, 2055, 2056, 7, 1, 0, 0, 2056, 409, 1, 0, 0, 0, 162, 440, 443, 446, 449, 452, 455, 458, 461, 464, 467, 471, 474, 477, 481, 484, 487, 490, 493, 496, 499, 504, 507, 510, 523, 528, 533, 538, 543, 548, 553, 558, 563, 568, 573, 578, 583, 588, 593, 598, 603, 608, 613, 618, 623, 628, 633, 638, 643, 648, 653, 662, 665, 670, 680, 683, 686, 689, 692, 703, 710, 713, 723, 726, 748, 752, 755, 766, 769, 772, 775, 778, 781, 784, 787, 790, 793, 796, 799, 802, 805, 808, 811, 814, 856, 859, 862, 865, 868, 872, 875, 878, 901, 904, 909, 912, 916, 943, 947, 950, 953, 956, 960, 964, 967, 970, 974, 977, 989, 1012, 1017, 1020, 1023, 1026, 1029, 1035, 1072, 1075, 1078, 1081, 1084, 1087, 1099, 1110, 1124, 1143, 1156, 1355, 1427, 1478, 1491, 1495, 1499, 1506, 1625, 1628, 1631, 1634, 1637, 1640, 1643, 1646, 1649, 1695, 1705, 1708, 1711, 1714, 1717, 1720, 1723, 1726, 1813, 1896, 1920, 1971, 1977, 1981, 1986, 2009, 2021, 2048, 2053] \ No newline at end of file diff --git a/kin/grammar/PBXProj.tokens b/kin/grammar/PBXProj.tokens index 3acb76b..ed58b2a 100644 --- a/kin/grammar/PBXProj.tokens +++ b/kin/grammar/PBXProj.tokens @@ -24,137 +24,144 @@ PBX_BUILD_STYLE=23 PBX_CONTAINER_ITEM_PROXY=24 PBX_COPY_FILES_BUILD_PHASE=25 PBX_FILE_REFERENCE=26 -PBX_FRAMEWORKS_BUILD_PHASE=27 -PBX_GROUP=28 -PBX_HEADERS_BUILD_PHASE=29 -PBX_NATIVE_TARGET=30 -PBX_LEGACY_TARGET=31 -PBX_PROJECT=32 -PBX_REFERENCE_PROXY=33 -PBX_RESOURCES_BUILD_PHASE=34 -PBX_SHELL_SCRIPT_BUILD_PHASE=35 -PBX_SHELL_BUILD_PHASE=36 -PBX_SOURCES_BUILD_PHASE=37 -PBX_TARGET_DEPENDENCY=38 -PBX_VARIANT_GROUP=39 -XC_BUILD_CONFIGURATION=40 -XC_CONFIGURATION_LIST=41 -XC_REMOTE_SWIFT_PACKAGE_REFERENCE=42 -XC_SWIFT_PACKAGE_PRODUCT_DEPENDENCY=43 -XC_VERSION_GROUP=44 -ALWAYS_OUT_OF_DATE=45 -FILE_REF=46 -PRODUCT_REF=47 -CONTAINER_PORTAL=48 -PROXY_TYPE=49 -REMOTE_GLOBAL_ID_STRING=50 -REMOTE_INFO=51 -FILE_ENCODING=52 -COMMENTS=53 -EXPLICIT_FILE_TYPE=54 -LAST_KNOWN_FILE_TYPE=55 -INCLUDE_IN_INDEX=56 -INDENT_WIDTH=57 -TAB_WIDTH=58 -USES_TABS=59 -WRAPS_LINES=60 -PLATFORM_FILTER=61 -PLATFORM_FILTERS=62 -CHILDREN=63 -PRODUCT_INSTALL_PATH=64 -REPOSITORY_URL=65 -REQUIREMENT=66 -PACKAGE=67 -PACKAGE_PRODUCT_DEPENDENCIES=68 -NAME=69 -PATH=70 -SOURCE_TREE=71 -BUILD_ACTION_MASK=72 -FILES=73 -RUN_ONLY_FOR_DEPLOYMENT_POSTPROCESSING=74 -BUILD_CONFIGURATION_LIST=75 -BUILD_PHASES=76 -BUILD_RULES=77 -BUILD_ARGUMENTS_STRING=78 -BUILD_TOOL_PATH=79 -BUILD_WORKING_DIRECTORY=80 -PASS_BUILD_SETTINGS_IN_ENVIRONMENT=81 -DEPENDENCIES=82 -PRODUCT_NAME=83 -PRODUCT_REFERENCE=84 -PRODUCT_TYPE=85 -LINE_ENDING=86 -XC_LANGUAGE_SPECIFICATION_IDENTIFIER=87 -PLIST_STRUCTURE_DEFINITION_IDENTIFIER=88 -REF_TYPE=89 -COMPILER_SPEC=90 -FILE_PATTERNS=91 -INPUT_FILES=92 -IS_EDITABLE=93 -OUTPUT_FILES=94 -RUN_ONCE_PER_ARCH=95 -SCRIPT=96 -ATTRIBUTES=97 -LAST_SWIFT_MIGRATION=98 -DEFAULT_BUILD_SYSTEM_TYPE_FOR_WORKSPACE=99 -LAST_SWIFT_UPDATE_CHECK=100 -BUILD_INDEPENDENT_TARGETS_IN_PARALLEL=101 -LAST_TESTING_UPGRADE_CHECK=102 -LAST_UPGRADE_CHECK=103 -ORGANIZATION_NAME=104 -TARGET_ATTRIBUTES=105 -CREATED_ON_TOOLS_VERSION=106 -TEST_TARGET_ID=107 -DEVELOPMENT_TEAM=108 -DEVELOPMENT_TEAM_NAME=109 -PROVISIONING_STYLE=110 -COMPATIBILITY_VERSION=111 -DEVELOPMENT_REGION=112 -HAS_SCANNED_FOR_ENCODINGS=113 -KNOWN_REGIONS=114 -MAIN_GROUP=115 -PRODUCT_REF_GROUP=116 -PACKAGE_REFERENCES=117 -PRODUCT_DIR_PATH=118 -PROJECT_REFERENCES=119 -PROJECT_ROOT=120 -TARGETS=121 -INPUT_FILE_LIST_PATHS=122 -INPUT_PATHS=123 -OUTPUT_FILE_LIST_PATHS=124 -OUTPUT_PATHS=125 -SHELL_PATH=126 -SHELL=127 -SHELL_SCRIPT=128 -SHOW_ENV_VARS_IN_LOG=129 -TARGET=130 -TARGET_PROXY=131 -FILE_TYPE=132 -REMOTE_REF=133 -BASE_CONFIGURATION_REFERENCE=134 -BUILD_SETTINGS=135 -BUILD_STYLES=136 -DST_PATH=137 -DST_SUBFOLDER_SPEC=138 -PRODUCT_GROUP=139 -PROJECT_REF=140 -BUILD_CONFIGURATIONS=141 -DEFAULT_CONFIGURATION_IS_VISIBLE=142 -DEFAULT_CONFIGURATION_NAME=143 -SETTINGS=144 -SYSTEM_CAPABILITIES=145 -CURRENT_VERSION=146 -VERSION_GROUP_TYPE=147 -CLASSPREFIX=148 -REFERENCE=149 -QUOTED_STRING=150 -NON_QUOTED_STRING=151 -VARIABLE=152 -ALPHA_NUMERIC=153 -ALPHA_NUMERIC_CAP=154 -WS=155 -COMMENT=156 -LINE_COMMENT=157 +PBX_FILE_SYSTEM_SYNCHRONIZED_BUILD_FILE_EXCEPTION_SET=27 +PBX_FILE_SYSTEM_SYNCHRONIZED_ROOT_GROUP=28 +PBX_FRAMEWORKS_BUILD_PHASE=29 +PBX_GROUP=30 +PBX_HEADERS_BUILD_PHASE=31 +PBX_NATIVE_TARGET=32 +PBX_LEGACY_TARGET=33 +PBX_PROJECT=34 +PBX_REFERENCE_PROXY=35 +PBX_RESOURCES_BUILD_PHASE=36 +PBX_SHELL_SCRIPT_BUILD_PHASE=37 +PBX_SHELL_BUILD_PHASE=38 +PBX_SOURCES_BUILD_PHASE=39 +PBX_TARGET_DEPENDENCY=40 +PBX_VARIANT_GROUP=41 +XC_BUILD_CONFIGURATION=42 +XC_CONFIGURATION_LIST=43 +XC_REMOTE_SWIFT_PACKAGE_REFERENCE=44 +XC_SWIFT_PACKAGE_PRODUCT_DEPENDENCY=45 +XC_VERSION_GROUP=46 +ALWAYS_OUT_OF_DATE=47 +FILE_REF=48 +PRODUCT_REF=49 +CONTAINER_PORTAL=50 +PROXY_TYPE=51 +REMOTE_GLOBAL_ID_STRING=52 +REMOTE_INFO=53 +FILE_ENCODING=54 +COMMENTS=55 +EXPLICIT_FILE_TYPE=56 +EXPLICIT_FILE_TYPES=57 +EXPLICIT_FOLDERS=58 +LAST_KNOWN_FILE_TYPE=59 +INCLUDE_IN_INDEX=60 +INDENT_WIDTH=61 +TAB_WIDTH=62 +USES_TABS=63 +WRAPS_LINES=64 +PLATFORM_FILTER=65 +PLATFORM_FILTERS=66 +CHILDREN=67 +PRODUCT_INSTALL_PATH=68 +REPOSITORY_URL=69 +REQUIREMENT=70 +PACKAGE=71 +PACKAGE_PRODUCT_DEPENDENCIES=72 +NAME=73 +PATH=74 +SOURCE_TREE=75 +BUILD_ACTION_MASK=76 +FILES=77 +RUN_ONLY_FOR_DEPLOYMENT_POSTPROCESSING=78 +BUILD_CONFIGURATION_LIST=79 +BUILD_PHASES=80 +BUILD_RULES=81 +BUILD_ARGUMENTS_STRING=82 +BUILD_TOOL_PATH=83 +BUILD_WORKING_DIRECTORY=84 +PASS_BUILD_SETTINGS_IN_ENVIRONMENT=85 +DEPENDENCIES=86 +PRODUCT_NAME=87 +PRODUCT_REFERENCE=88 +PRODUCT_TYPE=89 +LINE_ENDING=90 +XC_LANGUAGE_SPECIFICATION_IDENTIFIER=91 +PLIST_STRUCTURE_DEFINITION_IDENTIFIER=92 +REF_TYPE=93 +COMPILER_SPEC=94 +FILE_PATTERNS=95 +INPUT_FILES=96 +IS_EDITABLE=97 +OUTPUT_FILES=98 +RUN_ONCE_PER_ARCH=99 +SCRIPT=100 +ATTRIBUTES=101 +LAST_SWIFT_MIGRATION=102 +DEFAULT_BUILD_SYSTEM_TYPE_FOR_WORKSPACE=103 +LAST_SWIFT_UPDATE_CHECK=104 +BUILD_INDEPENDENT_TARGETS_IN_PARALLEL=105 +LAST_TESTING_UPGRADE_CHECK=106 +LAST_UPGRADE_CHECK=107 +ORGANIZATION_NAME=108 +TARGET_ATTRIBUTES=109 +CREATED_ON_TOOLS_VERSION=110 +TEST_TARGET_ID=111 +DEVELOPMENT_TEAM=112 +DEVELOPMENT_TEAM_NAME=113 +PROVISIONING_STYLE=114 +COMPATIBILITY_VERSION=115 +DEVELOPMENT_REGION=116 +HAS_SCANNED_FOR_ENCODINGS=117 +KNOWN_REGIONS=118 +MAIN_GROUP=119 +PRODUCT_REF_GROUP=120 +PACKAGE_REFERENCES=121 +PREFERRED_PROJECT_OBJECT_VERSION=122 +PRODUCT_DIR_PATH=123 +PROJECT_REFERENCES=124 +PROJECT_ROOT=125 +TARGETS=126 +INPUT_FILE_LIST_PATHS=127 +INPUT_PATHS=128 +OUTPUT_FILE_LIST_PATHS=129 +OUTPUT_PATHS=130 +SHELL_PATH=131 +SHELL=132 +SHELL_SCRIPT=133 +SHOW_ENV_VARS_IN_LOG=134 +TARGET=135 +TARGET_PROXY=136 +FILE_TYPE=137 +REMOTE_REF=138 +BASE_CONFIGURATION_REFERENCE=139 +BUILD_SETTINGS=140 +BUILD_STYLES=141 +DST_PATH=142 +DST_SUBFOLDER_SPEC=143 +PRODUCT_GROUP=144 +PROJECT_REF=145 +BUILD_CONFIGURATIONS=146 +DEFAULT_CONFIGURATION_IS_VISIBLE=147 +DEFAULT_CONFIGURATION_NAME=148 +SETTINGS=149 +SYSTEM_CAPABILITIES=150 +CURRENT_VERSION=151 +VERSION_GROUP_TYPE=152 +MEMBERSHIP_EXCEPTIONS=153 +EXCEPTIONS=154 +CLASSPREFIX=155 +REFERENCE=156 +QUOTED_STRING=157 +NON_QUOTED_STRING=158 +VARIABLE=159 +ALPHA_NUMERIC=160 +ALPHA_NUMERIC_CAP=161 +WS=162 +COMMENT=163 +LINE_COMMENT=164 '{'=1 '}'=2 '='=3 @@ -180,124 +187,131 @@ LINE_COMMENT=157 'PBXContainerItemProxy'=24 'PBXCopyFilesBuildPhase'=25 'PBXFileReference'=26 -'PBXFrameworksBuildPhase'=27 -'PBXGroup'=28 -'PBXHeadersBuildPhase'=29 -'PBXNativeTarget'=30 -'PBXLegacyTarget'=31 -'PBXProject'=32 -'PBXReferenceProxy'=33 -'PBXShellScriptBuildPhase'=35 -'PBXShellBuildPhase'=36 -'PBXSourcesBuildPhase'=37 -'PBXTargetDependency'=38 -'PBXVariantGroup'=39 -'XCBuildConfiguration'=40 -'XCConfigurationList'=41 -'XCRemoteSwiftPackageReference'=42 -'XCSwiftPackageProductDependency'=43 -'XCVersionGroup'=44 -'alwaysOutOfDate'=45 -'fileRef'=46 -'productRef'=47 -'containerPortal'=48 -'proxyType'=49 -'remoteGlobalIDString'=50 -'remoteInfo'=51 -'fileEncoding'=52 -'comments'=53 -'explicitFileType'=54 -'lastKnownFileType'=55 -'includeInIndex'=56 -'indentWidth'=57 -'tabWidth'=58 -'usesTabs'=59 -'wrapsLines'=60 -'platformFilter'=61 -'platformFilters'=62 -'children'=63 -'productInstallPath'=64 -'repositoryURL'=65 -'requirement'=66 -'package'=67 -'packageProductDependencies'=68 -'name'=69 -'path'=70 -'sourceTree'=71 -'buildActionMask'=72 -'files'=73 -'runOnlyForDeploymentPostprocessing'=74 -'buildConfigurationList'=75 -'buildPhases'=76 -'buildRules'=77 -'buildArgumentsString'=78 -'buildToolPath'=79 -'buildWorkingDirectory'=80 -'passBuildSettingsInEnvironment'=81 -'dependencies'=82 -'productName'=83 -'productReference'=84 -'productType'=85 -'lineEnding'=86 -'xcLanguageSpecificationIdentifier'=87 -'plistStructureDefinitionIdentifier'=88 -'refType'=89 -'compilerSpec'=90 -'filePatterns'=91 -'inputFiles'=92 -'isEditable'=93 -'outputFiles'=94 -'runOncePerArchitecture'=95 -'script'=96 -'attributes'=97 -'LastSwiftMigration'=98 -'DefaultBuildSystemTypeForWorkspace'=99 -'LastSwiftUpdateCheck'=100 -'BuildIndependentTargetsInParallel'=101 -'LastTestingUpgradeCheck'=102 -'LastUpgradeCheck'=103 -'ORGANIZATIONNAME'=104 -'TargetAttributes'=105 -'CreatedOnToolsVersion'=106 -'TestTargetID'=107 -'DevelopmentTeam'=108 -'DevelopmentTeamName'=109 -'ProvisioningStyle'=110 -'compatibilityVersion'=111 -'developmentRegion'=112 -'hasScannedForEncodings'=113 -'knownRegions'=114 -'mainGroup'=115 -'productRefGroup'=116 -'packageReferences'=117 -'projectDirPath'=118 -'projectReferences'=119 -'projectRoot'=120 -'targets'=121 -'inputFileListPaths'=122 -'inputPaths'=123 -'outputFileListPaths'=124 -'outputPaths'=125 -'shellPath'=126 -'shell'=127 -'shellScript'=128 -'showEnvVarsInLog'=129 -'target'=130 -'targetProxy'=131 -'fileType'=132 -'remoteRef'=133 -'baseConfigurationReference'=134 -'buildSettings'=135 -'buildStyles'=136 -'dstPath'=137 -'dstSubfolderSpec'=138 -'ProductGroup'=139 -'ProjectRef'=140 -'buildConfigurations'=141 -'defaultConfigurationIsVisible'=142 -'defaultConfigurationName'=143 -'settings'=144 -'SystemCapabilities'=145 -'currentVersion'=146 -'versionGroupType'=147 -'CLASSPREFIX'=148 +'PBXFileSystemSynchronizedBuildFileExceptionSet'=27 +'PBXFileSystemSynchronizedRootGroup'=28 +'PBXFrameworksBuildPhase'=29 +'PBXGroup'=30 +'PBXHeadersBuildPhase'=31 +'PBXNativeTarget'=32 +'PBXLegacyTarget'=33 +'PBXProject'=34 +'PBXReferenceProxy'=35 +'PBXShellScriptBuildPhase'=37 +'PBXShellBuildPhase'=38 +'PBXSourcesBuildPhase'=39 +'PBXTargetDependency'=40 +'PBXVariantGroup'=41 +'XCBuildConfiguration'=42 +'XCConfigurationList'=43 +'XCRemoteSwiftPackageReference'=44 +'XCSwiftPackageProductDependency'=45 +'XCVersionGroup'=46 +'alwaysOutOfDate'=47 +'fileRef'=48 +'productRef'=49 +'containerPortal'=50 +'proxyType'=51 +'remoteGlobalIDString'=52 +'remoteInfo'=53 +'fileEncoding'=54 +'comments'=55 +'explicitFileType'=56 +'explicitFileTypes'=57 +'explicitFolders'=58 +'lastKnownFileType'=59 +'includeInIndex'=60 +'indentWidth'=61 +'tabWidth'=62 +'usesTabs'=63 +'wrapsLines'=64 +'platformFilter'=65 +'platformFilters'=66 +'children'=67 +'productInstallPath'=68 +'repositoryURL'=69 +'requirement'=70 +'package'=71 +'packageProductDependencies'=72 +'name'=73 +'path'=74 +'sourceTree'=75 +'buildActionMask'=76 +'files'=77 +'runOnlyForDeploymentPostprocessing'=78 +'buildConfigurationList'=79 +'buildPhases'=80 +'buildRules'=81 +'buildArgumentsString'=82 +'buildToolPath'=83 +'buildWorkingDirectory'=84 +'passBuildSettingsInEnvironment'=85 +'dependencies'=86 +'productName'=87 +'productReference'=88 +'productType'=89 +'lineEnding'=90 +'xcLanguageSpecificationIdentifier'=91 +'plistStructureDefinitionIdentifier'=92 +'refType'=93 +'compilerSpec'=94 +'filePatterns'=95 +'inputFiles'=96 +'isEditable'=97 +'outputFiles'=98 +'runOncePerArchitecture'=99 +'script'=100 +'attributes'=101 +'LastSwiftMigration'=102 +'DefaultBuildSystemTypeForWorkspace'=103 +'LastSwiftUpdateCheck'=104 +'BuildIndependentTargetsInParallel'=105 +'LastTestingUpgradeCheck'=106 +'LastUpgradeCheck'=107 +'ORGANIZATIONNAME'=108 +'TargetAttributes'=109 +'CreatedOnToolsVersion'=110 +'TestTargetID'=111 +'DevelopmentTeam'=112 +'DevelopmentTeamName'=113 +'ProvisioningStyle'=114 +'compatibilityVersion'=115 +'developmentRegion'=116 +'hasScannedForEncodings'=117 +'knownRegions'=118 +'mainGroup'=119 +'productRefGroup'=120 +'packageReferences'=121 +'preferredProjectObjectVersion'=122 +'projectDirPath'=123 +'projectReferences'=124 +'projectRoot'=125 +'targets'=126 +'inputFileListPaths'=127 +'inputPaths'=128 +'outputFileListPaths'=129 +'outputPaths'=130 +'shellPath'=131 +'shell'=132 +'shellScript'=133 +'showEnvVarsInLog'=134 +'target'=135 +'targetProxy'=136 +'fileType'=137 +'remoteRef'=138 +'baseConfigurationReference'=139 +'buildSettings'=140 +'buildStyles'=141 +'dstPath'=142 +'dstSubfolderSpec'=143 +'ProductGroup'=144 +'ProjectRef'=145 +'buildConfigurations'=146 +'defaultConfigurationIsVisible'=147 +'defaultConfigurationName'=148 +'settings'=149 +'SystemCapabilities'=150 +'currentVersion'=151 +'versionGroupType'=152 +'membershipExceptions'=153 +'exceptions'=154 +'CLASSPREFIX'=155 diff --git a/kin/grammar/PBXProjLexer.interp b/kin/grammar/PBXProjLexer.interp index 52a0b7d..1f14642 100644 --- a/kin/grammar/PBXProjLexer.interp +++ b/kin/grammar/PBXProjLexer.interp @@ -26,6 +26,8 @@ null 'PBXContainerItemProxy' 'PBXCopyFilesBuildPhase' 'PBXFileReference' +'PBXFileSystemSynchronizedBuildFileExceptionSet' +'PBXFileSystemSynchronizedRootGroup' 'PBXFrameworksBuildPhase' 'PBXGroup' 'PBXHeadersBuildPhase' @@ -54,6 +56,8 @@ null 'fileEncoding' 'comments' 'explicitFileType' +'explicitFileTypes' +'explicitFolders' 'lastKnownFileType' 'includeInIndex' 'indentWidth' @@ -117,6 +121,7 @@ null 'mainGroup' 'productRefGroup' 'packageReferences' +'preferredProjectObjectVersion' 'projectDirPath' 'projectReferences' 'projectRoot' @@ -147,6 +152,8 @@ null 'SystemCapabilities' 'currentVersion' 'versionGroupType' +'membershipExceptions' +'exceptions' 'CLASSPREFIX' null null @@ -186,6 +193,8 @@ PBX_BUILD_STYLE PBX_CONTAINER_ITEM_PROXY PBX_COPY_FILES_BUILD_PHASE PBX_FILE_REFERENCE +PBX_FILE_SYSTEM_SYNCHRONIZED_BUILD_FILE_EXCEPTION_SET +PBX_FILE_SYSTEM_SYNCHRONIZED_ROOT_GROUP PBX_FRAMEWORKS_BUILD_PHASE PBX_GROUP PBX_HEADERS_BUILD_PHASE @@ -214,6 +223,8 @@ REMOTE_INFO FILE_ENCODING COMMENTS EXPLICIT_FILE_TYPE +EXPLICIT_FILE_TYPES +EXPLICIT_FOLDERS LAST_KNOWN_FILE_TYPE INCLUDE_IN_INDEX INDENT_WIDTH @@ -277,6 +288,7 @@ KNOWN_REGIONS MAIN_GROUP PRODUCT_REF_GROUP PACKAGE_REFERENCES +PREFERRED_PROJECT_OBJECT_VERSION PRODUCT_DIR_PATH PROJECT_REFERENCES PROJECT_ROOT @@ -307,6 +319,8 @@ SETTINGS SYSTEM_CAPABILITIES CURRENT_VERSION VERSION_GROUP_TYPE +MEMBERSHIP_EXCEPTIONS +EXCEPTIONS CLASSPREFIX REFERENCE QUOTED_STRING @@ -345,6 +359,8 @@ PBX_BUILD_STYLE PBX_CONTAINER_ITEM_PROXY PBX_COPY_FILES_BUILD_PHASE PBX_FILE_REFERENCE +PBX_FILE_SYSTEM_SYNCHRONIZED_BUILD_FILE_EXCEPTION_SET +PBX_FILE_SYSTEM_SYNCHRONIZED_ROOT_GROUP PBX_FRAMEWORKS_BUILD_PHASE PBX_GROUP PBX_HEADERS_BUILD_PHASE @@ -373,6 +389,8 @@ REMOTE_INFO FILE_ENCODING COMMENTS EXPLICIT_FILE_TYPE +EXPLICIT_FILE_TYPES +EXPLICIT_FOLDERS LAST_KNOWN_FILE_TYPE INCLUDE_IN_INDEX INDENT_WIDTH @@ -436,6 +454,7 @@ KNOWN_REGIONS MAIN_GROUP PRODUCT_REF_GROUP PACKAGE_REFERENCES +PREFERRED_PROJECT_OBJECT_VERSION PRODUCT_DIR_PATH PROJECT_REFERENCES PROJECT_ROOT @@ -466,6 +485,8 @@ SETTINGS SYSTEM_CAPABILITIES CURRENT_VERSION VERSION_GROUP_TYPE +MEMBERSHIP_EXCEPTIONS +EXCEPTIONS CLASSPREFIX REFERENCE QUOTED_STRING @@ -487,4 +508,4 @@ mode names: DEFAULT_MODE atn: -[4, 0, 157, 2710, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 4, 12, 366, 8, 12, 11, 12, 12, 12, 367, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 683, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 2549, 8, 148, 1, 148, 3, 148, 2552, 8, 148, 1, 148, 3, 148, 2555, 8, 148, 1, 148, 3, 148, 2558, 8, 148, 1, 148, 3, 148, 2561, 8, 148, 1, 148, 3, 148, 2564, 8, 148, 1, 148, 3, 148, 2567, 8, 148, 1, 148, 3, 148, 2570, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 2577, 8, 148, 1, 148, 4, 148, 2580, 8, 148, 11, 148, 12, 148, 2581, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 4, 148, 2617, 8, 148, 11, 148, 12, 148, 2618, 1, 148, 1, 148, 1, 148, 1, 148, 4, 148, 2625, 8, 148, 11, 148, 12, 148, 2626, 4, 148, 2629, 8, 148, 11, 148, 12, 148, 2630, 1, 148, 1, 148, 3, 148, 2635, 8, 148, 1, 149, 1, 149, 4, 149, 2639, 8, 149, 11, 149, 12, 149, 2640, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 2647, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 4, 150, 2655, 8, 150, 11, 150, 12, 150, 2656, 1, 151, 1, 151, 4, 151, 2661, 8, 151, 11, 151, 12, 151, 2662, 1, 151, 3, 151, 2666, 8, 151, 1, 152, 1, 152, 1, 153, 1, 153, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 3, 155, 2677, 8, 155, 1, 156, 4, 156, 2680, 8, 156, 11, 156, 12, 156, 2681, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 5, 157, 2690, 8, 157, 10, 157, 12, 157, 2693, 9, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2704, 8, 158, 10, 158, 12, 158, 2707, 9, 158, 1, 158, 1, 158, 1, 2691, 0, 159, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, 46, 93, 47, 95, 48, 97, 49, 99, 50, 101, 51, 103, 52, 105, 53, 107, 54, 109, 55, 111, 56, 113, 57, 115, 58, 117, 59, 119, 60, 121, 61, 123, 62, 125, 63, 127, 64, 129, 65, 131, 66, 133, 67, 135, 68, 137, 69, 139, 70, 141, 71, 143, 72, 145, 73, 147, 74, 149, 75, 151, 76, 153, 77, 155, 78, 157, 79, 159, 80, 161, 81, 163, 82, 165, 83, 167, 84, 169, 85, 171, 86, 173, 87, 175, 88, 177, 89, 179, 90, 181, 91, 183, 92, 185, 93, 187, 94, 189, 95, 191, 96, 193, 97, 195, 98, 197, 99, 199, 100, 201, 101, 203, 102, 205, 103, 207, 104, 209, 105, 211, 106, 213, 107, 215, 108, 217, 109, 219, 110, 221, 111, 223, 112, 225, 113, 227, 114, 229, 115, 231, 116, 233, 117, 235, 118, 237, 119, 239, 120, 241, 121, 243, 122, 245, 123, 247, 124, 249, 125, 251, 126, 253, 127, 255, 128, 257, 129, 259, 130, 261, 131, 263, 132, 265, 133, 267, 134, 269, 135, 271, 136, 273, 137, 275, 138, 277, 139, 279, 140, 281, 141, 283, 142, 285, 143, 287, 144, 289, 145, 291, 146, 293, 147, 295, 148, 297, 149, 299, 150, 301, 151, 303, 152, 305, 153, 307, 154, 309, 0, 311, 0, 313, 155, 315, 156, 317, 157, 1, 0, 7, 1, 0, 48, 57, 3, 0, 48, 57, 65, 90, 97, 122, 2, 0, 48, 57, 65, 90, 3, 0, 48, 57, 65, 70, 97, 102, 1, 0, 34, 34, 3, 0, 9, 10, 12, 13, 32, 32, 2, 0, 10, 10, 13, 13, 2740, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251, 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0, 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0, 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0, 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, 0, 0, 0, 287, 1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, 1, 0, 0, 0, 0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, 301, 1, 0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, 315, 1, 0, 0, 0, 0, 317, 1, 0, 0, 0, 1, 319, 1, 0, 0, 0, 3, 321, 1, 0, 0, 0, 5, 323, 1, 0, 0, 0, 7, 325, 1, 0, 0, 0, 9, 327, 1, 0, 0, 0, 11, 329, 1, 0, 0, 0, 13, 331, 1, 0, 0, 0, 15, 333, 1, 0, 0, 0, 17, 348, 1, 0, 0, 0, 19, 356, 1, 0, 0, 0, 21, 358, 1, 0, 0, 0, 23, 360, 1, 0, 0, 0, 25, 365, 1, 0, 0, 0, 27, 369, 1, 0, 0, 0, 29, 383, 1, 0, 0, 0, 31, 391, 1, 0, 0, 0, 33, 402, 1, 0, 0, 0, 35, 404, 1, 0, 0, 0, 37, 406, 1, 0, 0, 0, 39, 408, 1, 0, 0, 0, 41, 427, 1, 0, 0, 0, 43, 440, 1, 0, 0, 0, 45, 453, 1, 0, 0, 0, 47, 467, 1, 0, 0, 0, 49, 489, 1, 0, 0, 0, 51, 512, 1, 0, 0, 0, 53, 529, 1, 0, 0, 0, 55, 553, 1, 0, 0, 0, 57, 562, 1, 0, 0, 0, 59, 583, 1, 0, 0, 0, 61, 599, 1, 0, 0, 0, 63, 615, 1, 0, 0, 0, 65, 626, 1, 0, 0, 0, 67, 682, 1, 0, 0, 0, 69, 684, 1, 0, 0, 0, 71, 709, 1, 0, 0, 0, 73, 728, 1, 0, 0, 0, 75, 749, 1, 0, 0, 0, 77, 769, 1, 0, 0, 0, 79, 785, 1, 0, 0, 0, 81, 806, 1, 0, 0, 0, 83, 826, 1, 0, 0, 0, 85, 856, 1, 0, 0, 0, 87, 888, 1, 0, 0, 0, 89, 903, 1, 0, 0, 0, 91, 919, 1, 0, 0, 0, 93, 927, 1, 0, 0, 0, 95, 938, 1, 0, 0, 0, 97, 954, 1, 0, 0, 0, 99, 964, 1, 0, 0, 0, 101, 985, 1, 0, 0, 0, 103, 996, 1, 0, 0, 0, 105, 1009, 1, 0, 0, 0, 107, 1018, 1, 0, 0, 0, 109, 1035, 1, 0, 0, 0, 111, 1053, 1, 0, 0, 0, 113, 1068, 1, 0, 0, 0, 115, 1080, 1, 0, 0, 0, 117, 1089, 1, 0, 0, 0, 119, 1098, 1, 0, 0, 0, 121, 1109, 1, 0, 0, 0, 123, 1124, 1, 0, 0, 0, 125, 1140, 1, 0, 0, 0, 127, 1149, 1, 0, 0, 0, 129, 1168, 1, 0, 0, 0, 131, 1182, 1, 0, 0, 0, 133, 1194, 1, 0, 0, 0, 135, 1202, 1, 0, 0, 0, 137, 1229, 1, 0, 0, 0, 139, 1234, 1, 0, 0, 0, 141, 1239, 1, 0, 0, 0, 143, 1250, 1, 0, 0, 0, 145, 1266, 1, 0, 0, 0, 147, 1272, 1, 0, 0, 0, 149, 1307, 1, 0, 0, 0, 151, 1330, 1, 0, 0, 0, 153, 1342, 1, 0, 0, 0, 155, 1353, 1, 0, 0, 0, 157, 1374, 1, 0, 0, 0, 159, 1388, 1, 0, 0, 0, 161, 1410, 1, 0, 0, 0, 163, 1441, 1, 0, 0, 0, 165, 1454, 1, 0, 0, 0, 167, 1466, 1, 0, 0, 0, 169, 1483, 1, 0, 0, 0, 171, 1495, 1, 0, 0, 0, 173, 1506, 1, 0, 0, 0, 175, 1540, 1, 0, 0, 0, 177, 1575, 1, 0, 0, 0, 179, 1583, 1, 0, 0, 0, 181, 1596, 1, 0, 0, 0, 183, 1609, 1, 0, 0, 0, 185, 1620, 1, 0, 0, 0, 187, 1631, 1, 0, 0, 0, 189, 1643, 1, 0, 0, 0, 191, 1666, 1, 0, 0, 0, 193, 1673, 1, 0, 0, 0, 195, 1684, 1, 0, 0, 0, 197, 1703, 1, 0, 0, 0, 199, 1738, 1, 0, 0, 0, 201, 1759, 1, 0, 0, 0, 203, 1793, 1, 0, 0, 0, 205, 1817, 1, 0, 0, 0, 207, 1834, 1, 0, 0, 0, 209, 1851, 1, 0, 0, 0, 211, 1868, 1, 0, 0, 0, 213, 1890, 1, 0, 0, 0, 215, 1903, 1, 0, 0, 0, 217, 1919, 1, 0, 0, 0, 219, 1939, 1, 0, 0, 0, 221, 1957, 1, 0, 0, 0, 223, 1978, 1, 0, 0, 0, 225, 1996, 1, 0, 0, 0, 227, 2019, 1, 0, 0, 0, 229, 2032, 1, 0, 0, 0, 231, 2042, 1, 0, 0, 0, 233, 2058, 1, 0, 0, 0, 235, 2076, 1, 0, 0, 0, 237, 2091, 1, 0, 0, 0, 239, 2109, 1, 0, 0, 0, 241, 2121, 1, 0, 0, 0, 243, 2129, 1, 0, 0, 0, 245, 2148, 1, 0, 0, 0, 247, 2159, 1, 0, 0, 0, 249, 2179, 1, 0, 0, 0, 251, 2191, 1, 0, 0, 0, 253, 2201, 1, 0, 0, 0, 255, 2207, 1, 0, 0, 0, 257, 2219, 1, 0, 0, 0, 259, 2236, 1, 0, 0, 0, 261, 2243, 1, 0, 0, 0, 263, 2255, 1, 0, 0, 0, 265, 2264, 1, 0, 0, 0, 267, 2274, 1, 0, 0, 0, 269, 2301, 1, 0, 0, 0, 271, 2315, 1, 0, 0, 0, 273, 2327, 1, 0, 0, 0, 275, 2335, 1, 0, 0, 0, 277, 2352, 1, 0, 0, 0, 279, 2365, 1, 0, 0, 0, 281, 2376, 1, 0, 0, 0, 283, 2396, 1, 0, 0, 0, 285, 2426, 1, 0, 0, 0, 287, 2451, 1, 0, 0, 0, 289, 2460, 1, 0, 0, 0, 291, 2479, 1, 0, 0, 0, 293, 2494, 1, 0, 0, 0, 295, 2511, 1, 0, 0, 0, 297, 2634, 1, 0, 0, 0, 299, 2646, 1, 0, 0, 0, 301, 2654, 1, 0, 0, 0, 303, 2660, 1, 0, 0, 0, 305, 2667, 1, 0, 0, 0, 307, 2669, 1, 0, 0, 0, 309, 2671, 1, 0, 0, 0, 311, 2676, 1, 0, 0, 0, 313, 2679, 1, 0, 0, 0, 315, 2685, 1, 0, 0, 0, 317, 2699, 1, 0, 0, 0, 319, 320, 5, 123, 0, 0, 320, 2, 1, 0, 0, 0, 321, 322, 5, 125, 0, 0, 322, 4, 1, 0, 0, 0, 323, 324, 5, 61, 0, 0, 324, 6, 1, 0, 0, 0, 325, 326, 5, 59, 0, 0, 326, 8, 1, 0, 0, 0, 327, 328, 5, 40, 0, 0, 328, 10, 1, 0, 0, 0, 329, 330, 5, 44, 0, 0, 330, 12, 1, 0, 0, 0, 331, 332, 5, 41, 0, 0, 332, 14, 1, 0, 0, 0, 333, 334, 5, 97, 0, 0, 334, 335, 5, 114, 0, 0, 335, 336, 5, 99, 0, 0, 336, 337, 5, 104, 0, 0, 337, 338, 5, 105, 0, 0, 338, 339, 5, 118, 0, 0, 339, 340, 5, 101, 0, 0, 340, 341, 5, 86, 0, 0, 341, 342, 5, 101, 0, 0, 342, 343, 5, 114, 0, 0, 343, 344, 5, 115, 0, 0, 344, 345, 5, 105, 0, 0, 345, 346, 5, 111, 0, 0, 346, 347, 5, 110, 0, 0, 347, 16, 1, 0, 0, 0, 348, 349, 5, 99, 0, 0, 349, 350, 5, 108, 0, 0, 350, 351, 5, 97, 0, 0, 351, 352, 5, 115, 0, 0, 352, 353, 5, 115, 0, 0, 353, 354, 5, 101, 0, 0, 354, 355, 5, 115, 0, 0, 355, 18, 1, 0, 0, 0, 356, 357, 5, 45, 0, 0, 357, 20, 1, 0, 0, 0, 358, 359, 5, 46, 0, 0, 359, 22, 1, 0, 0, 0, 360, 361, 5, 105, 0, 0, 361, 362, 5, 115, 0, 0, 362, 363, 5, 97, 0, 0, 363, 24, 1, 0, 0, 0, 364, 366, 7, 0, 0, 0, 365, 364, 1, 0, 0, 0, 366, 367, 1, 0, 0, 0, 367, 365, 1, 0, 0, 0, 367, 368, 1, 0, 0, 0, 368, 26, 1, 0, 0, 0, 369, 370, 5, 111, 0, 0, 370, 371, 5, 98, 0, 0, 371, 372, 5, 106, 0, 0, 372, 373, 5, 101, 0, 0, 373, 374, 5, 99, 0, 0, 374, 375, 5, 116, 0, 0, 375, 376, 5, 86, 0, 0, 376, 377, 5, 101, 0, 0, 377, 378, 5, 114, 0, 0, 378, 379, 5, 115, 0, 0, 379, 380, 5, 105, 0, 0, 380, 381, 5, 111, 0, 0, 381, 382, 5, 110, 0, 0, 382, 28, 1, 0, 0, 0, 383, 384, 5, 111, 0, 0, 384, 385, 5, 98, 0, 0, 385, 386, 5, 106, 0, 0, 386, 387, 5, 101, 0, 0, 387, 388, 5, 99, 0, 0, 388, 389, 5, 116, 0, 0, 389, 390, 5, 115, 0, 0, 390, 30, 1, 0, 0, 0, 391, 392, 5, 114, 0, 0, 392, 393, 5, 111, 0, 0, 393, 394, 5, 111, 0, 0, 394, 395, 5, 116, 0, 0, 395, 396, 5, 79, 0, 0, 396, 397, 5, 98, 0, 0, 397, 398, 5, 106, 0, 0, 398, 399, 5, 101, 0, 0, 399, 400, 5, 99, 0, 0, 400, 401, 5, 116, 0, 0, 401, 32, 1, 0, 0, 0, 402, 403, 5, 47, 0, 0, 403, 34, 1, 0, 0, 0, 404, 405, 5, 95, 0, 0, 405, 36, 1, 0, 0, 0, 406, 407, 5, 36, 0, 0, 407, 38, 1, 0, 0, 0, 408, 409, 5, 80, 0, 0, 409, 410, 5, 66, 0, 0, 410, 411, 5, 88, 0, 0, 411, 412, 5, 65, 0, 0, 412, 413, 5, 103, 0, 0, 413, 414, 5, 103, 0, 0, 414, 415, 5, 114, 0, 0, 415, 416, 5, 101, 0, 0, 416, 417, 5, 103, 0, 0, 417, 418, 5, 97, 0, 0, 418, 419, 5, 116, 0, 0, 419, 420, 5, 101, 0, 0, 420, 421, 5, 84, 0, 0, 421, 422, 5, 97, 0, 0, 422, 423, 5, 114, 0, 0, 423, 424, 5, 103, 0, 0, 424, 425, 5, 101, 0, 0, 425, 426, 5, 116, 0, 0, 426, 40, 1, 0, 0, 0, 427, 428, 5, 80, 0, 0, 428, 429, 5, 66, 0, 0, 429, 430, 5, 88, 0, 0, 430, 431, 5, 66, 0, 0, 431, 432, 5, 117, 0, 0, 432, 433, 5, 105, 0, 0, 433, 434, 5, 108, 0, 0, 434, 435, 5, 100, 0, 0, 435, 436, 5, 70, 0, 0, 436, 437, 5, 105, 0, 0, 437, 438, 5, 108, 0, 0, 438, 439, 5, 101, 0, 0, 439, 42, 1, 0, 0, 0, 440, 441, 5, 80, 0, 0, 441, 442, 5, 66, 0, 0, 442, 443, 5, 88, 0, 0, 443, 444, 5, 66, 0, 0, 444, 445, 5, 117, 0, 0, 445, 446, 5, 105, 0, 0, 446, 447, 5, 108, 0, 0, 447, 448, 5, 100, 0, 0, 448, 449, 5, 82, 0, 0, 449, 450, 5, 117, 0, 0, 450, 451, 5, 108, 0, 0, 451, 452, 5, 101, 0, 0, 452, 44, 1, 0, 0, 0, 453, 454, 5, 80, 0, 0, 454, 455, 5, 66, 0, 0, 455, 456, 5, 88, 0, 0, 456, 457, 5, 66, 0, 0, 457, 458, 5, 117, 0, 0, 458, 459, 5, 105, 0, 0, 459, 460, 5, 108, 0, 0, 460, 461, 5, 100, 0, 0, 461, 462, 5, 83, 0, 0, 462, 463, 5, 116, 0, 0, 463, 464, 5, 121, 0, 0, 464, 465, 5, 108, 0, 0, 465, 466, 5, 101, 0, 0, 466, 46, 1, 0, 0, 0, 467, 468, 5, 80, 0, 0, 468, 469, 5, 66, 0, 0, 469, 470, 5, 88, 0, 0, 470, 471, 5, 67, 0, 0, 471, 472, 5, 111, 0, 0, 472, 473, 5, 110, 0, 0, 473, 474, 5, 116, 0, 0, 474, 475, 5, 97, 0, 0, 475, 476, 5, 105, 0, 0, 476, 477, 5, 110, 0, 0, 477, 478, 5, 101, 0, 0, 478, 479, 5, 114, 0, 0, 479, 480, 5, 73, 0, 0, 480, 481, 5, 116, 0, 0, 481, 482, 5, 101, 0, 0, 482, 483, 5, 109, 0, 0, 483, 484, 5, 80, 0, 0, 484, 485, 5, 114, 0, 0, 485, 486, 5, 111, 0, 0, 486, 487, 5, 120, 0, 0, 487, 488, 5, 121, 0, 0, 488, 48, 1, 0, 0, 0, 489, 490, 5, 80, 0, 0, 490, 491, 5, 66, 0, 0, 491, 492, 5, 88, 0, 0, 492, 493, 5, 67, 0, 0, 493, 494, 5, 111, 0, 0, 494, 495, 5, 112, 0, 0, 495, 496, 5, 121, 0, 0, 496, 497, 5, 70, 0, 0, 497, 498, 5, 105, 0, 0, 498, 499, 5, 108, 0, 0, 499, 500, 5, 101, 0, 0, 500, 501, 5, 115, 0, 0, 501, 502, 5, 66, 0, 0, 502, 503, 5, 117, 0, 0, 503, 504, 5, 105, 0, 0, 504, 505, 5, 108, 0, 0, 505, 506, 5, 100, 0, 0, 506, 507, 5, 80, 0, 0, 507, 508, 5, 104, 0, 0, 508, 509, 5, 97, 0, 0, 509, 510, 5, 115, 0, 0, 510, 511, 5, 101, 0, 0, 511, 50, 1, 0, 0, 0, 512, 513, 5, 80, 0, 0, 513, 514, 5, 66, 0, 0, 514, 515, 5, 88, 0, 0, 515, 516, 5, 70, 0, 0, 516, 517, 5, 105, 0, 0, 517, 518, 5, 108, 0, 0, 518, 519, 5, 101, 0, 0, 519, 520, 5, 82, 0, 0, 520, 521, 5, 101, 0, 0, 521, 522, 5, 102, 0, 0, 522, 523, 5, 101, 0, 0, 523, 524, 5, 114, 0, 0, 524, 525, 5, 101, 0, 0, 525, 526, 5, 110, 0, 0, 526, 527, 5, 99, 0, 0, 527, 528, 5, 101, 0, 0, 528, 52, 1, 0, 0, 0, 529, 530, 5, 80, 0, 0, 530, 531, 5, 66, 0, 0, 531, 532, 5, 88, 0, 0, 532, 533, 5, 70, 0, 0, 533, 534, 5, 114, 0, 0, 534, 535, 5, 97, 0, 0, 535, 536, 5, 109, 0, 0, 536, 537, 5, 101, 0, 0, 537, 538, 5, 119, 0, 0, 538, 539, 5, 111, 0, 0, 539, 540, 5, 114, 0, 0, 540, 541, 5, 107, 0, 0, 541, 542, 5, 115, 0, 0, 542, 543, 5, 66, 0, 0, 543, 544, 5, 117, 0, 0, 544, 545, 5, 105, 0, 0, 545, 546, 5, 108, 0, 0, 546, 547, 5, 100, 0, 0, 547, 548, 5, 80, 0, 0, 548, 549, 5, 104, 0, 0, 549, 550, 5, 97, 0, 0, 550, 551, 5, 115, 0, 0, 551, 552, 5, 101, 0, 0, 552, 54, 1, 0, 0, 0, 553, 554, 5, 80, 0, 0, 554, 555, 5, 66, 0, 0, 555, 556, 5, 88, 0, 0, 556, 557, 5, 71, 0, 0, 557, 558, 5, 114, 0, 0, 558, 559, 5, 111, 0, 0, 559, 560, 5, 117, 0, 0, 560, 561, 5, 112, 0, 0, 561, 56, 1, 0, 0, 0, 562, 563, 5, 80, 0, 0, 563, 564, 5, 66, 0, 0, 564, 565, 5, 88, 0, 0, 565, 566, 5, 72, 0, 0, 566, 567, 5, 101, 0, 0, 567, 568, 5, 97, 0, 0, 568, 569, 5, 100, 0, 0, 569, 570, 5, 101, 0, 0, 570, 571, 5, 114, 0, 0, 571, 572, 5, 115, 0, 0, 572, 573, 5, 66, 0, 0, 573, 574, 5, 117, 0, 0, 574, 575, 5, 105, 0, 0, 575, 576, 5, 108, 0, 0, 576, 577, 5, 100, 0, 0, 577, 578, 5, 80, 0, 0, 578, 579, 5, 104, 0, 0, 579, 580, 5, 97, 0, 0, 580, 581, 5, 115, 0, 0, 581, 582, 5, 101, 0, 0, 582, 58, 1, 0, 0, 0, 583, 584, 5, 80, 0, 0, 584, 585, 5, 66, 0, 0, 585, 586, 5, 88, 0, 0, 586, 587, 5, 78, 0, 0, 587, 588, 5, 97, 0, 0, 588, 589, 5, 116, 0, 0, 589, 590, 5, 105, 0, 0, 590, 591, 5, 118, 0, 0, 591, 592, 5, 101, 0, 0, 592, 593, 5, 84, 0, 0, 593, 594, 5, 97, 0, 0, 594, 595, 5, 114, 0, 0, 595, 596, 5, 103, 0, 0, 596, 597, 5, 101, 0, 0, 597, 598, 5, 116, 0, 0, 598, 60, 1, 0, 0, 0, 599, 600, 5, 80, 0, 0, 600, 601, 5, 66, 0, 0, 601, 602, 5, 88, 0, 0, 602, 603, 5, 76, 0, 0, 603, 604, 5, 101, 0, 0, 604, 605, 5, 103, 0, 0, 605, 606, 5, 97, 0, 0, 606, 607, 5, 99, 0, 0, 607, 608, 5, 121, 0, 0, 608, 609, 5, 84, 0, 0, 609, 610, 5, 97, 0, 0, 610, 611, 5, 114, 0, 0, 611, 612, 5, 103, 0, 0, 612, 613, 5, 101, 0, 0, 613, 614, 5, 116, 0, 0, 614, 62, 1, 0, 0, 0, 615, 616, 5, 80, 0, 0, 616, 617, 5, 66, 0, 0, 617, 618, 5, 88, 0, 0, 618, 619, 5, 80, 0, 0, 619, 620, 5, 114, 0, 0, 620, 621, 5, 111, 0, 0, 621, 622, 5, 106, 0, 0, 622, 623, 5, 101, 0, 0, 623, 624, 5, 99, 0, 0, 624, 625, 5, 116, 0, 0, 625, 64, 1, 0, 0, 0, 626, 627, 5, 80, 0, 0, 627, 628, 5, 66, 0, 0, 628, 629, 5, 88, 0, 0, 629, 630, 5, 82, 0, 0, 630, 631, 5, 101, 0, 0, 631, 632, 5, 102, 0, 0, 632, 633, 5, 101, 0, 0, 633, 634, 5, 114, 0, 0, 634, 635, 5, 101, 0, 0, 635, 636, 5, 110, 0, 0, 636, 637, 5, 99, 0, 0, 637, 638, 5, 101, 0, 0, 638, 639, 5, 80, 0, 0, 639, 640, 5, 114, 0, 0, 640, 641, 5, 111, 0, 0, 641, 642, 5, 120, 0, 0, 642, 643, 5, 121, 0, 0, 643, 66, 1, 0, 0, 0, 644, 645, 5, 80, 0, 0, 645, 646, 5, 66, 0, 0, 646, 647, 5, 88, 0, 0, 647, 648, 5, 82, 0, 0, 648, 649, 5, 101, 0, 0, 649, 650, 5, 115, 0, 0, 650, 651, 5, 111, 0, 0, 651, 652, 5, 117, 0, 0, 652, 653, 5, 114, 0, 0, 653, 654, 5, 99, 0, 0, 654, 655, 5, 101, 0, 0, 655, 656, 5, 115, 0, 0, 656, 657, 5, 66, 0, 0, 657, 658, 5, 117, 0, 0, 658, 659, 5, 105, 0, 0, 659, 660, 5, 108, 0, 0, 660, 661, 5, 100, 0, 0, 661, 662, 5, 80, 0, 0, 662, 663, 5, 104, 0, 0, 663, 664, 5, 97, 0, 0, 664, 665, 5, 115, 0, 0, 665, 683, 5, 101, 0, 0, 666, 667, 5, 80, 0, 0, 667, 668, 5, 66, 0, 0, 668, 669, 5, 88, 0, 0, 669, 670, 5, 82, 0, 0, 670, 671, 5, 101, 0, 0, 671, 672, 5, 122, 0, 0, 672, 673, 5, 66, 0, 0, 673, 674, 5, 117, 0, 0, 674, 675, 5, 105, 0, 0, 675, 676, 5, 108, 0, 0, 676, 677, 5, 100, 0, 0, 677, 678, 5, 80, 0, 0, 678, 679, 5, 104, 0, 0, 679, 680, 5, 97, 0, 0, 680, 681, 5, 115, 0, 0, 681, 683, 5, 101, 0, 0, 682, 644, 1, 0, 0, 0, 682, 666, 1, 0, 0, 0, 683, 68, 1, 0, 0, 0, 684, 685, 5, 80, 0, 0, 685, 686, 5, 66, 0, 0, 686, 687, 5, 88, 0, 0, 687, 688, 5, 83, 0, 0, 688, 689, 5, 104, 0, 0, 689, 690, 5, 101, 0, 0, 690, 691, 5, 108, 0, 0, 691, 692, 5, 108, 0, 0, 692, 693, 5, 83, 0, 0, 693, 694, 5, 99, 0, 0, 694, 695, 5, 114, 0, 0, 695, 696, 5, 105, 0, 0, 696, 697, 5, 112, 0, 0, 697, 698, 5, 116, 0, 0, 698, 699, 5, 66, 0, 0, 699, 700, 5, 117, 0, 0, 700, 701, 5, 105, 0, 0, 701, 702, 5, 108, 0, 0, 702, 703, 5, 100, 0, 0, 703, 704, 5, 80, 0, 0, 704, 705, 5, 104, 0, 0, 705, 706, 5, 97, 0, 0, 706, 707, 5, 115, 0, 0, 707, 708, 5, 101, 0, 0, 708, 70, 1, 0, 0, 0, 709, 710, 5, 80, 0, 0, 710, 711, 5, 66, 0, 0, 711, 712, 5, 88, 0, 0, 712, 713, 5, 83, 0, 0, 713, 714, 5, 104, 0, 0, 714, 715, 5, 101, 0, 0, 715, 716, 5, 108, 0, 0, 716, 717, 5, 108, 0, 0, 717, 718, 5, 66, 0, 0, 718, 719, 5, 117, 0, 0, 719, 720, 5, 105, 0, 0, 720, 721, 5, 108, 0, 0, 721, 722, 5, 100, 0, 0, 722, 723, 5, 80, 0, 0, 723, 724, 5, 104, 0, 0, 724, 725, 5, 97, 0, 0, 725, 726, 5, 115, 0, 0, 726, 727, 5, 101, 0, 0, 727, 72, 1, 0, 0, 0, 728, 729, 5, 80, 0, 0, 729, 730, 5, 66, 0, 0, 730, 731, 5, 88, 0, 0, 731, 732, 5, 83, 0, 0, 732, 733, 5, 111, 0, 0, 733, 734, 5, 117, 0, 0, 734, 735, 5, 114, 0, 0, 735, 736, 5, 99, 0, 0, 736, 737, 5, 101, 0, 0, 737, 738, 5, 115, 0, 0, 738, 739, 5, 66, 0, 0, 739, 740, 5, 117, 0, 0, 740, 741, 5, 105, 0, 0, 741, 742, 5, 108, 0, 0, 742, 743, 5, 100, 0, 0, 743, 744, 5, 80, 0, 0, 744, 745, 5, 104, 0, 0, 745, 746, 5, 97, 0, 0, 746, 747, 5, 115, 0, 0, 747, 748, 5, 101, 0, 0, 748, 74, 1, 0, 0, 0, 749, 750, 5, 80, 0, 0, 750, 751, 5, 66, 0, 0, 751, 752, 5, 88, 0, 0, 752, 753, 5, 84, 0, 0, 753, 754, 5, 97, 0, 0, 754, 755, 5, 114, 0, 0, 755, 756, 5, 103, 0, 0, 756, 757, 5, 101, 0, 0, 757, 758, 5, 116, 0, 0, 758, 759, 5, 68, 0, 0, 759, 760, 5, 101, 0, 0, 760, 761, 5, 112, 0, 0, 761, 762, 5, 101, 0, 0, 762, 763, 5, 110, 0, 0, 763, 764, 5, 100, 0, 0, 764, 765, 5, 101, 0, 0, 765, 766, 5, 110, 0, 0, 766, 767, 5, 99, 0, 0, 767, 768, 5, 121, 0, 0, 768, 76, 1, 0, 0, 0, 769, 770, 5, 80, 0, 0, 770, 771, 5, 66, 0, 0, 771, 772, 5, 88, 0, 0, 772, 773, 5, 86, 0, 0, 773, 774, 5, 97, 0, 0, 774, 775, 5, 114, 0, 0, 775, 776, 5, 105, 0, 0, 776, 777, 5, 97, 0, 0, 777, 778, 5, 110, 0, 0, 778, 779, 5, 116, 0, 0, 779, 780, 5, 71, 0, 0, 780, 781, 5, 114, 0, 0, 781, 782, 5, 111, 0, 0, 782, 783, 5, 117, 0, 0, 783, 784, 5, 112, 0, 0, 784, 78, 1, 0, 0, 0, 785, 786, 5, 88, 0, 0, 786, 787, 5, 67, 0, 0, 787, 788, 5, 66, 0, 0, 788, 789, 5, 117, 0, 0, 789, 790, 5, 105, 0, 0, 790, 791, 5, 108, 0, 0, 791, 792, 5, 100, 0, 0, 792, 793, 5, 67, 0, 0, 793, 794, 5, 111, 0, 0, 794, 795, 5, 110, 0, 0, 795, 796, 5, 102, 0, 0, 796, 797, 5, 105, 0, 0, 797, 798, 5, 103, 0, 0, 798, 799, 5, 117, 0, 0, 799, 800, 5, 114, 0, 0, 800, 801, 5, 97, 0, 0, 801, 802, 5, 116, 0, 0, 802, 803, 5, 105, 0, 0, 803, 804, 5, 111, 0, 0, 804, 805, 5, 110, 0, 0, 805, 80, 1, 0, 0, 0, 806, 807, 5, 88, 0, 0, 807, 808, 5, 67, 0, 0, 808, 809, 5, 67, 0, 0, 809, 810, 5, 111, 0, 0, 810, 811, 5, 110, 0, 0, 811, 812, 5, 102, 0, 0, 812, 813, 5, 105, 0, 0, 813, 814, 5, 103, 0, 0, 814, 815, 5, 117, 0, 0, 815, 816, 5, 114, 0, 0, 816, 817, 5, 97, 0, 0, 817, 818, 5, 116, 0, 0, 818, 819, 5, 105, 0, 0, 819, 820, 5, 111, 0, 0, 820, 821, 5, 110, 0, 0, 821, 822, 5, 76, 0, 0, 822, 823, 5, 105, 0, 0, 823, 824, 5, 115, 0, 0, 824, 825, 5, 116, 0, 0, 825, 82, 1, 0, 0, 0, 826, 827, 5, 88, 0, 0, 827, 828, 5, 67, 0, 0, 828, 829, 5, 82, 0, 0, 829, 830, 5, 101, 0, 0, 830, 831, 5, 109, 0, 0, 831, 832, 5, 111, 0, 0, 832, 833, 5, 116, 0, 0, 833, 834, 5, 101, 0, 0, 834, 835, 5, 83, 0, 0, 835, 836, 5, 119, 0, 0, 836, 837, 5, 105, 0, 0, 837, 838, 5, 102, 0, 0, 838, 839, 5, 116, 0, 0, 839, 840, 5, 80, 0, 0, 840, 841, 5, 97, 0, 0, 841, 842, 5, 99, 0, 0, 842, 843, 5, 107, 0, 0, 843, 844, 5, 97, 0, 0, 844, 845, 5, 103, 0, 0, 845, 846, 5, 101, 0, 0, 846, 847, 5, 82, 0, 0, 847, 848, 5, 101, 0, 0, 848, 849, 5, 102, 0, 0, 849, 850, 5, 101, 0, 0, 850, 851, 5, 114, 0, 0, 851, 852, 5, 101, 0, 0, 852, 853, 5, 110, 0, 0, 853, 854, 5, 99, 0, 0, 854, 855, 5, 101, 0, 0, 855, 84, 1, 0, 0, 0, 856, 857, 5, 88, 0, 0, 857, 858, 5, 67, 0, 0, 858, 859, 5, 83, 0, 0, 859, 860, 5, 119, 0, 0, 860, 861, 5, 105, 0, 0, 861, 862, 5, 102, 0, 0, 862, 863, 5, 116, 0, 0, 863, 864, 5, 80, 0, 0, 864, 865, 5, 97, 0, 0, 865, 866, 5, 99, 0, 0, 866, 867, 5, 107, 0, 0, 867, 868, 5, 97, 0, 0, 868, 869, 5, 103, 0, 0, 869, 870, 5, 101, 0, 0, 870, 871, 5, 80, 0, 0, 871, 872, 5, 114, 0, 0, 872, 873, 5, 111, 0, 0, 873, 874, 5, 100, 0, 0, 874, 875, 5, 117, 0, 0, 875, 876, 5, 99, 0, 0, 876, 877, 5, 116, 0, 0, 877, 878, 5, 68, 0, 0, 878, 879, 5, 101, 0, 0, 879, 880, 5, 112, 0, 0, 880, 881, 5, 101, 0, 0, 881, 882, 5, 110, 0, 0, 882, 883, 5, 100, 0, 0, 883, 884, 5, 101, 0, 0, 884, 885, 5, 110, 0, 0, 885, 886, 5, 99, 0, 0, 886, 887, 5, 121, 0, 0, 887, 86, 1, 0, 0, 0, 888, 889, 5, 88, 0, 0, 889, 890, 5, 67, 0, 0, 890, 891, 5, 86, 0, 0, 891, 892, 5, 101, 0, 0, 892, 893, 5, 114, 0, 0, 893, 894, 5, 115, 0, 0, 894, 895, 5, 105, 0, 0, 895, 896, 5, 111, 0, 0, 896, 897, 5, 110, 0, 0, 897, 898, 5, 71, 0, 0, 898, 899, 5, 114, 0, 0, 899, 900, 5, 111, 0, 0, 900, 901, 5, 117, 0, 0, 901, 902, 5, 112, 0, 0, 902, 88, 1, 0, 0, 0, 903, 904, 5, 97, 0, 0, 904, 905, 5, 108, 0, 0, 905, 906, 5, 119, 0, 0, 906, 907, 5, 97, 0, 0, 907, 908, 5, 121, 0, 0, 908, 909, 5, 115, 0, 0, 909, 910, 5, 79, 0, 0, 910, 911, 5, 117, 0, 0, 911, 912, 5, 116, 0, 0, 912, 913, 5, 79, 0, 0, 913, 914, 5, 102, 0, 0, 914, 915, 5, 68, 0, 0, 915, 916, 5, 97, 0, 0, 916, 917, 5, 116, 0, 0, 917, 918, 5, 101, 0, 0, 918, 90, 1, 0, 0, 0, 919, 920, 5, 102, 0, 0, 920, 921, 5, 105, 0, 0, 921, 922, 5, 108, 0, 0, 922, 923, 5, 101, 0, 0, 923, 924, 5, 82, 0, 0, 924, 925, 5, 101, 0, 0, 925, 926, 5, 102, 0, 0, 926, 92, 1, 0, 0, 0, 927, 928, 5, 112, 0, 0, 928, 929, 5, 114, 0, 0, 929, 930, 5, 111, 0, 0, 930, 931, 5, 100, 0, 0, 931, 932, 5, 117, 0, 0, 932, 933, 5, 99, 0, 0, 933, 934, 5, 116, 0, 0, 934, 935, 5, 82, 0, 0, 935, 936, 5, 101, 0, 0, 936, 937, 5, 102, 0, 0, 937, 94, 1, 0, 0, 0, 938, 939, 5, 99, 0, 0, 939, 940, 5, 111, 0, 0, 940, 941, 5, 110, 0, 0, 941, 942, 5, 116, 0, 0, 942, 943, 5, 97, 0, 0, 943, 944, 5, 105, 0, 0, 944, 945, 5, 110, 0, 0, 945, 946, 5, 101, 0, 0, 946, 947, 5, 114, 0, 0, 947, 948, 5, 80, 0, 0, 948, 949, 5, 111, 0, 0, 949, 950, 5, 114, 0, 0, 950, 951, 5, 116, 0, 0, 951, 952, 5, 97, 0, 0, 952, 953, 5, 108, 0, 0, 953, 96, 1, 0, 0, 0, 954, 955, 5, 112, 0, 0, 955, 956, 5, 114, 0, 0, 956, 957, 5, 111, 0, 0, 957, 958, 5, 120, 0, 0, 958, 959, 5, 121, 0, 0, 959, 960, 5, 84, 0, 0, 960, 961, 5, 121, 0, 0, 961, 962, 5, 112, 0, 0, 962, 963, 5, 101, 0, 0, 963, 98, 1, 0, 0, 0, 964, 965, 5, 114, 0, 0, 965, 966, 5, 101, 0, 0, 966, 967, 5, 109, 0, 0, 967, 968, 5, 111, 0, 0, 968, 969, 5, 116, 0, 0, 969, 970, 5, 101, 0, 0, 970, 971, 5, 71, 0, 0, 971, 972, 5, 108, 0, 0, 972, 973, 5, 111, 0, 0, 973, 974, 5, 98, 0, 0, 974, 975, 5, 97, 0, 0, 975, 976, 5, 108, 0, 0, 976, 977, 5, 73, 0, 0, 977, 978, 5, 68, 0, 0, 978, 979, 5, 83, 0, 0, 979, 980, 5, 116, 0, 0, 980, 981, 5, 114, 0, 0, 981, 982, 5, 105, 0, 0, 982, 983, 5, 110, 0, 0, 983, 984, 5, 103, 0, 0, 984, 100, 1, 0, 0, 0, 985, 986, 5, 114, 0, 0, 986, 987, 5, 101, 0, 0, 987, 988, 5, 109, 0, 0, 988, 989, 5, 111, 0, 0, 989, 990, 5, 116, 0, 0, 990, 991, 5, 101, 0, 0, 991, 992, 5, 73, 0, 0, 992, 993, 5, 110, 0, 0, 993, 994, 5, 102, 0, 0, 994, 995, 5, 111, 0, 0, 995, 102, 1, 0, 0, 0, 996, 997, 5, 102, 0, 0, 997, 998, 5, 105, 0, 0, 998, 999, 5, 108, 0, 0, 999, 1000, 5, 101, 0, 0, 1000, 1001, 5, 69, 0, 0, 1001, 1002, 5, 110, 0, 0, 1002, 1003, 5, 99, 0, 0, 1003, 1004, 5, 111, 0, 0, 1004, 1005, 5, 100, 0, 0, 1005, 1006, 5, 105, 0, 0, 1006, 1007, 5, 110, 0, 0, 1007, 1008, 5, 103, 0, 0, 1008, 104, 1, 0, 0, 0, 1009, 1010, 5, 99, 0, 0, 1010, 1011, 5, 111, 0, 0, 1011, 1012, 5, 109, 0, 0, 1012, 1013, 5, 109, 0, 0, 1013, 1014, 5, 101, 0, 0, 1014, 1015, 5, 110, 0, 0, 1015, 1016, 5, 116, 0, 0, 1016, 1017, 5, 115, 0, 0, 1017, 106, 1, 0, 0, 0, 1018, 1019, 5, 101, 0, 0, 1019, 1020, 5, 120, 0, 0, 1020, 1021, 5, 112, 0, 0, 1021, 1022, 5, 108, 0, 0, 1022, 1023, 5, 105, 0, 0, 1023, 1024, 5, 99, 0, 0, 1024, 1025, 5, 105, 0, 0, 1025, 1026, 5, 116, 0, 0, 1026, 1027, 5, 70, 0, 0, 1027, 1028, 5, 105, 0, 0, 1028, 1029, 5, 108, 0, 0, 1029, 1030, 5, 101, 0, 0, 1030, 1031, 5, 84, 0, 0, 1031, 1032, 5, 121, 0, 0, 1032, 1033, 5, 112, 0, 0, 1033, 1034, 5, 101, 0, 0, 1034, 108, 1, 0, 0, 0, 1035, 1036, 5, 108, 0, 0, 1036, 1037, 5, 97, 0, 0, 1037, 1038, 5, 115, 0, 0, 1038, 1039, 5, 116, 0, 0, 1039, 1040, 5, 75, 0, 0, 1040, 1041, 5, 110, 0, 0, 1041, 1042, 5, 111, 0, 0, 1042, 1043, 5, 119, 0, 0, 1043, 1044, 5, 110, 0, 0, 1044, 1045, 5, 70, 0, 0, 1045, 1046, 5, 105, 0, 0, 1046, 1047, 5, 108, 0, 0, 1047, 1048, 5, 101, 0, 0, 1048, 1049, 5, 84, 0, 0, 1049, 1050, 5, 121, 0, 0, 1050, 1051, 5, 112, 0, 0, 1051, 1052, 5, 101, 0, 0, 1052, 110, 1, 0, 0, 0, 1053, 1054, 5, 105, 0, 0, 1054, 1055, 5, 110, 0, 0, 1055, 1056, 5, 99, 0, 0, 1056, 1057, 5, 108, 0, 0, 1057, 1058, 5, 117, 0, 0, 1058, 1059, 5, 100, 0, 0, 1059, 1060, 5, 101, 0, 0, 1060, 1061, 5, 73, 0, 0, 1061, 1062, 5, 110, 0, 0, 1062, 1063, 5, 73, 0, 0, 1063, 1064, 5, 110, 0, 0, 1064, 1065, 5, 100, 0, 0, 1065, 1066, 5, 101, 0, 0, 1066, 1067, 5, 120, 0, 0, 1067, 112, 1, 0, 0, 0, 1068, 1069, 5, 105, 0, 0, 1069, 1070, 5, 110, 0, 0, 1070, 1071, 5, 100, 0, 0, 1071, 1072, 5, 101, 0, 0, 1072, 1073, 5, 110, 0, 0, 1073, 1074, 5, 116, 0, 0, 1074, 1075, 5, 87, 0, 0, 1075, 1076, 5, 105, 0, 0, 1076, 1077, 5, 100, 0, 0, 1077, 1078, 5, 116, 0, 0, 1078, 1079, 5, 104, 0, 0, 1079, 114, 1, 0, 0, 0, 1080, 1081, 5, 116, 0, 0, 1081, 1082, 5, 97, 0, 0, 1082, 1083, 5, 98, 0, 0, 1083, 1084, 5, 87, 0, 0, 1084, 1085, 5, 105, 0, 0, 1085, 1086, 5, 100, 0, 0, 1086, 1087, 5, 116, 0, 0, 1087, 1088, 5, 104, 0, 0, 1088, 116, 1, 0, 0, 0, 1089, 1090, 5, 117, 0, 0, 1090, 1091, 5, 115, 0, 0, 1091, 1092, 5, 101, 0, 0, 1092, 1093, 5, 115, 0, 0, 1093, 1094, 5, 84, 0, 0, 1094, 1095, 5, 97, 0, 0, 1095, 1096, 5, 98, 0, 0, 1096, 1097, 5, 115, 0, 0, 1097, 118, 1, 0, 0, 0, 1098, 1099, 5, 119, 0, 0, 1099, 1100, 5, 114, 0, 0, 1100, 1101, 5, 97, 0, 0, 1101, 1102, 5, 112, 0, 0, 1102, 1103, 5, 115, 0, 0, 1103, 1104, 5, 76, 0, 0, 1104, 1105, 5, 105, 0, 0, 1105, 1106, 5, 110, 0, 0, 1106, 1107, 5, 101, 0, 0, 1107, 1108, 5, 115, 0, 0, 1108, 120, 1, 0, 0, 0, 1109, 1110, 5, 112, 0, 0, 1110, 1111, 5, 108, 0, 0, 1111, 1112, 5, 97, 0, 0, 1112, 1113, 5, 116, 0, 0, 1113, 1114, 5, 102, 0, 0, 1114, 1115, 5, 111, 0, 0, 1115, 1116, 5, 114, 0, 0, 1116, 1117, 5, 109, 0, 0, 1117, 1118, 5, 70, 0, 0, 1118, 1119, 5, 105, 0, 0, 1119, 1120, 5, 108, 0, 0, 1120, 1121, 5, 116, 0, 0, 1121, 1122, 5, 101, 0, 0, 1122, 1123, 5, 114, 0, 0, 1123, 122, 1, 0, 0, 0, 1124, 1125, 5, 112, 0, 0, 1125, 1126, 5, 108, 0, 0, 1126, 1127, 5, 97, 0, 0, 1127, 1128, 5, 116, 0, 0, 1128, 1129, 5, 102, 0, 0, 1129, 1130, 5, 111, 0, 0, 1130, 1131, 5, 114, 0, 0, 1131, 1132, 5, 109, 0, 0, 1132, 1133, 5, 70, 0, 0, 1133, 1134, 5, 105, 0, 0, 1134, 1135, 5, 108, 0, 0, 1135, 1136, 5, 116, 0, 0, 1136, 1137, 5, 101, 0, 0, 1137, 1138, 5, 114, 0, 0, 1138, 1139, 5, 115, 0, 0, 1139, 124, 1, 0, 0, 0, 1140, 1141, 5, 99, 0, 0, 1141, 1142, 5, 104, 0, 0, 1142, 1143, 5, 105, 0, 0, 1143, 1144, 5, 108, 0, 0, 1144, 1145, 5, 100, 0, 0, 1145, 1146, 5, 114, 0, 0, 1146, 1147, 5, 101, 0, 0, 1147, 1148, 5, 110, 0, 0, 1148, 126, 1, 0, 0, 0, 1149, 1150, 5, 112, 0, 0, 1150, 1151, 5, 114, 0, 0, 1151, 1152, 5, 111, 0, 0, 1152, 1153, 5, 100, 0, 0, 1153, 1154, 5, 117, 0, 0, 1154, 1155, 5, 99, 0, 0, 1155, 1156, 5, 116, 0, 0, 1156, 1157, 5, 73, 0, 0, 1157, 1158, 5, 110, 0, 0, 1158, 1159, 5, 115, 0, 0, 1159, 1160, 5, 116, 0, 0, 1160, 1161, 5, 97, 0, 0, 1161, 1162, 5, 108, 0, 0, 1162, 1163, 5, 108, 0, 0, 1163, 1164, 5, 80, 0, 0, 1164, 1165, 5, 97, 0, 0, 1165, 1166, 5, 116, 0, 0, 1166, 1167, 5, 104, 0, 0, 1167, 128, 1, 0, 0, 0, 1168, 1169, 5, 114, 0, 0, 1169, 1170, 5, 101, 0, 0, 1170, 1171, 5, 112, 0, 0, 1171, 1172, 5, 111, 0, 0, 1172, 1173, 5, 115, 0, 0, 1173, 1174, 5, 105, 0, 0, 1174, 1175, 5, 116, 0, 0, 1175, 1176, 5, 111, 0, 0, 1176, 1177, 5, 114, 0, 0, 1177, 1178, 5, 121, 0, 0, 1178, 1179, 5, 85, 0, 0, 1179, 1180, 5, 82, 0, 0, 1180, 1181, 5, 76, 0, 0, 1181, 130, 1, 0, 0, 0, 1182, 1183, 5, 114, 0, 0, 1183, 1184, 5, 101, 0, 0, 1184, 1185, 5, 113, 0, 0, 1185, 1186, 5, 117, 0, 0, 1186, 1187, 5, 105, 0, 0, 1187, 1188, 5, 114, 0, 0, 1188, 1189, 5, 101, 0, 0, 1189, 1190, 5, 109, 0, 0, 1190, 1191, 5, 101, 0, 0, 1191, 1192, 5, 110, 0, 0, 1192, 1193, 5, 116, 0, 0, 1193, 132, 1, 0, 0, 0, 1194, 1195, 5, 112, 0, 0, 1195, 1196, 5, 97, 0, 0, 1196, 1197, 5, 99, 0, 0, 1197, 1198, 5, 107, 0, 0, 1198, 1199, 5, 97, 0, 0, 1199, 1200, 5, 103, 0, 0, 1200, 1201, 5, 101, 0, 0, 1201, 134, 1, 0, 0, 0, 1202, 1203, 5, 112, 0, 0, 1203, 1204, 5, 97, 0, 0, 1204, 1205, 5, 99, 0, 0, 1205, 1206, 5, 107, 0, 0, 1206, 1207, 5, 97, 0, 0, 1207, 1208, 5, 103, 0, 0, 1208, 1209, 5, 101, 0, 0, 1209, 1210, 5, 80, 0, 0, 1210, 1211, 5, 114, 0, 0, 1211, 1212, 5, 111, 0, 0, 1212, 1213, 5, 100, 0, 0, 1213, 1214, 5, 117, 0, 0, 1214, 1215, 5, 99, 0, 0, 1215, 1216, 5, 116, 0, 0, 1216, 1217, 5, 68, 0, 0, 1217, 1218, 5, 101, 0, 0, 1218, 1219, 5, 112, 0, 0, 1219, 1220, 5, 101, 0, 0, 1220, 1221, 5, 110, 0, 0, 1221, 1222, 5, 100, 0, 0, 1222, 1223, 5, 101, 0, 0, 1223, 1224, 5, 110, 0, 0, 1224, 1225, 5, 99, 0, 0, 1225, 1226, 5, 105, 0, 0, 1226, 1227, 5, 101, 0, 0, 1227, 1228, 5, 115, 0, 0, 1228, 136, 1, 0, 0, 0, 1229, 1230, 5, 110, 0, 0, 1230, 1231, 5, 97, 0, 0, 1231, 1232, 5, 109, 0, 0, 1232, 1233, 5, 101, 0, 0, 1233, 138, 1, 0, 0, 0, 1234, 1235, 5, 112, 0, 0, 1235, 1236, 5, 97, 0, 0, 1236, 1237, 5, 116, 0, 0, 1237, 1238, 5, 104, 0, 0, 1238, 140, 1, 0, 0, 0, 1239, 1240, 5, 115, 0, 0, 1240, 1241, 5, 111, 0, 0, 1241, 1242, 5, 117, 0, 0, 1242, 1243, 5, 114, 0, 0, 1243, 1244, 5, 99, 0, 0, 1244, 1245, 5, 101, 0, 0, 1245, 1246, 5, 84, 0, 0, 1246, 1247, 5, 114, 0, 0, 1247, 1248, 5, 101, 0, 0, 1248, 1249, 5, 101, 0, 0, 1249, 142, 1, 0, 0, 0, 1250, 1251, 5, 98, 0, 0, 1251, 1252, 5, 117, 0, 0, 1252, 1253, 5, 105, 0, 0, 1253, 1254, 5, 108, 0, 0, 1254, 1255, 5, 100, 0, 0, 1255, 1256, 5, 65, 0, 0, 1256, 1257, 5, 99, 0, 0, 1257, 1258, 5, 116, 0, 0, 1258, 1259, 5, 105, 0, 0, 1259, 1260, 5, 111, 0, 0, 1260, 1261, 5, 110, 0, 0, 1261, 1262, 5, 77, 0, 0, 1262, 1263, 5, 97, 0, 0, 1263, 1264, 5, 115, 0, 0, 1264, 1265, 5, 107, 0, 0, 1265, 144, 1, 0, 0, 0, 1266, 1267, 5, 102, 0, 0, 1267, 1268, 5, 105, 0, 0, 1268, 1269, 5, 108, 0, 0, 1269, 1270, 5, 101, 0, 0, 1270, 1271, 5, 115, 0, 0, 1271, 146, 1, 0, 0, 0, 1272, 1273, 5, 114, 0, 0, 1273, 1274, 5, 117, 0, 0, 1274, 1275, 5, 110, 0, 0, 1275, 1276, 5, 79, 0, 0, 1276, 1277, 5, 110, 0, 0, 1277, 1278, 5, 108, 0, 0, 1278, 1279, 5, 121, 0, 0, 1279, 1280, 5, 70, 0, 0, 1280, 1281, 5, 111, 0, 0, 1281, 1282, 5, 114, 0, 0, 1282, 1283, 5, 68, 0, 0, 1283, 1284, 5, 101, 0, 0, 1284, 1285, 5, 112, 0, 0, 1285, 1286, 5, 108, 0, 0, 1286, 1287, 5, 111, 0, 0, 1287, 1288, 5, 121, 0, 0, 1288, 1289, 5, 109, 0, 0, 1289, 1290, 5, 101, 0, 0, 1290, 1291, 5, 110, 0, 0, 1291, 1292, 5, 116, 0, 0, 1292, 1293, 5, 80, 0, 0, 1293, 1294, 5, 111, 0, 0, 1294, 1295, 5, 115, 0, 0, 1295, 1296, 5, 116, 0, 0, 1296, 1297, 5, 112, 0, 0, 1297, 1298, 5, 114, 0, 0, 1298, 1299, 5, 111, 0, 0, 1299, 1300, 5, 99, 0, 0, 1300, 1301, 5, 101, 0, 0, 1301, 1302, 5, 115, 0, 0, 1302, 1303, 5, 115, 0, 0, 1303, 1304, 5, 105, 0, 0, 1304, 1305, 5, 110, 0, 0, 1305, 1306, 5, 103, 0, 0, 1306, 148, 1, 0, 0, 0, 1307, 1308, 5, 98, 0, 0, 1308, 1309, 5, 117, 0, 0, 1309, 1310, 5, 105, 0, 0, 1310, 1311, 5, 108, 0, 0, 1311, 1312, 5, 100, 0, 0, 1312, 1313, 5, 67, 0, 0, 1313, 1314, 5, 111, 0, 0, 1314, 1315, 5, 110, 0, 0, 1315, 1316, 5, 102, 0, 0, 1316, 1317, 5, 105, 0, 0, 1317, 1318, 5, 103, 0, 0, 1318, 1319, 5, 117, 0, 0, 1319, 1320, 5, 114, 0, 0, 1320, 1321, 5, 97, 0, 0, 1321, 1322, 5, 116, 0, 0, 1322, 1323, 5, 105, 0, 0, 1323, 1324, 5, 111, 0, 0, 1324, 1325, 5, 110, 0, 0, 1325, 1326, 5, 76, 0, 0, 1326, 1327, 5, 105, 0, 0, 1327, 1328, 5, 115, 0, 0, 1328, 1329, 5, 116, 0, 0, 1329, 150, 1, 0, 0, 0, 1330, 1331, 5, 98, 0, 0, 1331, 1332, 5, 117, 0, 0, 1332, 1333, 5, 105, 0, 0, 1333, 1334, 5, 108, 0, 0, 1334, 1335, 5, 100, 0, 0, 1335, 1336, 5, 80, 0, 0, 1336, 1337, 5, 104, 0, 0, 1337, 1338, 5, 97, 0, 0, 1338, 1339, 5, 115, 0, 0, 1339, 1340, 5, 101, 0, 0, 1340, 1341, 5, 115, 0, 0, 1341, 152, 1, 0, 0, 0, 1342, 1343, 5, 98, 0, 0, 1343, 1344, 5, 117, 0, 0, 1344, 1345, 5, 105, 0, 0, 1345, 1346, 5, 108, 0, 0, 1346, 1347, 5, 100, 0, 0, 1347, 1348, 5, 82, 0, 0, 1348, 1349, 5, 117, 0, 0, 1349, 1350, 5, 108, 0, 0, 1350, 1351, 5, 101, 0, 0, 1351, 1352, 5, 115, 0, 0, 1352, 154, 1, 0, 0, 0, 1353, 1354, 5, 98, 0, 0, 1354, 1355, 5, 117, 0, 0, 1355, 1356, 5, 105, 0, 0, 1356, 1357, 5, 108, 0, 0, 1357, 1358, 5, 100, 0, 0, 1358, 1359, 5, 65, 0, 0, 1359, 1360, 5, 114, 0, 0, 1360, 1361, 5, 103, 0, 0, 1361, 1362, 5, 117, 0, 0, 1362, 1363, 5, 109, 0, 0, 1363, 1364, 5, 101, 0, 0, 1364, 1365, 5, 110, 0, 0, 1365, 1366, 5, 116, 0, 0, 1366, 1367, 5, 115, 0, 0, 1367, 1368, 5, 83, 0, 0, 1368, 1369, 5, 116, 0, 0, 1369, 1370, 5, 114, 0, 0, 1370, 1371, 5, 105, 0, 0, 1371, 1372, 5, 110, 0, 0, 1372, 1373, 5, 103, 0, 0, 1373, 156, 1, 0, 0, 0, 1374, 1375, 5, 98, 0, 0, 1375, 1376, 5, 117, 0, 0, 1376, 1377, 5, 105, 0, 0, 1377, 1378, 5, 108, 0, 0, 1378, 1379, 5, 100, 0, 0, 1379, 1380, 5, 84, 0, 0, 1380, 1381, 5, 111, 0, 0, 1381, 1382, 5, 111, 0, 0, 1382, 1383, 5, 108, 0, 0, 1383, 1384, 5, 80, 0, 0, 1384, 1385, 5, 97, 0, 0, 1385, 1386, 5, 116, 0, 0, 1386, 1387, 5, 104, 0, 0, 1387, 158, 1, 0, 0, 0, 1388, 1389, 5, 98, 0, 0, 1389, 1390, 5, 117, 0, 0, 1390, 1391, 5, 105, 0, 0, 1391, 1392, 5, 108, 0, 0, 1392, 1393, 5, 100, 0, 0, 1393, 1394, 5, 87, 0, 0, 1394, 1395, 5, 111, 0, 0, 1395, 1396, 5, 114, 0, 0, 1396, 1397, 5, 107, 0, 0, 1397, 1398, 5, 105, 0, 0, 1398, 1399, 5, 110, 0, 0, 1399, 1400, 5, 103, 0, 0, 1400, 1401, 5, 68, 0, 0, 1401, 1402, 5, 105, 0, 0, 1402, 1403, 5, 114, 0, 0, 1403, 1404, 5, 101, 0, 0, 1404, 1405, 5, 99, 0, 0, 1405, 1406, 5, 116, 0, 0, 1406, 1407, 5, 111, 0, 0, 1407, 1408, 5, 114, 0, 0, 1408, 1409, 5, 121, 0, 0, 1409, 160, 1, 0, 0, 0, 1410, 1411, 5, 112, 0, 0, 1411, 1412, 5, 97, 0, 0, 1412, 1413, 5, 115, 0, 0, 1413, 1414, 5, 115, 0, 0, 1414, 1415, 5, 66, 0, 0, 1415, 1416, 5, 117, 0, 0, 1416, 1417, 5, 105, 0, 0, 1417, 1418, 5, 108, 0, 0, 1418, 1419, 5, 100, 0, 0, 1419, 1420, 5, 83, 0, 0, 1420, 1421, 5, 101, 0, 0, 1421, 1422, 5, 116, 0, 0, 1422, 1423, 5, 116, 0, 0, 1423, 1424, 5, 105, 0, 0, 1424, 1425, 5, 110, 0, 0, 1425, 1426, 5, 103, 0, 0, 1426, 1427, 5, 115, 0, 0, 1427, 1428, 5, 73, 0, 0, 1428, 1429, 5, 110, 0, 0, 1429, 1430, 5, 69, 0, 0, 1430, 1431, 5, 110, 0, 0, 1431, 1432, 5, 118, 0, 0, 1432, 1433, 5, 105, 0, 0, 1433, 1434, 5, 114, 0, 0, 1434, 1435, 5, 111, 0, 0, 1435, 1436, 5, 110, 0, 0, 1436, 1437, 5, 109, 0, 0, 1437, 1438, 5, 101, 0, 0, 1438, 1439, 5, 110, 0, 0, 1439, 1440, 5, 116, 0, 0, 1440, 162, 1, 0, 0, 0, 1441, 1442, 5, 100, 0, 0, 1442, 1443, 5, 101, 0, 0, 1443, 1444, 5, 112, 0, 0, 1444, 1445, 5, 101, 0, 0, 1445, 1446, 5, 110, 0, 0, 1446, 1447, 5, 100, 0, 0, 1447, 1448, 5, 101, 0, 0, 1448, 1449, 5, 110, 0, 0, 1449, 1450, 5, 99, 0, 0, 1450, 1451, 5, 105, 0, 0, 1451, 1452, 5, 101, 0, 0, 1452, 1453, 5, 115, 0, 0, 1453, 164, 1, 0, 0, 0, 1454, 1455, 5, 112, 0, 0, 1455, 1456, 5, 114, 0, 0, 1456, 1457, 5, 111, 0, 0, 1457, 1458, 5, 100, 0, 0, 1458, 1459, 5, 117, 0, 0, 1459, 1460, 5, 99, 0, 0, 1460, 1461, 5, 116, 0, 0, 1461, 1462, 5, 78, 0, 0, 1462, 1463, 5, 97, 0, 0, 1463, 1464, 5, 109, 0, 0, 1464, 1465, 5, 101, 0, 0, 1465, 166, 1, 0, 0, 0, 1466, 1467, 5, 112, 0, 0, 1467, 1468, 5, 114, 0, 0, 1468, 1469, 5, 111, 0, 0, 1469, 1470, 5, 100, 0, 0, 1470, 1471, 5, 117, 0, 0, 1471, 1472, 5, 99, 0, 0, 1472, 1473, 5, 116, 0, 0, 1473, 1474, 5, 82, 0, 0, 1474, 1475, 5, 101, 0, 0, 1475, 1476, 5, 102, 0, 0, 1476, 1477, 5, 101, 0, 0, 1477, 1478, 5, 114, 0, 0, 1478, 1479, 5, 101, 0, 0, 1479, 1480, 5, 110, 0, 0, 1480, 1481, 5, 99, 0, 0, 1481, 1482, 5, 101, 0, 0, 1482, 168, 1, 0, 0, 0, 1483, 1484, 5, 112, 0, 0, 1484, 1485, 5, 114, 0, 0, 1485, 1486, 5, 111, 0, 0, 1486, 1487, 5, 100, 0, 0, 1487, 1488, 5, 117, 0, 0, 1488, 1489, 5, 99, 0, 0, 1489, 1490, 5, 116, 0, 0, 1490, 1491, 5, 84, 0, 0, 1491, 1492, 5, 121, 0, 0, 1492, 1493, 5, 112, 0, 0, 1493, 1494, 5, 101, 0, 0, 1494, 170, 1, 0, 0, 0, 1495, 1496, 5, 108, 0, 0, 1496, 1497, 5, 105, 0, 0, 1497, 1498, 5, 110, 0, 0, 1498, 1499, 5, 101, 0, 0, 1499, 1500, 5, 69, 0, 0, 1500, 1501, 5, 110, 0, 0, 1501, 1502, 5, 100, 0, 0, 1502, 1503, 5, 105, 0, 0, 1503, 1504, 5, 110, 0, 0, 1504, 1505, 5, 103, 0, 0, 1505, 172, 1, 0, 0, 0, 1506, 1507, 5, 120, 0, 0, 1507, 1508, 5, 99, 0, 0, 1508, 1509, 5, 76, 0, 0, 1509, 1510, 5, 97, 0, 0, 1510, 1511, 5, 110, 0, 0, 1511, 1512, 5, 103, 0, 0, 1512, 1513, 5, 117, 0, 0, 1513, 1514, 5, 97, 0, 0, 1514, 1515, 5, 103, 0, 0, 1515, 1516, 5, 101, 0, 0, 1516, 1517, 5, 83, 0, 0, 1517, 1518, 5, 112, 0, 0, 1518, 1519, 5, 101, 0, 0, 1519, 1520, 5, 99, 0, 0, 1520, 1521, 5, 105, 0, 0, 1521, 1522, 5, 102, 0, 0, 1522, 1523, 5, 105, 0, 0, 1523, 1524, 5, 99, 0, 0, 1524, 1525, 5, 97, 0, 0, 1525, 1526, 5, 116, 0, 0, 1526, 1527, 5, 105, 0, 0, 1527, 1528, 5, 111, 0, 0, 1528, 1529, 5, 110, 0, 0, 1529, 1530, 5, 73, 0, 0, 1530, 1531, 5, 100, 0, 0, 1531, 1532, 5, 101, 0, 0, 1532, 1533, 5, 110, 0, 0, 1533, 1534, 5, 116, 0, 0, 1534, 1535, 5, 105, 0, 0, 1535, 1536, 5, 102, 0, 0, 1536, 1537, 5, 105, 0, 0, 1537, 1538, 5, 101, 0, 0, 1538, 1539, 5, 114, 0, 0, 1539, 174, 1, 0, 0, 0, 1540, 1541, 5, 112, 0, 0, 1541, 1542, 5, 108, 0, 0, 1542, 1543, 5, 105, 0, 0, 1543, 1544, 5, 115, 0, 0, 1544, 1545, 5, 116, 0, 0, 1545, 1546, 5, 83, 0, 0, 1546, 1547, 5, 116, 0, 0, 1547, 1548, 5, 114, 0, 0, 1548, 1549, 5, 117, 0, 0, 1549, 1550, 5, 99, 0, 0, 1550, 1551, 5, 116, 0, 0, 1551, 1552, 5, 117, 0, 0, 1552, 1553, 5, 114, 0, 0, 1553, 1554, 5, 101, 0, 0, 1554, 1555, 5, 68, 0, 0, 1555, 1556, 5, 101, 0, 0, 1556, 1557, 5, 102, 0, 0, 1557, 1558, 5, 105, 0, 0, 1558, 1559, 5, 110, 0, 0, 1559, 1560, 5, 105, 0, 0, 1560, 1561, 5, 116, 0, 0, 1561, 1562, 5, 105, 0, 0, 1562, 1563, 5, 111, 0, 0, 1563, 1564, 5, 110, 0, 0, 1564, 1565, 5, 73, 0, 0, 1565, 1566, 5, 100, 0, 0, 1566, 1567, 5, 101, 0, 0, 1567, 1568, 5, 110, 0, 0, 1568, 1569, 5, 116, 0, 0, 1569, 1570, 5, 105, 0, 0, 1570, 1571, 5, 102, 0, 0, 1571, 1572, 5, 105, 0, 0, 1572, 1573, 5, 101, 0, 0, 1573, 1574, 5, 114, 0, 0, 1574, 176, 1, 0, 0, 0, 1575, 1576, 5, 114, 0, 0, 1576, 1577, 5, 101, 0, 0, 1577, 1578, 5, 102, 0, 0, 1578, 1579, 5, 84, 0, 0, 1579, 1580, 5, 121, 0, 0, 1580, 1581, 5, 112, 0, 0, 1581, 1582, 5, 101, 0, 0, 1582, 178, 1, 0, 0, 0, 1583, 1584, 5, 99, 0, 0, 1584, 1585, 5, 111, 0, 0, 1585, 1586, 5, 109, 0, 0, 1586, 1587, 5, 112, 0, 0, 1587, 1588, 5, 105, 0, 0, 1588, 1589, 5, 108, 0, 0, 1589, 1590, 5, 101, 0, 0, 1590, 1591, 5, 114, 0, 0, 1591, 1592, 5, 83, 0, 0, 1592, 1593, 5, 112, 0, 0, 1593, 1594, 5, 101, 0, 0, 1594, 1595, 5, 99, 0, 0, 1595, 180, 1, 0, 0, 0, 1596, 1597, 5, 102, 0, 0, 1597, 1598, 5, 105, 0, 0, 1598, 1599, 5, 108, 0, 0, 1599, 1600, 5, 101, 0, 0, 1600, 1601, 5, 80, 0, 0, 1601, 1602, 5, 97, 0, 0, 1602, 1603, 5, 116, 0, 0, 1603, 1604, 5, 116, 0, 0, 1604, 1605, 5, 101, 0, 0, 1605, 1606, 5, 114, 0, 0, 1606, 1607, 5, 110, 0, 0, 1607, 1608, 5, 115, 0, 0, 1608, 182, 1, 0, 0, 0, 1609, 1610, 5, 105, 0, 0, 1610, 1611, 5, 110, 0, 0, 1611, 1612, 5, 112, 0, 0, 1612, 1613, 5, 117, 0, 0, 1613, 1614, 5, 116, 0, 0, 1614, 1615, 5, 70, 0, 0, 1615, 1616, 5, 105, 0, 0, 1616, 1617, 5, 108, 0, 0, 1617, 1618, 5, 101, 0, 0, 1618, 1619, 5, 115, 0, 0, 1619, 184, 1, 0, 0, 0, 1620, 1621, 5, 105, 0, 0, 1621, 1622, 5, 115, 0, 0, 1622, 1623, 5, 69, 0, 0, 1623, 1624, 5, 100, 0, 0, 1624, 1625, 5, 105, 0, 0, 1625, 1626, 5, 116, 0, 0, 1626, 1627, 5, 97, 0, 0, 1627, 1628, 5, 98, 0, 0, 1628, 1629, 5, 108, 0, 0, 1629, 1630, 5, 101, 0, 0, 1630, 186, 1, 0, 0, 0, 1631, 1632, 5, 111, 0, 0, 1632, 1633, 5, 117, 0, 0, 1633, 1634, 5, 116, 0, 0, 1634, 1635, 5, 112, 0, 0, 1635, 1636, 5, 117, 0, 0, 1636, 1637, 5, 116, 0, 0, 1637, 1638, 5, 70, 0, 0, 1638, 1639, 5, 105, 0, 0, 1639, 1640, 5, 108, 0, 0, 1640, 1641, 5, 101, 0, 0, 1641, 1642, 5, 115, 0, 0, 1642, 188, 1, 0, 0, 0, 1643, 1644, 5, 114, 0, 0, 1644, 1645, 5, 117, 0, 0, 1645, 1646, 5, 110, 0, 0, 1646, 1647, 5, 79, 0, 0, 1647, 1648, 5, 110, 0, 0, 1648, 1649, 5, 99, 0, 0, 1649, 1650, 5, 101, 0, 0, 1650, 1651, 5, 80, 0, 0, 1651, 1652, 5, 101, 0, 0, 1652, 1653, 5, 114, 0, 0, 1653, 1654, 5, 65, 0, 0, 1654, 1655, 5, 114, 0, 0, 1655, 1656, 5, 99, 0, 0, 1656, 1657, 5, 104, 0, 0, 1657, 1658, 5, 105, 0, 0, 1658, 1659, 5, 116, 0, 0, 1659, 1660, 5, 101, 0, 0, 1660, 1661, 5, 99, 0, 0, 1661, 1662, 5, 116, 0, 0, 1662, 1663, 5, 117, 0, 0, 1663, 1664, 5, 114, 0, 0, 1664, 1665, 5, 101, 0, 0, 1665, 190, 1, 0, 0, 0, 1666, 1667, 5, 115, 0, 0, 1667, 1668, 5, 99, 0, 0, 1668, 1669, 5, 114, 0, 0, 1669, 1670, 5, 105, 0, 0, 1670, 1671, 5, 112, 0, 0, 1671, 1672, 5, 116, 0, 0, 1672, 192, 1, 0, 0, 0, 1673, 1674, 5, 97, 0, 0, 1674, 1675, 5, 116, 0, 0, 1675, 1676, 5, 116, 0, 0, 1676, 1677, 5, 114, 0, 0, 1677, 1678, 5, 105, 0, 0, 1678, 1679, 5, 98, 0, 0, 1679, 1680, 5, 117, 0, 0, 1680, 1681, 5, 116, 0, 0, 1681, 1682, 5, 101, 0, 0, 1682, 1683, 5, 115, 0, 0, 1683, 194, 1, 0, 0, 0, 1684, 1685, 5, 76, 0, 0, 1685, 1686, 5, 97, 0, 0, 1686, 1687, 5, 115, 0, 0, 1687, 1688, 5, 116, 0, 0, 1688, 1689, 5, 83, 0, 0, 1689, 1690, 5, 119, 0, 0, 1690, 1691, 5, 105, 0, 0, 1691, 1692, 5, 102, 0, 0, 1692, 1693, 5, 116, 0, 0, 1693, 1694, 5, 77, 0, 0, 1694, 1695, 5, 105, 0, 0, 1695, 1696, 5, 103, 0, 0, 1696, 1697, 5, 114, 0, 0, 1697, 1698, 5, 97, 0, 0, 1698, 1699, 5, 116, 0, 0, 1699, 1700, 5, 105, 0, 0, 1700, 1701, 5, 111, 0, 0, 1701, 1702, 5, 110, 0, 0, 1702, 196, 1, 0, 0, 0, 1703, 1704, 5, 68, 0, 0, 1704, 1705, 5, 101, 0, 0, 1705, 1706, 5, 102, 0, 0, 1706, 1707, 5, 97, 0, 0, 1707, 1708, 5, 117, 0, 0, 1708, 1709, 5, 108, 0, 0, 1709, 1710, 5, 116, 0, 0, 1710, 1711, 5, 66, 0, 0, 1711, 1712, 5, 117, 0, 0, 1712, 1713, 5, 105, 0, 0, 1713, 1714, 5, 108, 0, 0, 1714, 1715, 5, 100, 0, 0, 1715, 1716, 5, 83, 0, 0, 1716, 1717, 5, 121, 0, 0, 1717, 1718, 5, 115, 0, 0, 1718, 1719, 5, 116, 0, 0, 1719, 1720, 5, 101, 0, 0, 1720, 1721, 5, 109, 0, 0, 1721, 1722, 5, 84, 0, 0, 1722, 1723, 5, 121, 0, 0, 1723, 1724, 5, 112, 0, 0, 1724, 1725, 5, 101, 0, 0, 1725, 1726, 5, 70, 0, 0, 1726, 1727, 5, 111, 0, 0, 1727, 1728, 5, 114, 0, 0, 1728, 1729, 5, 87, 0, 0, 1729, 1730, 5, 111, 0, 0, 1730, 1731, 5, 114, 0, 0, 1731, 1732, 5, 107, 0, 0, 1732, 1733, 5, 115, 0, 0, 1733, 1734, 5, 112, 0, 0, 1734, 1735, 5, 97, 0, 0, 1735, 1736, 5, 99, 0, 0, 1736, 1737, 5, 101, 0, 0, 1737, 198, 1, 0, 0, 0, 1738, 1739, 5, 76, 0, 0, 1739, 1740, 5, 97, 0, 0, 1740, 1741, 5, 115, 0, 0, 1741, 1742, 5, 116, 0, 0, 1742, 1743, 5, 83, 0, 0, 1743, 1744, 5, 119, 0, 0, 1744, 1745, 5, 105, 0, 0, 1745, 1746, 5, 102, 0, 0, 1746, 1747, 5, 116, 0, 0, 1747, 1748, 5, 85, 0, 0, 1748, 1749, 5, 112, 0, 0, 1749, 1750, 5, 100, 0, 0, 1750, 1751, 5, 97, 0, 0, 1751, 1752, 5, 116, 0, 0, 1752, 1753, 5, 101, 0, 0, 1753, 1754, 5, 67, 0, 0, 1754, 1755, 5, 104, 0, 0, 1755, 1756, 5, 101, 0, 0, 1756, 1757, 5, 99, 0, 0, 1757, 1758, 5, 107, 0, 0, 1758, 200, 1, 0, 0, 0, 1759, 1760, 5, 66, 0, 0, 1760, 1761, 5, 117, 0, 0, 1761, 1762, 5, 105, 0, 0, 1762, 1763, 5, 108, 0, 0, 1763, 1764, 5, 100, 0, 0, 1764, 1765, 5, 73, 0, 0, 1765, 1766, 5, 110, 0, 0, 1766, 1767, 5, 100, 0, 0, 1767, 1768, 5, 101, 0, 0, 1768, 1769, 5, 112, 0, 0, 1769, 1770, 5, 101, 0, 0, 1770, 1771, 5, 110, 0, 0, 1771, 1772, 5, 100, 0, 0, 1772, 1773, 5, 101, 0, 0, 1773, 1774, 5, 110, 0, 0, 1774, 1775, 5, 116, 0, 0, 1775, 1776, 5, 84, 0, 0, 1776, 1777, 5, 97, 0, 0, 1777, 1778, 5, 114, 0, 0, 1778, 1779, 5, 103, 0, 0, 1779, 1780, 5, 101, 0, 0, 1780, 1781, 5, 116, 0, 0, 1781, 1782, 5, 115, 0, 0, 1782, 1783, 5, 73, 0, 0, 1783, 1784, 5, 110, 0, 0, 1784, 1785, 5, 80, 0, 0, 1785, 1786, 5, 97, 0, 0, 1786, 1787, 5, 114, 0, 0, 1787, 1788, 5, 97, 0, 0, 1788, 1789, 5, 108, 0, 0, 1789, 1790, 5, 108, 0, 0, 1790, 1791, 5, 101, 0, 0, 1791, 1792, 5, 108, 0, 0, 1792, 202, 1, 0, 0, 0, 1793, 1794, 5, 76, 0, 0, 1794, 1795, 5, 97, 0, 0, 1795, 1796, 5, 115, 0, 0, 1796, 1797, 5, 116, 0, 0, 1797, 1798, 5, 84, 0, 0, 1798, 1799, 5, 101, 0, 0, 1799, 1800, 5, 115, 0, 0, 1800, 1801, 5, 116, 0, 0, 1801, 1802, 5, 105, 0, 0, 1802, 1803, 5, 110, 0, 0, 1803, 1804, 5, 103, 0, 0, 1804, 1805, 5, 85, 0, 0, 1805, 1806, 5, 112, 0, 0, 1806, 1807, 5, 103, 0, 0, 1807, 1808, 5, 114, 0, 0, 1808, 1809, 5, 97, 0, 0, 1809, 1810, 5, 100, 0, 0, 1810, 1811, 5, 101, 0, 0, 1811, 1812, 5, 67, 0, 0, 1812, 1813, 5, 104, 0, 0, 1813, 1814, 5, 101, 0, 0, 1814, 1815, 5, 99, 0, 0, 1815, 1816, 5, 107, 0, 0, 1816, 204, 1, 0, 0, 0, 1817, 1818, 5, 76, 0, 0, 1818, 1819, 5, 97, 0, 0, 1819, 1820, 5, 115, 0, 0, 1820, 1821, 5, 116, 0, 0, 1821, 1822, 5, 85, 0, 0, 1822, 1823, 5, 112, 0, 0, 1823, 1824, 5, 103, 0, 0, 1824, 1825, 5, 114, 0, 0, 1825, 1826, 5, 97, 0, 0, 1826, 1827, 5, 100, 0, 0, 1827, 1828, 5, 101, 0, 0, 1828, 1829, 5, 67, 0, 0, 1829, 1830, 5, 104, 0, 0, 1830, 1831, 5, 101, 0, 0, 1831, 1832, 5, 99, 0, 0, 1832, 1833, 5, 107, 0, 0, 1833, 206, 1, 0, 0, 0, 1834, 1835, 5, 79, 0, 0, 1835, 1836, 5, 82, 0, 0, 1836, 1837, 5, 71, 0, 0, 1837, 1838, 5, 65, 0, 0, 1838, 1839, 5, 78, 0, 0, 1839, 1840, 5, 73, 0, 0, 1840, 1841, 5, 90, 0, 0, 1841, 1842, 5, 65, 0, 0, 1842, 1843, 5, 84, 0, 0, 1843, 1844, 5, 73, 0, 0, 1844, 1845, 5, 79, 0, 0, 1845, 1846, 5, 78, 0, 0, 1846, 1847, 5, 78, 0, 0, 1847, 1848, 5, 65, 0, 0, 1848, 1849, 5, 77, 0, 0, 1849, 1850, 5, 69, 0, 0, 1850, 208, 1, 0, 0, 0, 1851, 1852, 5, 84, 0, 0, 1852, 1853, 5, 97, 0, 0, 1853, 1854, 5, 114, 0, 0, 1854, 1855, 5, 103, 0, 0, 1855, 1856, 5, 101, 0, 0, 1856, 1857, 5, 116, 0, 0, 1857, 1858, 5, 65, 0, 0, 1858, 1859, 5, 116, 0, 0, 1859, 1860, 5, 116, 0, 0, 1860, 1861, 5, 114, 0, 0, 1861, 1862, 5, 105, 0, 0, 1862, 1863, 5, 98, 0, 0, 1863, 1864, 5, 117, 0, 0, 1864, 1865, 5, 116, 0, 0, 1865, 1866, 5, 101, 0, 0, 1866, 1867, 5, 115, 0, 0, 1867, 210, 1, 0, 0, 0, 1868, 1869, 5, 67, 0, 0, 1869, 1870, 5, 114, 0, 0, 1870, 1871, 5, 101, 0, 0, 1871, 1872, 5, 97, 0, 0, 1872, 1873, 5, 116, 0, 0, 1873, 1874, 5, 101, 0, 0, 1874, 1875, 5, 100, 0, 0, 1875, 1876, 5, 79, 0, 0, 1876, 1877, 5, 110, 0, 0, 1877, 1878, 5, 84, 0, 0, 1878, 1879, 5, 111, 0, 0, 1879, 1880, 5, 111, 0, 0, 1880, 1881, 5, 108, 0, 0, 1881, 1882, 5, 115, 0, 0, 1882, 1883, 5, 86, 0, 0, 1883, 1884, 5, 101, 0, 0, 1884, 1885, 5, 114, 0, 0, 1885, 1886, 5, 115, 0, 0, 1886, 1887, 5, 105, 0, 0, 1887, 1888, 5, 111, 0, 0, 1888, 1889, 5, 110, 0, 0, 1889, 212, 1, 0, 0, 0, 1890, 1891, 5, 84, 0, 0, 1891, 1892, 5, 101, 0, 0, 1892, 1893, 5, 115, 0, 0, 1893, 1894, 5, 116, 0, 0, 1894, 1895, 5, 84, 0, 0, 1895, 1896, 5, 97, 0, 0, 1896, 1897, 5, 114, 0, 0, 1897, 1898, 5, 103, 0, 0, 1898, 1899, 5, 101, 0, 0, 1899, 1900, 5, 116, 0, 0, 1900, 1901, 5, 73, 0, 0, 1901, 1902, 5, 68, 0, 0, 1902, 214, 1, 0, 0, 0, 1903, 1904, 5, 68, 0, 0, 1904, 1905, 5, 101, 0, 0, 1905, 1906, 5, 118, 0, 0, 1906, 1907, 5, 101, 0, 0, 1907, 1908, 5, 108, 0, 0, 1908, 1909, 5, 111, 0, 0, 1909, 1910, 5, 112, 0, 0, 1910, 1911, 5, 109, 0, 0, 1911, 1912, 5, 101, 0, 0, 1912, 1913, 5, 110, 0, 0, 1913, 1914, 5, 116, 0, 0, 1914, 1915, 5, 84, 0, 0, 1915, 1916, 5, 101, 0, 0, 1916, 1917, 5, 97, 0, 0, 1917, 1918, 5, 109, 0, 0, 1918, 216, 1, 0, 0, 0, 1919, 1920, 5, 68, 0, 0, 1920, 1921, 5, 101, 0, 0, 1921, 1922, 5, 118, 0, 0, 1922, 1923, 5, 101, 0, 0, 1923, 1924, 5, 108, 0, 0, 1924, 1925, 5, 111, 0, 0, 1925, 1926, 5, 112, 0, 0, 1926, 1927, 5, 109, 0, 0, 1927, 1928, 5, 101, 0, 0, 1928, 1929, 5, 110, 0, 0, 1929, 1930, 5, 116, 0, 0, 1930, 1931, 5, 84, 0, 0, 1931, 1932, 5, 101, 0, 0, 1932, 1933, 5, 97, 0, 0, 1933, 1934, 5, 109, 0, 0, 1934, 1935, 5, 78, 0, 0, 1935, 1936, 5, 97, 0, 0, 1936, 1937, 5, 109, 0, 0, 1937, 1938, 5, 101, 0, 0, 1938, 218, 1, 0, 0, 0, 1939, 1940, 5, 80, 0, 0, 1940, 1941, 5, 114, 0, 0, 1941, 1942, 5, 111, 0, 0, 1942, 1943, 5, 118, 0, 0, 1943, 1944, 5, 105, 0, 0, 1944, 1945, 5, 115, 0, 0, 1945, 1946, 5, 105, 0, 0, 1946, 1947, 5, 111, 0, 0, 1947, 1948, 5, 110, 0, 0, 1948, 1949, 5, 105, 0, 0, 1949, 1950, 5, 110, 0, 0, 1950, 1951, 5, 103, 0, 0, 1951, 1952, 5, 83, 0, 0, 1952, 1953, 5, 116, 0, 0, 1953, 1954, 5, 121, 0, 0, 1954, 1955, 5, 108, 0, 0, 1955, 1956, 5, 101, 0, 0, 1956, 220, 1, 0, 0, 0, 1957, 1958, 5, 99, 0, 0, 1958, 1959, 5, 111, 0, 0, 1959, 1960, 5, 109, 0, 0, 1960, 1961, 5, 112, 0, 0, 1961, 1962, 5, 97, 0, 0, 1962, 1963, 5, 116, 0, 0, 1963, 1964, 5, 105, 0, 0, 1964, 1965, 5, 98, 0, 0, 1965, 1966, 5, 105, 0, 0, 1966, 1967, 5, 108, 0, 0, 1967, 1968, 5, 105, 0, 0, 1968, 1969, 5, 116, 0, 0, 1969, 1970, 5, 121, 0, 0, 1970, 1971, 5, 86, 0, 0, 1971, 1972, 5, 101, 0, 0, 1972, 1973, 5, 114, 0, 0, 1973, 1974, 5, 115, 0, 0, 1974, 1975, 5, 105, 0, 0, 1975, 1976, 5, 111, 0, 0, 1976, 1977, 5, 110, 0, 0, 1977, 222, 1, 0, 0, 0, 1978, 1979, 5, 100, 0, 0, 1979, 1980, 5, 101, 0, 0, 1980, 1981, 5, 118, 0, 0, 1981, 1982, 5, 101, 0, 0, 1982, 1983, 5, 108, 0, 0, 1983, 1984, 5, 111, 0, 0, 1984, 1985, 5, 112, 0, 0, 1985, 1986, 5, 109, 0, 0, 1986, 1987, 5, 101, 0, 0, 1987, 1988, 5, 110, 0, 0, 1988, 1989, 5, 116, 0, 0, 1989, 1990, 5, 82, 0, 0, 1990, 1991, 5, 101, 0, 0, 1991, 1992, 5, 103, 0, 0, 1992, 1993, 5, 105, 0, 0, 1993, 1994, 5, 111, 0, 0, 1994, 1995, 5, 110, 0, 0, 1995, 224, 1, 0, 0, 0, 1996, 1997, 5, 104, 0, 0, 1997, 1998, 5, 97, 0, 0, 1998, 1999, 5, 115, 0, 0, 1999, 2000, 5, 83, 0, 0, 2000, 2001, 5, 99, 0, 0, 2001, 2002, 5, 97, 0, 0, 2002, 2003, 5, 110, 0, 0, 2003, 2004, 5, 110, 0, 0, 2004, 2005, 5, 101, 0, 0, 2005, 2006, 5, 100, 0, 0, 2006, 2007, 5, 70, 0, 0, 2007, 2008, 5, 111, 0, 0, 2008, 2009, 5, 114, 0, 0, 2009, 2010, 5, 69, 0, 0, 2010, 2011, 5, 110, 0, 0, 2011, 2012, 5, 99, 0, 0, 2012, 2013, 5, 111, 0, 0, 2013, 2014, 5, 100, 0, 0, 2014, 2015, 5, 105, 0, 0, 2015, 2016, 5, 110, 0, 0, 2016, 2017, 5, 103, 0, 0, 2017, 2018, 5, 115, 0, 0, 2018, 226, 1, 0, 0, 0, 2019, 2020, 5, 107, 0, 0, 2020, 2021, 5, 110, 0, 0, 2021, 2022, 5, 111, 0, 0, 2022, 2023, 5, 119, 0, 0, 2023, 2024, 5, 110, 0, 0, 2024, 2025, 5, 82, 0, 0, 2025, 2026, 5, 101, 0, 0, 2026, 2027, 5, 103, 0, 0, 2027, 2028, 5, 105, 0, 0, 2028, 2029, 5, 111, 0, 0, 2029, 2030, 5, 110, 0, 0, 2030, 2031, 5, 115, 0, 0, 2031, 228, 1, 0, 0, 0, 2032, 2033, 5, 109, 0, 0, 2033, 2034, 5, 97, 0, 0, 2034, 2035, 5, 105, 0, 0, 2035, 2036, 5, 110, 0, 0, 2036, 2037, 5, 71, 0, 0, 2037, 2038, 5, 114, 0, 0, 2038, 2039, 5, 111, 0, 0, 2039, 2040, 5, 117, 0, 0, 2040, 2041, 5, 112, 0, 0, 2041, 230, 1, 0, 0, 0, 2042, 2043, 5, 112, 0, 0, 2043, 2044, 5, 114, 0, 0, 2044, 2045, 5, 111, 0, 0, 2045, 2046, 5, 100, 0, 0, 2046, 2047, 5, 117, 0, 0, 2047, 2048, 5, 99, 0, 0, 2048, 2049, 5, 116, 0, 0, 2049, 2050, 5, 82, 0, 0, 2050, 2051, 5, 101, 0, 0, 2051, 2052, 5, 102, 0, 0, 2052, 2053, 5, 71, 0, 0, 2053, 2054, 5, 114, 0, 0, 2054, 2055, 5, 111, 0, 0, 2055, 2056, 5, 117, 0, 0, 2056, 2057, 5, 112, 0, 0, 2057, 232, 1, 0, 0, 0, 2058, 2059, 5, 112, 0, 0, 2059, 2060, 5, 97, 0, 0, 2060, 2061, 5, 99, 0, 0, 2061, 2062, 5, 107, 0, 0, 2062, 2063, 5, 97, 0, 0, 2063, 2064, 5, 103, 0, 0, 2064, 2065, 5, 101, 0, 0, 2065, 2066, 5, 82, 0, 0, 2066, 2067, 5, 101, 0, 0, 2067, 2068, 5, 102, 0, 0, 2068, 2069, 5, 101, 0, 0, 2069, 2070, 5, 114, 0, 0, 2070, 2071, 5, 101, 0, 0, 2071, 2072, 5, 110, 0, 0, 2072, 2073, 5, 99, 0, 0, 2073, 2074, 5, 101, 0, 0, 2074, 2075, 5, 115, 0, 0, 2075, 234, 1, 0, 0, 0, 2076, 2077, 5, 112, 0, 0, 2077, 2078, 5, 114, 0, 0, 2078, 2079, 5, 111, 0, 0, 2079, 2080, 5, 106, 0, 0, 2080, 2081, 5, 101, 0, 0, 2081, 2082, 5, 99, 0, 0, 2082, 2083, 5, 116, 0, 0, 2083, 2084, 5, 68, 0, 0, 2084, 2085, 5, 105, 0, 0, 2085, 2086, 5, 114, 0, 0, 2086, 2087, 5, 80, 0, 0, 2087, 2088, 5, 97, 0, 0, 2088, 2089, 5, 116, 0, 0, 2089, 2090, 5, 104, 0, 0, 2090, 236, 1, 0, 0, 0, 2091, 2092, 5, 112, 0, 0, 2092, 2093, 5, 114, 0, 0, 2093, 2094, 5, 111, 0, 0, 2094, 2095, 5, 106, 0, 0, 2095, 2096, 5, 101, 0, 0, 2096, 2097, 5, 99, 0, 0, 2097, 2098, 5, 116, 0, 0, 2098, 2099, 5, 82, 0, 0, 2099, 2100, 5, 101, 0, 0, 2100, 2101, 5, 102, 0, 0, 2101, 2102, 5, 101, 0, 0, 2102, 2103, 5, 114, 0, 0, 2103, 2104, 5, 101, 0, 0, 2104, 2105, 5, 110, 0, 0, 2105, 2106, 5, 99, 0, 0, 2106, 2107, 5, 101, 0, 0, 2107, 2108, 5, 115, 0, 0, 2108, 238, 1, 0, 0, 0, 2109, 2110, 5, 112, 0, 0, 2110, 2111, 5, 114, 0, 0, 2111, 2112, 5, 111, 0, 0, 2112, 2113, 5, 106, 0, 0, 2113, 2114, 5, 101, 0, 0, 2114, 2115, 5, 99, 0, 0, 2115, 2116, 5, 116, 0, 0, 2116, 2117, 5, 82, 0, 0, 2117, 2118, 5, 111, 0, 0, 2118, 2119, 5, 111, 0, 0, 2119, 2120, 5, 116, 0, 0, 2120, 240, 1, 0, 0, 0, 2121, 2122, 5, 116, 0, 0, 2122, 2123, 5, 97, 0, 0, 2123, 2124, 5, 114, 0, 0, 2124, 2125, 5, 103, 0, 0, 2125, 2126, 5, 101, 0, 0, 2126, 2127, 5, 116, 0, 0, 2127, 2128, 5, 115, 0, 0, 2128, 242, 1, 0, 0, 0, 2129, 2130, 5, 105, 0, 0, 2130, 2131, 5, 110, 0, 0, 2131, 2132, 5, 112, 0, 0, 2132, 2133, 5, 117, 0, 0, 2133, 2134, 5, 116, 0, 0, 2134, 2135, 5, 70, 0, 0, 2135, 2136, 5, 105, 0, 0, 2136, 2137, 5, 108, 0, 0, 2137, 2138, 5, 101, 0, 0, 2138, 2139, 5, 76, 0, 0, 2139, 2140, 5, 105, 0, 0, 2140, 2141, 5, 115, 0, 0, 2141, 2142, 5, 116, 0, 0, 2142, 2143, 5, 80, 0, 0, 2143, 2144, 5, 97, 0, 0, 2144, 2145, 5, 116, 0, 0, 2145, 2146, 5, 104, 0, 0, 2146, 2147, 5, 115, 0, 0, 2147, 244, 1, 0, 0, 0, 2148, 2149, 5, 105, 0, 0, 2149, 2150, 5, 110, 0, 0, 2150, 2151, 5, 112, 0, 0, 2151, 2152, 5, 117, 0, 0, 2152, 2153, 5, 116, 0, 0, 2153, 2154, 5, 80, 0, 0, 2154, 2155, 5, 97, 0, 0, 2155, 2156, 5, 116, 0, 0, 2156, 2157, 5, 104, 0, 0, 2157, 2158, 5, 115, 0, 0, 2158, 246, 1, 0, 0, 0, 2159, 2160, 5, 111, 0, 0, 2160, 2161, 5, 117, 0, 0, 2161, 2162, 5, 116, 0, 0, 2162, 2163, 5, 112, 0, 0, 2163, 2164, 5, 117, 0, 0, 2164, 2165, 5, 116, 0, 0, 2165, 2166, 5, 70, 0, 0, 2166, 2167, 5, 105, 0, 0, 2167, 2168, 5, 108, 0, 0, 2168, 2169, 5, 101, 0, 0, 2169, 2170, 5, 76, 0, 0, 2170, 2171, 5, 105, 0, 0, 2171, 2172, 5, 115, 0, 0, 2172, 2173, 5, 116, 0, 0, 2173, 2174, 5, 80, 0, 0, 2174, 2175, 5, 97, 0, 0, 2175, 2176, 5, 116, 0, 0, 2176, 2177, 5, 104, 0, 0, 2177, 2178, 5, 115, 0, 0, 2178, 248, 1, 0, 0, 0, 2179, 2180, 5, 111, 0, 0, 2180, 2181, 5, 117, 0, 0, 2181, 2182, 5, 116, 0, 0, 2182, 2183, 5, 112, 0, 0, 2183, 2184, 5, 117, 0, 0, 2184, 2185, 5, 116, 0, 0, 2185, 2186, 5, 80, 0, 0, 2186, 2187, 5, 97, 0, 0, 2187, 2188, 5, 116, 0, 0, 2188, 2189, 5, 104, 0, 0, 2189, 2190, 5, 115, 0, 0, 2190, 250, 1, 0, 0, 0, 2191, 2192, 5, 115, 0, 0, 2192, 2193, 5, 104, 0, 0, 2193, 2194, 5, 101, 0, 0, 2194, 2195, 5, 108, 0, 0, 2195, 2196, 5, 108, 0, 0, 2196, 2197, 5, 80, 0, 0, 2197, 2198, 5, 97, 0, 0, 2198, 2199, 5, 116, 0, 0, 2199, 2200, 5, 104, 0, 0, 2200, 252, 1, 0, 0, 0, 2201, 2202, 5, 115, 0, 0, 2202, 2203, 5, 104, 0, 0, 2203, 2204, 5, 101, 0, 0, 2204, 2205, 5, 108, 0, 0, 2205, 2206, 5, 108, 0, 0, 2206, 254, 1, 0, 0, 0, 2207, 2208, 5, 115, 0, 0, 2208, 2209, 5, 104, 0, 0, 2209, 2210, 5, 101, 0, 0, 2210, 2211, 5, 108, 0, 0, 2211, 2212, 5, 108, 0, 0, 2212, 2213, 5, 83, 0, 0, 2213, 2214, 5, 99, 0, 0, 2214, 2215, 5, 114, 0, 0, 2215, 2216, 5, 105, 0, 0, 2216, 2217, 5, 112, 0, 0, 2217, 2218, 5, 116, 0, 0, 2218, 256, 1, 0, 0, 0, 2219, 2220, 5, 115, 0, 0, 2220, 2221, 5, 104, 0, 0, 2221, 2222, 5, 111, 0, 0, 2222, 2223, 5, 119, 0, 0, 2223, 2224, 5, 69, 0, 0, 2224, 2225, 5, 110, 0, 0, 2225, 2226, 5, 118, 0, 0, 2226, 2227, 5, 86, 0, 0, 2227, 2228, 5, 97, 0, 0, 2228, 2229, 5, 114, 0, 0, 2229, 2230, 5, 115, 0, 0, 2230, 2231, 5, 73, 0, 0, 2231, 2232, 5, 110, 0, 0, 2232, 2233, 5, 76, 0, 0, 2233, 2234, 5, 111, 0, 0, 2234, 2235, 5, 103, 0, 0, 2235, 258, 1, 0, 0, 0, 2236, 2237, 5, 116, 0, 0, 2237, 2238, 5, 97, 0, 0, 2238, 2239, 5, 114, 0, 0, 2239, 2240, 5, 103, 0, 0, 2240, 2241, 5, 101, 0, 0, 2241, 2242, 5, 116, 0, 0, 2242, 260, 1, 0, 0, 0, 2243, 2244, 5, 116, 0, 0, 2244, 2245, 5, 97, 0, 0, 2245, 2246, 5, 114, 0, 0, 2246, 2247, 5, 103, 0, 0, 2247, 2248, 5, 101, 0, 0, 2248, 2249, 5, 116, 0, 0, 2249, 2250, 5, 80, 0, 0, 2250, 2251, 5, 114, 0, 0, 2251, 2252, 5, 111, 0, 0, 2252, 2253, 5, 120, 0, 0, 2253, 2254, 5, 121, 0, 0, 2254, 262, 1, 0, 0, 0, 2255, 2256, 5, 102, 0, 0, 2256, 2257, 5, 105, 0, 0, 2257, 2258, 5, 108, 0, 0, 2258, 2259, 5, 101, 0, 0, 2259, 2260, 5, 84, 0, 0, 2260, 2261, 5, 121, 0, 0, 2261, 2262, 5, 112, 0, 0, 2262, 2263, 5, 101, 0, 0, 2263, 264, 1, 0, 0, 0, 2264, 2265, 5, 114, 0, 0, 2265, 2266, 5, 101, 0, 0, 2266, 2267, 5, 109, 0, 0, 2267, 2268, 5, 111, 0, 0, 2268, 2269, 5, 116, 0, 0, 2269, 2270, 5, 101, 0, 0, 2270, 2271, 5, 82, 0, 0, 2271, 2272, 5, 101, 0, 0, 2272, 2273, 5, 102, 0, 0, 2273, 266, 1, 0, 0, 0, 2274, 2275, 5, 98, 0, 0, 2275, 2276, 5, 97, 0, 0, 2276, 2277, 5, 115, 0, 0, 2277, 2278, 5, 101, 0, 0, 2278, 2279, 5, 67, 0, 0, 2279, 2280, 5, 111, 0, 0, 2280, 2281, 5, 110, 0, 0, 2281, 2282, 5, 102, 0, 0, 2282, 2283, 5, 105, 0, 0, 2283, 2284, 5, 103, 0, 0, 2284, 2285, 5, 117, 0, 0, 2285, 2286, 5, 114, 0, 0, 2286, 2287, 5, 97, 0, 0, 2287, 2288, 5, 116, 0, 0, 2288, 2289, 5, 105, 0, 0, 2289, 2290, 5, 111, 0, 0, 2290, 2291, 5, 110, 0, 0, 2291, 2292, 5, 82, 0, 0, 2292, 2293, 5, 101, 0, 0, 2293, 2294, 5, 102, 0, 0, 2294, 2295, 5, 101, 0, 0, 2295, 2296, 5, 114, 0, 0, 2296, 2297, 5, 101, 0, 0, 2297, 2298, 5, 110, 0, 0, 2298, 2299, 5, 99, 0, 0, 2299, 2300, 5, 101, 0, 0, 2300, 268, 1, 0, 0, 0, 2301, 2302, 5, 98, 0, 0, 2302, 2303, 5, 117, 0, 0, 2303, 2304, 5, 105, 0, 0, 2304, 2305, 5, 108, 0, 0, 2305, 2306, 5, 100, 0, 0, 2306, 2307, 5, 83, 0, 0, 2307, 2308, 5, 101, 0, 0, 2308, 2309, 5, 116, 0, 0, 2309, 2310, 5, 116, 0, 0, 2310, 2311, 5, 105, 0, 0, 2311, 2312, 5, 110, 0, 0, 2312, 2313, 5, 103, 0, 0, 2313, 2314, 5, 115, 0, 0, 2314, 270, 1, 0, 0, 0, 2315, 2316, 5, 98, 0, 0, 2316, 2317, 5, 117, 0, 0, 2317, 2318, 5, 105, 0, 0, 2318, 2319, 5, 108, 0, 0, 2319, 2320, 5, 100, 0, 0, 2320, 2321, 5, 83, 0, 0, 2321, 2322, 5, 116, 0, 0, 2322, 2323, 5, 121, 0, 0, 2323, 2324, 5, 108, 0, 0, 2324, 2325, 5, 101, 0, 0, 2325, 2326, 5, 115, 0, 0, 2326, 272, 1, 0, 0, 0, 2327, 2328, 5, 100, 0, 0, 2328, 2329, 5, 115, 0, 0, 2329, 2330, 5, 116, 0, 0, 2330, 2331, 5, 80, 0, 0, 2331, 2332, 5, 97, 0, 0, 2332, 2333, 5, 116, 0, 0, 2333, 2334, 5, 104, 0, 0, 2334, 274, 1, 0, 0, 0, 2335, 2336, 5, 100, 0, 0, 2336, 2337, 5, 115, 0, 0, 2337, 2338, 5, 116, 0, 0, 2338, 2339, 5, 83, 0, 0, 2339, 2340, 5, 117, 0, 0, 2340, 2341, 5, 98, 0, 0, 2341, 2342, 5, 102, 0, 0, 2342, 2343, 5, 111, 0, 0, 2343, 2344, 5, 108, 0, 0, 2344, 2345, 5, 100, 0, 0, 2345, 2346, 5, 101, 0, 0, 2346, 2347, 5, 114, 0, 0, 2347, 2348, 5, 83, 0, 0, 2348, 2349, 5, 112, 0, 0, 2349, 2350, 5, 101, 0, 0, 2350, 2351, 5, 99, 0, 0, 2351, 276, 1, 0, 0, 0, 2352, 2353, 5, 80, 0, 0, 2353, 2354, 5, 114, 0, 0, 2354, 2355, 5, 111, 0, 0, 2355, 2356, 5, 100, 0, 0, 2356, 2357, 5, 117, 0, 0, 2357, 2358, 5, 99, 0, 0, 2358, 2359, 5, 116, 0, 0, 2359, 2360, 5, 71, 0, 0, 2360, 2361, 5, 114, 0, 0, 2361, 2362, 5, 111, 0, 0, 2362, 2363, 5, 117, 0, 0, 2363, 2364, 5, 112, 0, 0, 2364, 278, 1, 0, 0, 0, 2365, 2366, 5, 80, 0, 0, 2366, 2367, 5, 114, 0, 0, 2367, 2368, 5, 111, 0, 0, 2368, 2369, 5, 106, 0, 0, 2369, 2370, 5, 101, 0, 0, 2370, 2371, 5, 99, 0, 0, 2371, 2372, 5, 116, 0, 0, 2372, 2373, 5, 82, 0, 0, 2373, 2374, 5, 101, 0, 0, 2374, 2375, 5, 102, 0, 0, 2375, 280, 1, 0, 0, 0, 2376, 2377, 5, 98, 0, 0, 2377, 2378, 5, 117, 0, 0, 2378, 2379, 5, 105, 0, 0, 2379, 2380, 5, 108, 0, 0, 2380, 2381, 5, 100, 0, 0, 2381, 2382, 5, 67, 0, 0, 2382, 2383, 5, 111, 0, 0, 2383, 2384, 5, 110, 0, 0, 2384, 2385, 5, 102, 0, 0, 2385, 2386, 5, 105, 0, 0, 2386, 2387, 5, 103, 0, 0, 2387, 2388, 5, 117, 0, 0, 2388, 2389, 5, 114, 0, 0, 2389, 2390, 5, 97, 0, 0, 2390, 2391, 5, 116, 0, 0, 2391, 2392, 5, 105, 0, 0, 2392, 2393, 5, 111, 0, 0, 2393, 2394, 5, 110, 0, 0, 2394, 2395, 5, 115, 0, 0, 2395, 282, 1, 0, 0, 0, 2396, 2397, 5, 100, 0, 0, 2397, 2398, 5, 101, 0, 0, 2398, 2399, 5, 102, 0, 0, 2399, 2400, 5, 97, 0, 0, 2400, 2401, 5, 117, 0, 0, 2401, 2402, 5, 108, 0, 0, 2402, 2403, 5, 116, 0, 0, 2403, 2404, 5, 67, 0, 0, 2404, 2405, 5, 111, 0, 0, 2405, 2406, 5, 110, 0, 0, 2406, 2407, 5, 102, 0, 0, 2407, 2408, 5, 105, 0, 0, 2408, 2409, 5, 103, 0, 0, 2409, 2410, 5, 117, 0, 0, 2410, 2411, 5, 114, 0, 0, 2411, 2412, 5, 97, 0, 0, 2412, 2413, 5, 116, 0, 0, 2413, 2414, 5, 105, 0, 0, 2414, 2415, 5, 111, 0, 0, 2415, 2416, 5, 110, 0, 0, 2416, 2417, 5, 73, 0, 0, 2417, 2418, 5, 115, 0, 0, 2418, 2419, 5, 86, 0, 0, 2419, 2420, 5, 105, 0, 0, 2420, 2421, 5, 115, 0, 0, 2421, 2422, 5, 105, 0, 0, 2422, 2423, 5, 98, 0, 0, 2423, 2424, 5, 108, 0, 0, 2424, 2425, 5, 101, 0, 0, 2425, 284, 1, 0, 0, 0, 2426, 2427, 5, 100, 0, 0, 2427, 2428, 5, 101, 0, 0, 2428, 2429, 5, 102, 0, 0, 2429, 2430, 5, 97, 0, 0, 2430, 2431, 5, 117, 0, 0, 2431, 2432, 5, 108, 0, 0, 2432, 2433, 5, 116, 0, 0, 2433, 2434, 5, 67, 0, 0, 2434, 2435, 5, 111, 0, 0, 2435, 2436, 5, 110, 0, 0, 2436, 2437, 5, 102, 0, 0, 2437, 2438, 5, 105, 0, 0, 2438, 2439, 5, 103, 0, 0, 2439, 2440, 5, 117, 0, 0, 2440, 2441, 5, 114, 0, 0, 2441, 2442, 5, 97, 0, 0, 2442, 2443, 5, 116, 0, 0, 2443, 2444, 5, 105, 0, 0, 2444, 2445, 5, 111, 0, 0, 2445, 2446, 5, 110, 0, 0, 2446, 2447, 5, 78, 0, 0, 2447, 2448, 5, 97, 0, 0, 2448, 2449, 5, 109, 0, 0, 2449, 2450, 5, 101, 0, 0, 2450, 286, 1, 0, 0, 0, 2451, 2452, 5, 115, 0, 0, 2452, 2453, 5, 101, 0, 0, 2453, 2454, 5, 116, 0, 0, 2454, 2455, 5, 116, 0, 0, 2455, 2456, 5, 105, 0, 0, 2456, 2457, 5, 110, 0, 0, 2457, 2458, 5, 103, 0, 0, 2458, 2459, 5, 115, 0, 0, 2459, 288, 1, 0, 0, 0, 2460, 2461, 5, 83, 0, 0, 2461, 2462, 5, 121, 0, 0, 2462, 2463, 5, 115, 0, 0, 2463, 2464, 5, 116, 0, 0, 2464, 2465, 5, 101, 0, 0, 2465, 2466, 5, 109, 0, 0, 2466, 2467, 5, 67, 0, 0, 2467, 2468, 5, 97, 0, 0, 2468, 2469, 5, 112, 0, 0, 2469, 2470, 5, 97, 0, 0, 2470, 2471, 5, 98, 0, 0, 2471, 2472, 5, 105, 0, 0, 2472, 2473, 5, 108, 0, 0, 2473, 2474, 5, 105, 0, 0, 2474, 2475, 5, 116, 0, 0, 2475, 2476, 5, 105, 0, 0, 2476, 2477, 5, 101, 0, 0, 2477, 2478, 5, 115, 0, 0, 2478, 290, 1, 0, 0, 0, 2479, 2480, 5, 99, 0, 0, 2480, 2481, 5, 117, 0, 0, 2481, 2482, 5, 114, 0, 0, 2482, 2483, 5, 114, 0, 0, 2483, 2484, 5, 101, 0, 0, 2484, 2485, 5, 110, 0, 0, 2485, 2486, 5, 116, 0, 0, 2486, 2487, 5, 86, 0, 0, 2487, 2488, 5, 101, 0, 0, 2488, 2489, 5, 114, 0, 0, 2489, 2490, 5, 115, 0, 0, 2490, 2491, 5, 105, 0, 0, 2491, 2492, 5, 111, 0, 0, 2492, 2493, 5, 110, 0, 0, 2493, 292, 1, 0, 0, 0, 2494, 2495, 5, 118, 0, 0, 2495, 2496, 5, 101, 0, 0, 2496, 2497, 5, 114, 0, 0, 2497, 2498, 5, 115, 0, 0, 2498, 2499, 5, 105, 0, 0, 2499, 2500, 5, 111, 0, 0, 2500, 2501, 5, 110, 0, 0, 2501, 2502, 5, 71, 0, 0, 2502, 2503, 5, 114, 0, 0, 2503, 2504, 5, 111, 0, 0, 2504, 2505, 5, 117, 0, 0, 2505, 2506, 5, 112, 0, 0, 2506, 2507, 5, 84, 0, 0, 2507, 2508, 5, 121, 0, 0, 2508, 2509, 5, 112, 0, 0, 2509, 2510, 5, 101, 0, 0, 2510, 294, 1, 0, 0, 0, 2511, 2512, 5, 67, 0, 0, 2512, 2513, 5, 76, 0, 0, 2513, 2514, 5, 65, 0, 0, 2514, 2515, 5, 83, 0, 0, 2515, 2516, 5, 83, 0, 0, 2516, 2517, 5, 80, 0, 0, 2517, 2518, 5, 82, 0, 0, 2518, 2519, 5, 69, 0, 0, 2519, 2520, 5, 70, 0, 0, 2520, 2521, 5, 73, 0, 0, 2521, 2522, 5, 88, 0, 0, 2522, 296, 1, 0, 0, 0, 2523, 2524, 3, 309, 154, 0, 2524, 2525, 3, 309, 154, 0, 2525, 2526, 3, 309, 154, 0, 2526, 2527, 3, 309, 154, 0, 2527, 2528, 3, 309, 154, 0, 2528, 2529, 3, 309, 154, 0, 2529, 2530, 3, 309, 154, 0, 2530, 2531, 3, 309, 154, 0, 2531, 2532, 3, 309, 154, 0, 2532, 2533, 3, 309, 154, 0, 2533, 2534, 3, 309, 154, 0, 2534, 2535, 3, 309, 154, 0, 2535, 2536, 3, 309, 154, 0, 2536, 2537, 3, 309, 154, 0, 2537, 2538, 3, 309, 154, 0, 2538, 2539, 3, 309, 154, 0, 2539, 2540, 3, 309, 154, 0, 2540, 2541, 3, 309, 154, 0, 2541, 2542, 3, 309, 154, 0, 2542, 2543, 3, 309, 154, 0, 2543, 2544, 3, 309, 154, 0, 2544, 2545, 3, 309, 154, 0, 2545, 2546, 3, 309, 154, 0, 2546, 2548, 3, 309, 154, 0, 2547, 2549, 3, 309, 154, 0, 2548, 2547, 1, 0, 0, 0, 2548, 2549, 1, 0, 0, 0, 2549, 2551, 1, 0, 0, 0, 2550, 2552, 3, 309, 154, 0, 2551, 2550, 1, 0, 0, 0, 2551, 2552, 1, 0, 0, 0, 2552, 2554, 1, 0, 0, 0, 2553, 2555, 3, 309, 154, 0, 2554, 2553, 1, 0, 0, 0, 2554, 2555, 1, 0, 0, 0, 2555, 2557, 1, 0, 0, 0, 2556, 2558, 3, 309, 154, 0, 2557, 2556, 1, 0, 0, 0, 2557, 2558, 1, 0, 0, 0, 2558, 2560, 1, 0, 0, 0, 2559, 2561, 3, 309, 154, 0, 2560, 2559, 1, 0, 0, 0, 2560, 2561, 1, 0, 0, 0, 2561, 2563, 1, 0, 0, 0, 2562, 2564, 3, 309, 154, 0, 2563, 2562, 1, 0, 0, 0, 2563, 2564, 1, 0, 0, 0, 2564, 2566, 1, 0, 0, 0, 2565, 2567, 3, 309, 154, 0, 2566, 2565, 1, 0, 0, 0, 2566, 2567, 1, 0, 0, 0, 2567, 2569, 1, 0, 0, 0, 2568, 2570, 3, 309, 154, 0, 2569, 2568, 1, 0, 0, 0, 2569, 2570, 1, 0, 0, 0, 2570, 2635, 1, 0, 0, 0, 2571, 2572, 5, 70, 0, 0, 2572, 2573, 5, 82, 0, 0, 2573, 2577, 5, 95, 0, 0, 2574, 2575, 5, 71, 0, 0, 2575, 2577, 5, 95, 0, 0, 2576, 2571, 1, 0, 0, 0, 2576, 2574, 1, 0, 0, 0, 2577, 2579, 1, 0, 0, 0, 2578, 2580, 3, 309, 154, 0, 2579, 2578, 1, 0, 0, 0, 2580, 2581, 1, 0, 0, 0, 2581, 2579, 1, 0, 0, 0, 2581, 2582, 1, 0, 0, 0, 2582, 2635, 1, 0, 0, 0, 2583, 2584, 3, 307, 153, 0, 2584, 2585, 3, 307, 153, 0, 2585, 2586, 3, 307, 153, 0, 2586, 2587, 3, 307, 153, 0, 2587, 2588, 3, 307, 153, 0, 2588, 2589, 3, 307, 153, 0, 2589, 2590, 3, 307, 153, 0, 2590, 2591, 3, 307, 153, 0, 2591, 2592, 3, 307, 153, 0, 2592, 2593, 3, 307, 153, 0, 2593, 2594, 3, 307, 153, 0, 2594, 2595, 3, 307, 153, 0, 2595, 2596, 3, 307, 153, 0, 2596, 2597, 3, 307, 153, 0, 2597, 2598, 3, 307, 153, 0, 2598, 2599, 3, 307, 153, 0, 2599, 2600, 3, 307, 153, 0, 2600, 2601, 3, 307, 153, 0, 2601, 2602, 3, 307, 153, 0, 2602, 2603, 3, 307, 153, 0, 2603, 2604, 3, 307, 153, 0, 2604, 2605, 3, 307, 153, 0, 2605, 2606, 3, 307, 153, 0, 2606, 2607, 3, 307, 153, 0, 2607, 2635, 1, 0, 0, 0, 2608, 2609, 5, 79, 0, 0, 2609, 2610, 5, 66, 0, 0, 2610, 2611, 5, 74, 0, 0, 2611, 2612, 5, 95, 0, 0, 2612, 2613, 1, 0, 0, 0, 2613, 2635, 3, 25, 12, 0, 2614, 2616, 5, 34, 0, 0, 2615, 2617, 3, 301, 150, 0, 2616, 2615, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2616, 1, 0, 0, 0, 2618, 2619, 1, 0, 0, 0, 2619, 2628, 1, 0, 0, 0, 2620, 2621, 5, 58, 0, 0, 2621, 2622, 5, 58, 0, 0, 2622, 2624, 1, 0, 0, 0, 2623, 2625, 3, 301, 150, 0, 2624, 2623, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2624, 1, 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 2629, 1, 0, 0, 0, 2628, 2620, 1, 0, 0, 0, 2629, 2630, 1, 0, 0, 0, 2630, 2628, 1, 0, 0, 0, 2630, 2631, 1, 0, 0, 0, 2631, 2632, 1, 0, 0, 0, 2632, 2633, 5, 34, 0, 0, 2633, 2635, 1, 0, 0, 0, 2634, 2523, 1, 0, 0, 0, 2634, 2576, 1, 0, 0, 0, 2634, 2583, 1, 0, 0, 0, 2634, 2608, 1, 0, 0, 0, 2634, 2614, 1, 0, 0, 0, 2635, 298, 1, 0, 0, 0, 2636, 2638, 5, 34, 0, 0, 2637, 2639, 3, 311, 155, 0, 2638, 2637, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2638, 1, 0, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2643, 5, 34, 0, 0, 2643, 2647, 1, 0, 0, 0, 2644, 2645, 5, 34, 0, 0, 2645, 2647, 5, 34, 0, 0, 2646, 2636, 1, 0, 0, 0, 2646, 2644, 1, 0, 0, 0, 2647, 300, 1, 0, 0, 0, 2648, 2655, 3, 305, 152, 0, 2649, 2655, 3, 35, 17, 0, 2650, 2655, 3, 19, 9, 0, 2651, 2655, 3, 33, 16, 0, 2652, 2655, 3, 21, 10, 0, 2653, 2655, 3, 37, 18, 0, 2654, 2648, 1, 0, 0, 0, 2654, 2649, 1, 0, 0, 0, 2654, 2650, 1, 0, 0, 0, 2654, 2651, 1, 0, 0, 0, 2654, 2652, 1, 0, 0, 0, 2654, 2653, 1, 0, 0, 0, 2655, 2656, 1, 0, 0, 0, 2656, 2654, 1, 0, 0, 0, 2656, 2657, 1, 0, 0, 0, 2657, 302, 1, 0, 0, 0, 2658, 2659, 5, 36, 0, 0, 2659, 2661, 3, 301, 150, 0, 2660, 2658, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2660, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2665, 1, 0, 0, 0, 2664, 2666, 3, 33, 16, 0, 2665, 2664, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 304, 1, 0, 0, 0, 2667, 2668, 7, 1, 0, 0, 2668, 306, 1, 0, 0, 0, 2669, 2670, 7, 2, 0, 0, 2670, 308, 1, 0, 0, 0, 2671, 2672, 7, 3, 0, 0, 2672, 310, 1, 0, 0, 0, 2673, 2677, 8, 4, 0, 0, 2674, 2675, 5, 92, 0, 0, 2675, 2677, 5, 34, 0, 0, 2676, 2673, 1, 0, 0, 0, 2676, 2674, 1, 0, 0, 0, 2677, 312, 1, 0, 0, 0, 2678, 2680, 7, 5, 0, 0, 2679, 2678, 1, 0, 0, 0, 2680, 2681, 1, 0, 0, 0, 2681, 2679, 1, 0, 0, 0, 2681, 2682, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2684, 6, 156, 0, 0, 2684, 314, 1, 0, 0, 0, 2685, 2686, 5, 47, 0, 0, 2686, 2687, 5, 42, 0, 0, 2687, 2691, 1, 0, 0, 0, 2688, 2690, 9, 0, 0, 0, 2689, 2688, 1, 0, 0, 0, 2690, 2693, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2691, 2689, 1, 0, 0, 0, 2692, 2694, 1, 0, 0, 0, 2693, 2691, 1, 0, 0, 0, 2694, 2695, 5, 42, 0, 0, 2695, 2696, 5, 47, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2698, 6, 157, 0, 0, 2698, 316, 1, 0, 0, 0, 2699, 2700, 5, 47, 0, 0, 2700, 2701, 5, 47, 0, 0, 2701, 2705, 1, 0, 0, 0, 2702, 2704, 8, 6, 0, 0, 2703, 2702, 1, 0, 0, 0, 2704, 2707, 1, 0, 0, 0, 2705, 2703, 1, 0, 0, 0, 2705, 2706, 1, 0, 0, 0, 2706, 2708, 1, 0, 0, 0, 2707, 2705, 1, 0, 0, 0, 2708, 2709, 6, 158, 0, 0, 2709, 318, 1, 0, 0, 0, 27, 0, 367, 682, 2548, 2551, 2554, 2557, 2560, 2563, 2566, 2569, 2576, 2581, 2618, 2626, 2630, 2634, 2640, 2646, 2654, 2656, 2662, 2665, 2676, 2681, 2691, 2705, 1, 6, 0, 0] \ No newline at end of file +[4, 0, 164, 2902, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 4, 12, 380, 8, 12, 11, 12, 12, 12, 381, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 779, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 3, 155, 2741, 8, 155, 1, 155, 3, 155, 2744, 8, 155, 1, 155, 3, 155, 2747, 8, 155, 1, 155, 3, 155, 2750, 8, 155, 1, 155, 3, 155, 2753, 8, 155, 1, 155, 3, 155, 2756, 8, 155, 1, 155, 3, 155, 2759, 8, 155, 1, 155, 3, 155, 2762, 8, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 3, 155, 2769, 8, 155, 1, 155, 4, 155, 2772, 8, 155, 11, 155, 12, 155, 2773, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 4, 155, 2809, 8, 155, 11, 155, 12, 155, 2810, 1, 155, 1, 155, 1, 155, 1, 155, 4, 155, 2817, 8, 155, 11, 155, 12, 155, 2818, 4, 155, 2821, 8, 155, 11, 155, 12, 155, 2822, 1, 155, 1, 155, 3, 155, 2827, 8, 155, 1, 156, 1, 156, 4, 156, 2831, 8, 156, 11, 156, 12, 156, 2832, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2839, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 4, 157, 2847, 8, 157, 11, 157, 12, 157, 2848, 1, 158, 1, 158, 4, 158, 2853, 8, 158, 11, 158, 12, 158, 2854, 1, 158, 3, 158, 2858, 8, 158, 1, 159, 1, 159, 1, 160, 1, 160, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 3, 162, 2869, 8, 162, 1, 163, 4, 163, 2872, 8, 163, 11, 163, 12, 163, 2873, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 5, 164, 2882, 8, 164, 10, 164, 12, 164, 2885, 9, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 5, 165, 2896, 8, 165, 10, 165, 12, 165, 2899, 9, 165, 1, 165, 1, 165, 1, 2883, 0, 166, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, 46, 93, 47, 95, 48, 97, 49, 99, 50, 101, 51, 103, 52, 105, 53, 107, 54, 109, 55, 111, 56, 113, 57, 115, 58, 117, 59, 119, 60, 121, 61, 123, 62, 125, 63, 127, 64, 129, 65, 131, 66, 133, 67, 135, 68, 137, 69, 139, 70, 141, 71, 143, 72, 145, 73, 147, 74, 149, 75, 151, 76, 153, 77, 155, 78, 157, 79, 159, 80, 161, 81, 163, 82, 165, 83, 167, 84, 169, 85, 171, 86, 173, 87, 175, 88, 177, 89, 179, 90, 181, 91, 183, 92, 185, 93, 187, 94, 189, 95, 191, 96, 193, 97, 195, 98, 197, 99, 199, 100, 201, 101, 203, 102, 205, 103, 207, 104, 209, 105, 211, 106, 213, 107, 215, 108, 217, 109, 219, 110, 221, 111, 223, 112, 225, 113, 227, 114, 229, 115, 231, 116, 233, 117, 235, 118, 237, 119, 239, 120, 241, 121, 243, 122, 245, 123, 247, 124, 249, 125, 251, 126, 253, 127, 255, 128, 257, 129, 259, 130, 261, 131, 263, 132, 265, 133, 267, 134, 269, 135, 271, 136, 273, 137, 275, 138, 277, 139, 279, 140, 281, 141, 283, 142, 285, 143, 287, 144, 289, 145, 291, 146, 293, 147, 295, 148, 297, 149, 299, 150, 301, 151, 303, 152, 305, 153, 307, 154, 309, 155, 311, 156, 313, 157, 315, 158, 317, 159, 319, 160, 321, 161, 323, 0, 325, 0, 327, 162, 329, 163, 331, 164, 1, 0, 7, 1, 0, 48, 57, 3, 0, 48, 57, 65, 90, 97, 122, 2, 0, 48, 57, 65, 90, 3, 0, 48, 57, 65, 70, 97, 102, 1, 0, 34, 34, 3, 0, 9, 10, 12, 13, 32, 32, 2, 0, 10, 10, 13, 13, 2932, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251, 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0, 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0, 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0, 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, 0, 0, 0, 287, 1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, 1, 0, 0, 0, 0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, 301, 1, 0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, 0, 0, 0, 0, 309, 1, 0, 0, 0, 0, 311, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, 315, 1, 0, 0, 0, 0, 317, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, 0, 0, 0, 327, 1, 0, 0, 0, 0, 329, 1, 0, 0, 0, 0, 331, 1, 0, 0, 0, 1, 333, 1, 0, 0, 0, 3, 335, 1, 0, 0, 0, 5, 337, 1, 0, 0, 0, 7, 339, 1, 0, 0, 0, 9, 341, 1, 0, 0, 0, 11, 343, 1, 0, 0, 0, 13, 345, 1, 0, 0, 0, 15, 347, 1, 0, 0, 0, 17, 362, 1, 0, 0, 0, 19, 370, 1, 0, 0, 0, 21, 372, 1, 0, 0, 0, 23, 374, 1, 0, 0, 0, 25, 379, 1, 0, 0, 0, 27, 383, 1, 0, 0, 0, 29, 397, 1, 0, 0, 0, 31, 405, 1, 0, 0, 0, 33, 416, 1, 0, 0, 0, 35, 418, 1, 0, 0, 0, 37, 420, 1, 0, 0, 0, 39, 422, 1, 0, 0, 0, 41, 441, 1, 0, 0, 0, 43, 454, 1, 0, 0, 0, 45, 467, 1, 0, 0, 0, 47, 481, 1, 0, 0, 0, 49, 503, 1, 0, 0, 0, 51, 526, 1, 0, 0, 0, 53, 543, 1, 0, 0, 0, 55, 590, 1, 0, 0, 0, 57, 625, 1, 0, 0, 0, 59, 649, 1, 0, 0, 0, 61, 658, 1, 0, 0, 0, 63, 679, 1, 0, 0, 0, 65, 695, 1, 0, 0, 0, 67, 711, 1, 0, 0, 0, 69, 722, 1, 0, 0, 0, 71, 778, 1, 0, 0, 0, 73, 780, 1, 0, 0, 0, 75, 805, 1, 0, 0, 0, 77, 824, 1, 0, 0, 0, 79, 845, 1, 0, 0, 0, 81, 865, 1, 0, 0, 0, 83, 881, 1, 0, 0, 0, 85, 902, 1, 0, 0, 0, 87, 922, 1, 0, 0, 0, 89, 952, 1, 0, 0, 0, 91, 984, 1, 0, 0, 0, 93, 999, 1, 0, 0, 0, 95, 1015, 1, 0, 0, 0, 97, 1023, 1, 0, 0, 0, 99, 1034, 1, 0, 0, 0, 101, 1050, 1, 0, 0, 0, 103, 1060, 1, 0, 0, 0, 105, 1081, 1, 0, 0, 0, 107, 1092, 1, 0, 0, 0, 109, 1105, 1, 0, 0, 0, 111, 1114, 1, 0, 0, 0, 113, 1131, 1, 0, 0, 0, 115, 1149, 1, 0, 0, 0, 117, 1165, 1, 0, 0, 0, 119, 1183, 1, 0, 0, 0, 121, 1198, 1, 0, 0, 0, 123, 1210, 1, 0, 0, 0, 125, 1219, 1, 0, 0, 0, 127, 1228, 1, 0, 0, 0, 129, 1239, 1, 0, 0, 0, 131, 1254, 1, 0, 0, 0, 133, 1270, 1, 0, 0, 0, 135, 1279, 1, 0, 0, 0, 137, 1298, 1, 0, 0, 0, 139, 1312, 1, 0, 0, 0, 141, 1324, 1, 0, 0, 0, 143, 1332, 1, 0, 0, 0, 145, 1359, 1, 0, 0, 0, 147, 1364, 1, 0, 0, 0, 149, 1369, 1, 0, 0, 0, 151, 1380, 1, 0, 0, 0, 153, 1396, 1, 0, 0, 0, 155, 1402, 1, 0, 0, 0, 157, 1437, 1, 0, 0, 0, 159, 1460, 1, 0, 0, 0, 161, 1472, 1, 0, 0, 0, 163, 1483, 1, 0, 0, 0, 165, 1504, 1, 0, 0, 0, 167, 1518, 1, 0, 0, 0, 169, 1540, 1, 0, 0, 0, 171, 1571, 1, 0, 0, 0, 173, 1584, 1, 0, 0, 0, 175, 1596, 1, 0, 0, 0, 177, 1613, 1, 0, 0, 0, 179, 1625, 1, 0, 0, 0, 181, 1636, 1, 0, 0, 0, 183, 1670, 1, 0, 0, 0, 185, 1705, 1, 0, 0, 0, 187, 1713, 1, 0, 0, 0, 189, 1726, 1, 0, 0, 0, 191, 1739, 1, 0, 0, 0, 193, 1750, 1, 0, 0, 0, 195, 1761, 1, 0, 0, 0, 197, 1773, 1, 0, 0, 0, 199, 1796, 1, 0, 0, 0, 201, 1803, 1, 0, 0, 0, 203, 1814, 1, 0, 0, 0, 205, 1833, 1, 0, 0, 0, 207, 1868, 1, 0, 0, 0, 209, 1889, 1, 0, 0, 0, 211, 1923, 1, 0, 0, 0, 213, 1947, 1, 0, 0, 0, 215, 1964, 1, 0, 0, 0, 217, 1981, 1, 0, 0, 0, 219, 1998, 1, 0, 0, 0, 221, 2020, 1, 0, 0, 0, 223, 2033, 1, 0, 0, 0, 225, 2049, 1, 0, 0, 0, 227, 2069, 1, 0, 0, 0, 229, 2087, 1, 0, 0, 0, 231, 2108, 1, 0, 0, 0, 233, 2126, 1, 0, 0, 0, 235, 2149, 1, 0, 0, 0, 237, 2162, 1, 0, 0, 0, 239, 2172, 1, 0, 0, 0, 241, 2188, 1, 0, 0, 0, 243, 2206, 1, 0, 0, 0, 245, 2236, 1, 0, 0, 0, 247, 2251, 1, 0, 0, 0, 249, 2269, 1, 0, 0, 0, 251, 2281, 1, 0, 0, 0, 253, 2289, 1, 0, 0, 0, 255, 2308, 1, 0, 0, 0, 257, 2319, 1, 0, 0, 0, 259, 2339, 1, 0, 0, 0, 261, 2351, 1, 0, 0, 0, 263, 2361, 1, 0, 0, 0, 265, 2367, 1, 0, 0, 0, 267, 2379, 1, 0, 0, 0, 269, 2396, 1, 0, 0, 0, 271, 2403, 1, 0, 0, 0, 273, 2415, 1, 0, 0, 0, 275, 2424, 1, 0, 0, 0, 277, 2434, 1, 0, 0, 0, 279, 2461, 1, 0, 0, 0, 281, 2475, 1, 0, 0, 0, 283, 2487, 1, 0, 0, 0, 285, 2495, 1, 0, 0, 0, 287, 2512, 1, 0, 0, 0, 289, 2525, 1, 0, 0, 0, 291, 2536, 1, 0, 0, 0, 293, 2556, 1, 0, 0, 0, 295, 2586, 1, 0, 0, 0, 297, 2611, 1, 0, 0, 0, 299, 2620, 1, 0, 0, 0, 301, 2639, 1, 0, 0, 0, 303, 2654, 1, 0, 0, 0, 305, 2671, 1, 0, 0, 0, 307, 2692, 1, 0, 0, 0, 309, 2703, 1, 0, 0, 0, 311, 2826, 1, 0, 0, 0, 313, 2838, 1, 0, 0, 0, 315, 2846, 1, 0, 0, 0, 317, 2852, 1, 0, 0, 0, 319, 2859, 1, 0, 0, 0, 321, 2861, 1, 0, 0, 0, 323, 2863, 1, 0, 0, 0, 325, 2868, 1, 0, 0, 0, 327, 2871, 1, 0, 0, 0, 329, 2877, 1, 0, 0, 0, 331, 2891, 1, 0, 0, 0, 333, 334, 5, 123, 0, 0, 334, 2, 1, 0, 0, 0, 335, 336, 5, 125, 0, 0, 336, 4, 1, 0, 0, 0, 337, 338, 5, 61, 0, 0, 338, 6, 1, 0, 0, 0, 339, 340, 5, 59, 0, 0, 340, 8, 1, 0, 0, 0, 341, 342, 5, 40, 0, 0, 342, 10, 1, 0, 0, 0, 343, 344, 5, 44, 0, 0, 344, 12, 1, 0, 0, 0, 345, 346, 5, 41, 0, 0, 346, 14, 1, 0, 0, 0, 347, 348, 5, 97, 0, 0, 348, 349, 5, 114, 0, 0, 349, 350, 5, 99, 0, 0, 350, 351, 5, 104, 0, 0, 351, 352, 5, 105, 0, 0, 352, 353, 5, 118, 0, 0, 353, 354, 5, 101, 0, 0, 354, 355, 5, 86, 0, 0, 355, 356, 5, 101, 0, 0, 356, 357, 5, 114, 0, 0, 357, 358, 5, 115, 0, 0, 358, 359, 5, 105, 0, 0, 359, 360, 5, 111, 0, 0, 360, 361, 5, 110, 0, 0, 361, 16, 1, 0, 0, 0, 362, 363, 5, 99, 0, 0, 363, 364, 5, 108, 0, 0, 364, 365, 5, 97, 0, 0, 365, 366, 5, 115, 0, 0, 366, 367, 5, 115, 0, 0, 367, 368, 5, 101, 0, 0, 368, 369, 5, 115, 0, 0, 369, 18, 1, 0, 0, 0, 370, 371, 5, 45, 0, 0, 371, 20, 1, 0, 0, 0, 372, 373, 5, 46, 0, 0, 373, 22, 1, 0, 0, 0, 374, 375, 5, 105, 0, 0, 375, 376, 5, 115, 0, 0, 376, 377, 5, 97, 0, 0, 377, 24, 1, 0, 0, 0, 378, 380, 7, 0, 0, 0, 379, 378, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 379, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 26, 1, 0, 0, 0, 383, 384, 5, 111, 0, 0, 384, 385, 5, 98, 0, 0, 385, 386, 5, 106, 0, 0, 386, 387, 5, 101, 0, 0, 387, 388, 5, 99, 0, 0, 388, 389, 5, 116, 0, 0, 389, 390, 5, 86, 0, 0, 390, 391, 5, 101, 0, 0, 391, 392, 5, 114, 0, 0, 392, 393, 5, 115, 0, 0, 393, 394, 5, 105, 0, 0, 394, 395, 5, 111, 0, 0, 395, 396, 5, 110, 0, 0, 396, 28, 1, 0, 0, 0, 397, 398, 5, 111, 0, 0, 398, 399, 5, 98, 0, 0, 399, 400, 5, 106, 0, 0, 400, 401, 5, 101, 0, 0, 401, 402, 5, 99, 0, 0, 402, 403, 5, 116, 0, 0, 403, 404, 5, 115, 0, 0, 404, 30, 1, 0, 0, 0, 405, 406, 5, 114, 0, 0, 406, 407, 5, 111, 0, 0, 407, 408, 5, 111, 0, 0, 408, 409, 5, 116, 0, 0, 409, 410, 5, 79, 0, 0, 410, 411, 5, 98, 0, 0, 411, 412, 5, 106, 0, 0, 412, 413, 5, 101, 0, 0, 413, 414, 5, 99, 0, 0, 414, 415, 5, 116, 0, 0, 415, 32, 1, 0, 0, 0, 416, 417, 5, 47, 0, 0, 417, 34, 1, 0, 0, 0, 418, 419, 5, 95, 0, 0, 419, 36, 1, 0, 0, 0, 420, 421, 5, 36, 0, 0, 421, 38, 1, 0, 0, 0, 422, 423, 5, 80, 0, 0, 423, 424, 5, 66, 0, 0, 424, 425, 5, 88, 0, 0, 425, 426, 5, 65, 0, 0, 426, 427, 5, 103, 0, 0, 427, 428, 5, 103, 0, 0, 428, 429, 5, 114, 0, 0, 429, 430, 5, 101, 0, 0, 430, 431, 5, 103, 0, 0, 431, 432, 5, 97, 0, 0, 432, 433, 5, 116, 0, 0, 433, 434, 5, 101, 0, 0, 434, 435, 5, 84, 0, 0, 435, 436, 5, 97, 0, 0, 436, 437, 5, 114, 0, 0, 437, 438, 5, 103, 0, 0, 438, 439, 5, 101, 0, 0, 439, 440, 5, 116, 0, 0, 440, 40, 1, 0, 0, 0, 441, 442, 5, 80, 0, 0, 442, 443, 5, 66, 0, 0, 443, 444, 5, 88, 0, 0, 444, 445, 5, 66, 0, 0, 445, 446, 5, 117, 0, 0, 446, 447, 5, 105, 0, 0, 447, 448, 5, 108, 0, 0, 448, 449, 5, 100, 0, 0, 449, 450, 5, 70, 0, 0, 450, 451, 5, 105, 0, 0, 451, 452, 5, 108, 0, 0, 452, 453, 5, 101, 0, 0, 453, 42, 1, 0, 0, 0, 454, 455, 5, 80, 0, 0, 455, 456, 5, 66, 0, 0, 456, 457, 5, 88, 0, 0, 457, 458, 5, 66, 0, 0, 458, 459, 5, 117, 0, 0, 459, 460, 5, 105, 0, 0, 460, 461, 5, 108, 0, 0, 461, 462, 5, 100, 0, 0, 462, 463, 5, 82, 0, 0, 463, 464, 5, 117, 0, 0, 464, 465, 5, 108, 0, 0, 465, 466, 5, 101, 0, 0, 466, 44, 1, 0, 0, 0, 467, 468, 5, 80, 0, 0, 468, 469, 5, 66, 0, 0, 469, 470, 5, 88, 0, 0, 470, 471, 5, 66, 0, 0, 471, 472, 5, 117, 0, 0, 472, 473, 5, 105, 0, 0, 473, 474, 5, 108, 0, 0, 474, 475, 5, 100, 0, 0, 475, 476, 5, 83, 0, 0, 476, 477, 5, 116, 0, 0, 477, 478, 5, 121, 0, 0, 478, 479, 5, 108, 0, 0, 479, 480, 5, 101, 0, 0, 480, 46, 1, 0, 0, 0, 481, 482, 5, 80, 0, 0, 482, 483, 5, 66, 0, 0, 483, 484, 5, 88, 0, 0, 484, 485, 5, 67, 0, 0, 485, 486, 5, 111, 0, 0, 486, 487, 5, 110, 0, 0, 487, 488, 5, 116, 0, 0, 488, 489, 5, 97, 0, 0, 489, 490, 5, 105, 0, 0, 490, 491, 5, 110, 0, 0, 491, 492, 5, 101, 0, 0, 492, 493, 5, 114, 0, 0, 493, 494, 5, 73, 0, 0, 494, 495, 5, 116, 0, 0, 495, 496, 5, 101, 0, 0, 496, 497, 5, 109, 0, 0, 497, 498, 5, 80, 0, 0, 498, 499, 5, 114, 0, 0, 499, 500, 5, 111, 0, 0, 500, 501, 5, 120, 0, 0, 501, 502, 5, 121, 0, 0, 502, 48, 1, 0, 0, 0, 503, 504, 5, 80, 0, 0, 504, 505, 5, 66, 0, 0, 505, 506, 5, 88, 0, 0, 506, 507, 5, 67, 0, 0, 507, 508, 5, 111, 0, 0, 508, 509, 5, 112, 0, 0, 509, 510, 5, 121, 0, 0, 510, 511, 5, 70, 0, 0, 511, 512, 5, 105, 0, 0, 512, 513, 5, 108, 0, 0, 513, 514, 5, 101, 0, 0, 514, 515, 5, 115, 0, 0, 515, 516, 5, 66, 0, 0, 516, 517, 5, 117, 0, 0, 517, 518, 5, 105, 0, 0, 518, 519, 5, 108, 0, 0, 519, 520, 5, 100, 0, 0, 520, 521, 5, 80, 0, 0, 521, 522, 5, 104, 0, 0, 522, 523, 5, 97, 0, 0, 523, 524, 5, 115, 0, 0, 524, 525, 5, 101, 0, 0, 525, 50, 1, 0, 0, 0, 526, 527, 5, 80, 0, 0, 527, 528, 5, 66, 0, 0, 528, 529, 5, 88, 0, 0, 529, 530, 5, 70, 0, 0, 530, 531, 5, 105, 0, 0, 531, 532, 5, 108, 0, 0, 532, 533, 5, 101, 0, 0, 533, 534, 5, 82, 0, 0, 534, 535, 5, 101, 0, 0, 535, 536, 5, 102, 0, 0, 536, 537, 5, 101, 0, 0, 537, 538, 5, 114, 0, 0, 538, 539, 5, 101, 0, 0, 539, 540, 5, 110, 0, 0, 540, 541, 5, 99, 0, 0, 541, 542, 5, 101, 0, 0, 542, 52, 1, 0, 0, 0, 543, 544, 5, 80, 0, 0, 544, 545, 5, 66, 0, 0, 545, 546, 5, 88, 0, 0, 546, 547, 5, 70, 0, 0, 547, 548, 5, 105, 0, 0, 548, 549, 5, 108, 0, 0, 549, 550, 5, 101, 0, 0, 550, 551, 5, 83, 0, 0, 551, 552, 5, 121, 0, 0, 552, 553, 5, 115, 0, 0, 553, 554, 5, 116, 0, 0, 554, 555, 5, 101, 0, 0, 555, 556, 5, 109, 0, 0, 556, 557, 5, 83, 0, 0, 557, 558, 5, 121, 0, 0, 558, 559, 5, 110, 0, 0, 559, 560, 5, 99, 0, 0, 560, 561, 5, 104, 0, 0, 561, 562, 5, 114, 0, 0, 562, 563, 5, 111, 0, 0, 563, 564, 5, 110, 0, 0, 564, 565, 5, 105, 0, 0, 565, 566, 5, 122, 0, 0, 566, 567, 5, 101, 0, 0, 567, 568, 5, 100, 0, 0, 568, 569, 5, 66, 0, 0, 569, 570, 5, 117, 0, 0, 570, 571, 5, 105, 0, 0, 571, 572, 5, 108, 0, 0, 572, 573, 5, 100, 0, 0, 573, 574, 5, 70, 0, 0, 574, 575, 5, 105, 0, 0, 575, 576, 5, 108, 0, 0, 576, 577, 5, 101, 0, 0, 577, 578, 5, 69, 0, 0, 578, 579, 5, 120, 0, 0, 579, 580, 5, 99, 0, 0, 580, 581, 5, 101, 0, 0, 581, 582, 5, 112, 0, 0, 582, 583, 5, 116, 0, 0, 583, 584, 5, 105, 0, 0, 584, 585, 5, 111, 0, 0, 585, 586, 5, 110, 0, 0, 586, 587, 5, 83, 0, 0, 587, 588, 5, 101, 0, 0, 588, 589, 5, 116, 0, 0, 589, 54, 1, 0, 0, 0, 590, 591, 5, 80, 0, 0, 591, 592, 5, 66, 0, 0, 592, 593, 5, 88, 0, 0, 593, 594, 5, 70, 0, 0, 594, 595, 5, 105, 0, 0, 595, 596, 5, 108, 0, 0, 596, 597, 5, 101, 0, 0, 597, 598, 5, 83, 0, 0, 598, 599, 5, 121, 0, 0, 599, 600, 5, 115, 0, 0, 600, 601, 5, 116, 0, 0, 601, 602, 5, 101, 0, 0, 602, 603, 5, 109, 0, 0, 603, 604, 5, 83, 0, 0, 604, 605, 5, 121, 0, 0, 605, 606, 5, 110, 0, 0, 606, 607, 5, 99, 0, 0, 607, 608, 5, 104, 0, 0, 608, 609, 5, 114, 0, 0, 609, 610, 5, 111, 0, 0, 610, 611, 5, 110, 0, 0, 611, 612, 5, 105, 0, 0, 612, 613, 5, 122, 0, 0, 613, 614, 5, 101, 0, 0, 614, 615, 5, 100, 0, 0, 615, 616, 5, 82, 0, 0, 616, 617, 5, 111, 0, 0, 617, 618, 5, 111, 0, 0, 618, 619, 5, 116, 0, 0, 619, 620, 5, 71, 0, 0, 620, 621, 5, 114, 0, 0, 621, 622, 5, 111, 0, 0, 622, 623, 5, 117, 0, 0, 623, 624, 5, 112, 0, 0, 624, 56, 1, 0, 0, 0, 625, 626, 5, 80, 0, 0, 626, 627, 5, 66, 0, 0, 627, 628, 5, 88, 0, 0, 628, 629, 5, 70, 0, 0, 629, 630, 5, 114, 0, 0, 630, 631, 5, 97, 0, 0, 631, 632, 5, 109, 0, 0, 632, 633, 5, 101, 0, 0, 633, 634, 5, 119, 0, 0, 634, 635, 5, 111, 0, 0, 635, 636, 5, 114, 0, 0, 636, 637, 5, 107, 0, 0, 637, 638, 5, 115, 0, 0, 638, 639, 5, 66, 0, 0, 639, 640, 5, 117, 0, 0, 640, 641, 5, 105, 0, 0, 641, 642, 5, 108, 0, 0, 642, 643, 5, 100, 0, 0, 643, 644, 5, 80, 0, 0, 644, 645, 5, 104, 0, 0, 645, 646, 5, 97, 0, 0, 646, 647, 5, 115, 0, 0, 647, 648, 5, 101, 0, 0, 648, 58, 1, 0, 0, 0, 649, 650, 5, 80, 0, 0, 650, 651, 5, 66, 0, 0, 651, 652, 5, 88, 0, 0, 652, 653, 5, 71, 0, 0, 653, 654, 5, 114, 0, 0, 654, 655, 5, 111, 0, 0, 655, 656, 5, 117, 0, 0, 656, 657, 5, 112, 0, 0, 657, 60, 1, 0, 0, 0, 658, 659, 5, 80, 0, 0, 659, 660, 5, 66, 0, 0, 660, 661, 5, 88, 0, 0, 661, 662, 5, 72, 0, 0, 662, 663, 5, 101, 0, 0, 663, 664, 5, 97, 0, 0, 664, 665, 5, 100, 0, 0, 665, 666, 5, 101, 0, 0, 666, 667, 5, 114, 0, 0, 667, 668, 5, 115, 0, 0, 668, 669, 5, 66, 0, 0, 669, 670, 5, 117, 0, 0, 670, 671, 5, 105, 0, 0, 671, 672, 5, 108, 0, 0, 672, 673, 5, 100, 0, 0, 673, 674, 5, 80, 0, 0, 674, 675, 5, 104, 0, 0, 675, 676, 5, 97, 0, 0, 676, 677, 5, 115, 0, 0, 677, 678, 5, 101, 0, 0, 678, 62, 1, 0, 0, 0, 679, 680, 5, 80, 0, 0, 680, 681, 5, 66, 0, 0, 681, 682, 5, 88, 0, 0, 682, 683, 5, 78, 0, 0, 683, 684, 5, 97, 0, 0, 684, 685, 5, 116, 0, 0, 685, 686, 5, 105, 0, 0, 686, 687, 5, 118, 0, 0, 687, 688, 5, 101, 0, 0, 688, 689, 5, 84, 0, 0, 689, 690, 5, 97, 0, 0, 690, 691, 5, 114, 0, 0, 691, 692, 5, 103, 0, 0, 692, 693, 5, 101, 0, 0, 693, 694, 5, 116, 0, 0, 694, 64, 1, 0, 0, 0, 695, 696, 5, 80, 0, 0, 696, 697, 5, 66, 0, 0, 697, 698, 5, 88, 0, 0, 698, 699, 5, 76, 0, 0, 699, 700, 5, 101, 0, 0, 700, 701, 5, 103, 0, 0, 701, 702, 5, 97, 0, 0, 702, 703, 5, 99, 0, 0, 703, 704, 5, 121, 0, 0, 704, 705, 5, 84, 0, 0, 705, 706, 5, 97, 0, 0, 706, 707, 5, 114, 0, 0, 707, 708, 5, 103, 0, 0, 708, 709, 5, 101, 0, 0, 709, 710, 5, 116, 0, 0, 710, 66, 1, 0, 0, 0, 711, 712, 5, 80, 0, 0, 712, 713, 5, 66, 0, 0, 713, 714, 5, 88, 0, 0, 714, 715, 5, 80, 0, 0, 715, 716, 5, 114, 0, 0, 716, 717, 5, 111, 0, 0, 717, 718, 5, 106, 0, 0, 718, 719, 5, 101, 0, 0, 719, 720, 5, 99, 0, 0, 720, 721, 5, 116, 0, 0, 721, 68, 1, 0, 0, 0, 722, 723, 5, 80, 0, 0, 723, 724, 5, 66, 0, 0, 724, 725, 5, 88, 0, 0, 725, 726, 5, 82, 0, 0, 726, 727, 5, 101, 0, 0, 727, 728, 5, 102, 0, 0, 728, 729, 5, 101, 0, 0, 729, 730, 5, 114, 0, 0, 730, 731, 5, 101, 0, 0, 731, 732, 5, 110, 0, 0, 732, 733, 5, 99, 0, 0, 733, 734, 5, 101, 0, 0, 734, 735, 5, 80, 0, 0, 735, 736, 5, 114, 0, 0, 736, 737, 5, 111, 0, 0, 737, 738, 5, 120, 0, 0, 738, 739, 5, 121, 0, 0, 739, 70, 1, 0, 0, 0, 740, 741, 5, 80, 0, 0, 741, 742, 5, 66, 0, 0, 742, 743, 5, 88, 0, 0, 743, 744, 5, 82, 0, 0, 744, 745, 5, 101, 0, 0, 745, 746, 5, 115, 0, 0, 746, 747, 5, 111, 0, 0, 747, 748, 5, 117, 0, 0, 748, 749, 5, 114, 0, 0, 749, 750, 5, 99, 0, 0, 750, 751, 5, 101, 0, 0, 751, 752, 5, 115, 0, 0, 752, 753, 5, 66, 0, 0, 753, 754, 5, 117, 0, 0, 754, 755, 5, 105, 0, 0, 755, 756, 5, 108, 0, 0, 756, 757, 5, 100, 0, 0, 757, 758, 5, 80, 0, 0, 758, 759, 5, 104, 0, 0, 759, 760, 5, 97, 0, 0, 760, 761, 5, 115, 0, 0, 761, 779, 5, 101, 0, 0, 762, 763, 5, 80, 0, 0, 763, 764, 5, 66, 0, 0, 764, 765, 5, 88, 0, 0, 765, 766, 5, 82, 0, 0, 766, 767, 5, 101, 0, 0, 767, 768, 5, 122, 0, 0, 768, 769, 5, 66, 0, 0, 769, 770, 5, 117, 0, 0, 770, 771, 5, 105, 0, 0, 771, 772, 5, 108, 0, 0, 772, 773, 5, 100, 0, 0, 773, 774, 5, 80, 0, 0, 774, 775, 5, 104, 0, 0, 775, 776, 5, 97, 0, 0, 776, 777, 5, 115, 0, 0, 777, 779, 5, 101, 0, 0, 778, 740, 1, 0, 0, 0, 778, 762, 1, 0, 0, 0, 779, 72, 1, 0, 0, 0, 780, 781, 5, 80, 0, 0, 781, 782, 5, 66, 0, 0, 782, 783, 5, 88, 0, 0, 783, 784, 5, 83, 0, 0, 784, 785, 5, 104, 0, 0, 785, 786, 5, 101, 0, 0, 786, 787, 5, 108, 0, 0, 787, 788, 5, 108, 0, 0, 788, 789, 5, 83, 0, 0, 789, 790, 5, 99, 0, 0, 790, 791, 5, 114, 0, 0, 791, 792, 5, 105, 0, 0, 792, 793, 5, 112, 0, 0, 793, 794, 5, 116, 0, 0, 794, 795, 5, 66, 0, 0, 795, 796, 5, 117, 0, 0, 796, 797, 5, 105, 0, 0, 797, 798, 5, 108, 0, 0, 798, 799, 5, 100, 0, 0, 799, 800, 5, 80, 0, 0, 800, 801, 5, 104, 0, 0, 801, 802, 5, 97, 0, 0, 802, 803, 5, 115, 0, 0, 803, 804, 5, 101, 0, 0, 804, 74, 1, 0, 0, 0, 805, 806, 5, 80, 0, 0, 806, 807, 5, 66, 0, 0, 807, 808, 5, 88, 0, 0, 808, 809, 5, 83, 0, 0, 809, 810, 5, 104, 0, 0, 810, 811, 5, 101, 0, 0, 811, 812, 5, 108, 0, 0, 812, 813, 5, 108, 0, 0, 813, 814, 5, 66, 0, 0, 814, 815, 5, 117, 0, 0, 815, 816, 5, 105, 0, 0, 816, 817, 5, 108, 0, 0, 817, 818, 5, 100, 0, 0, 818, 819, 5, 80, 0, 0, 819, 820, 5, 104, 0, 0, 820, 821, 5, 97, 0, 0, 821, 822, 5, 115, 0, 0, 822, 823, 5, 101, 0, 0, 823, 76, 1, 0, 0, 0, 824, 825, 5, 80, 0, 0, 825, 826, 5, 66, 0, 0, 826, 827, 5, 88, 0, 0, 827, 828, 5, 83, 0, 0, 828, 829, 5, 111, 0, 0, 829, 830, 5, 117, 0, 0, 830, 831, 5, 114, 0, 0, 831, 832, 5, 99, 0, 0, 832, 833, 5, 101, 0, 0, 833, 834, 5, 115, 0, 0, 834, 835, 5, 66, 0, 0, 835, 836, 5, 117, 0, 0, 836, 837, 5, 105, 0, 0, 837, 838, 5, 108, 0, 0, 838, 839, 5, 100, 0, 0, 839, 840, 5, 80, 0, 0, 840, 841, 5, 104, 0, 0, 841, 842, 5, 97, 0, 0, 842, 843, 5, 115, 0, 0, 843, 844, 5, 101, 0, 0, 844, 78, 1, 0, 0, 0, 845, 846, 5, 80, 0, 0, 846, 847, 5, 66, 0, 0, 847, 848, 5, 88, 0, 0, 848, 849, 5, 84, 0, 0, 849, 850, 5, 97, 0, 0, 850, 851, 5, 114, 0, 0, 851, 852, 5, 103, 0, 0, 852, 853, 5, 101, 0, 0, 853, 854, 5, 116, 0, 0, 854, 855, 5, 68, 0, 0, 855, 856, 5, 101, 0, 0, 856, 857, 5, 112, 0, 0, 857, 858, 5, 101, 0, 0, 858, 859, 5, 110, 0, 0, 859, 860, 5, 100, 0, 0, 860, 861, 5, 101, 0, 0, 861, 862, 5, 110, 0, 0, 862, 863, 5, 99, 0, 0, 863, 864, 5, 121, 0, 0, 864, 80, 1, 0, 0, 0, 865, 866, 5, 80, 0, 0, 866, 867, 5, 66, 0, 0, 867, 868, 5, 88, 0, 0, 868, 869, 5, 86, 0, 0, 869, 870, 5, 97, 0, 0, 870, 871, 5, 114, 0, 0, 871, 872, 5, 105, 0, 0, 872, 873, 5, 97, 0, 0, 873, 874, 5, 110, 0, 0, 874, 875, 5, 116, 0, 0, 875, 876, 5, 71, 0, 0, 876, 877, 5, 114, 0, 0, 877, 878, 5, 111, 0, 0, 878, 879, 5, 117, 0, 0, 879, 880, 5, 112, 0, 0, 880, 82, 1, 0, 0, 0, 881, 882, 5, 88, 0, 0, 882, 883, 5, 67, 0, 0, 883, 884, 5, 66, 0, 0, 884, 885, 5, 117, 0, 0, 885, 886, 5, 105, 0, 0, 886, 887, 5, 108, 0, 0, 887, 888, 5, 100, 0, 0, 888, 889, 5, 67, 0, 0, 889, 890, 5, 111, 0, 0, 890, 891, 5, 110, 0, 0, 891, 892, 5, 102, 0, 0, 892, 893, 5, 105, 0, 0, 893, 894, 5, 103, 0, 0, 894, 895, 5, 117, 0, 0, 895, 896, 5, 114, 0, 0, 896, 897, 5, 97, 0, 0, 897, 898, 5, 116, 0, 0, 898, 899, 5, 105, 0, 0, 899, 900, 5, 111, 0, 0, 900, 901, 5, 110, 0, 0, 901, 84, 1, 0, 0, 0, 902, 903, 5, 88, 0, 0, 903, 904, 5, 67, 0, 0, 904, 905, 5, 67, 0, 0, 905, 906, 5, 111, 0, 0, 906, 907, 5, 110, 0, 0, 907, 908, 5, 102, 0, 0, 908, 909, 5, 105, 0, 0, 909, 910, 5, 103, 0, 0, 910, 911, 5, 117, 0, 0, 911, 912, 5, 114, 0, 0, 912, 913, 5, 97, 0, 0, 913, 914, 5, 116, 0, 0, 914, 915, 5, 105, 0, 0, 915, 916, 5, 111, 0, 0, 916, 917, 5, 110, 0, 0, 917, 918, 5, 76, 0, 0, 918, 919, 5, 105, 0, 0, 919, 920, 5, 115, 0, 0, 920, 921, 5, 116, 0, 0, 921, 86, 1, 0, 0, 0, 922, 923, 5, 88, 0, 0, 923, 924, 5, 67, 0, 0, 924, 925, 5, 82, 0, 0, 925, 926, 5, 101, 0, 0, 926, 927, 5, 109, 0, 0, 927, 928, 5, 111, 0, 0, 928, 929, 5, 116, 0, 0, 929, 930, 5, 101, 0, 0, 930, 931, 5, 83, 0, 0, 931, 932, 5, 119, 0, 0, 932, 933, 5, 105, 0, 0, 933, 934, 5, 102, 0, 0, 934, 935, 5, 116, 0, 0, 935, 936, 5, 80, 0, 0, 936, 937, 5, 97, 0, 0, 937, 938, 5, 99, 0, 0, 938, 939, 5, 107, 0, 0, 939, 940, 5, 97, 0, 0, 940, 941, 5, 103, 0, 0, 941, 942, 5, 101, 0, 0, 942, 943, 5, 82, 0, 0, 943, 944, 5, 101, 0, 0, 944, 945, 5, 102, 0, 0, 945, 946, 5, 101, 0, 0, 946, 947, 5, 114, 0, 0, 947, 948, 5, 101, 0, 0, 948, 949, 5, 110, 0, 0, 949, 950, 5, 99, 0, 0, 950, 951, 5, 101, 0, 0, 951, 88, 1, 0, 0, 0, 952, 953, 5, 88, 0, 0, 953, 954, 5, 67, 0, 0, 954, 955, 5, 83, 0, 0, 955, 956, 5, 119, 0, 0, 956, 957, 5, 105, 0, 0, 957, 958, 5, 102, 0, 0, 958, 959, 5, 116, 0, 0, 959, 960, 5, 80, 0, 0, 960, 961, 5, 97, 0, 0, 961, 962, 5, 99, 0, 0, 962, 963, 5, 107, 0, 0, 963, 964, 5, 97, 0, 0, 964, 965, 5, 103, 0, 0, 965, 966, 5, 101, 0, 0, 966, 967, 5, 80, 0, 0, 967, 968, 5, 114, 0, 0, 968, 969, 5, 111, 0, 0, 969, 970, 5, 100, 0, 0, 970, 971, 5, 117, 0, 0, 971, 972, 5, 99, 0, 0, 972, 973, 5, 116, 0, 0, 973, 974, 5, 68, 0, 0, 974, 975, 5, 101, 0, 0, 975, 976, 5, 112, 0, 0, 976, 977, 5, 101, 0, 0, 977, 978, 5, 110, 0, 0, 978, 979, 5, 100, 0, 0, 979, 980, 5, 101, 0, 0, 980, 981, 5, 110, 0, 0, 981, 982, 5, 99, 0, 0, 982, 983, 5, 121, 0, 0, 983, 90, 1, 0, 0, 0, 984, 985, 5, 88, 0, 0, 985, 986, 5, 67, 0, 0, 986, 987, 5, 86, 0, 0, 987, 988, 5, 101, 0, 0, 988, 989, 5, 114, 0, 0, 989, 990, 5, 115, 0, 0, 990, 991, 5, 105, 0, 0, 991, 992, 5, 111, 0, 0, 992, 993, 5, 110, 0, 0, 993, 994, 5, 71, 0, 0, 994, 995, 5, 114, 0, 0, 995, 996, 5, 111, 0, 0, 996, 997, 5, 117, 0, 0, 997, 998, 5, 112, 0, 0, 998, 92, 1, 0, 0, 0, 999, 1000, 5, 97, 0, 0, 1000, 1001, 5, 108, 0, 0, 1001, 1002, 5, 119, 0, 0, 1002, 1003, 5, 97, 0, 0, 1003, 1004, 5, 121, 0, 0, 1004, 1005, 5, 115, 0, 0, 1005, 1006, 5, 79, 0, 0, 1006, 1007, 5, 117, 0, 0, 1007, 1008, 5, 116, 0, 0, 1008, 1009, 5, 79, 0, 0, 1009, 1010, 5, 102, 0, 0, 1010, 1011, 5, 68, 0, 0, 1011, 1012, 5, 97, 0, 0, 1012, 1013, 5, 116, 0, 0, 1013, 1014, 5, 101, 0, 0, 1014, 94, 1, 0, 0, 0, 1015, 1016, 5, 102, 0, 0, 1016, 1017, 5, 105, 0, 0, 1017, 1018, 5, 108, 0, 0, 1018, 1019, 5, 101, 0, 0, 1019, 1020, 5, 82, 0, 0, 1020, 1021, 5, 101, 0, 0, 1021, 1022, 5, 102, 0, 0, 1022, 96, 1, 0, 0, 0, 1023, 1024, 5, 112, 0, 0, 1024, 1025, 5, 114, 0, 0, 1025, 1026, 5, 111, 0, 0, 1026, 1027, 5, 100, 0, 0, 1027, 1028, 5, 117, 0, 0, 1028, 1029, 5, 99, 0, 0, 1029, 1030, 5, 116, 0, 0, 1030, 1031, 5, 82, 0, 0, 1031, 1032, 5, 101, 0, 0, 1032, 1033, 5, 102, 0, 0, 1033, 98, 1, 0, 0, 0, 1034, 1035, 5, 99, 0, 0, 1035, 1036, 5, 111, 0, 0, 1036, 1037, 5, 110, 0, 0, 1037, 1038, 5, 116, 0, 0, 1038, 1039, 5, 97, 0, 0, 1039, 1040, 5, 105, 0, 0, 1040, 1041, 5, 110, 0, 0, 1041, 1042, 5, 101, 0, 0, 1042, 1043, 5, 114, 0, 0, 1043, 1044, 5, 80, 0, 0, 1044, 1045, 5, 111, 0, 0, 1045, 1046, 5, 114, 0, 0, 1046, 1047, 5, 116, 0, 0, 1047, 1048, 5, 97, 0, 0, 1048, 1049, 5, 108, 0, 0, 1049, 100, 1, 0, 0, 0, 1050, 1051, 5, 112, 0, 0, 1051, 1052, 5, 114, 0, 0, 1052, 1053, 5, 111, 0, 0, 1053, 1054, 5, 120, 0, 0, 1054, 1055, 5, 121, 0, 0, 1055, 1056, 5, 84, 0, 0, 1056, 1057, 5, 121, 0, 0, 1057, 1058, 5, 112, 0, 0, 1058, 1059, 5, 101, 0, 0, 1059, 102, 1, 0, 0, 0, 1060, 1061, 5, 114, 0, 0, 1061, 1062, 5, 101, 0, 0, 1062, 1063, 5, 109, 0, 0, 1063, 1064, 5, 111, 0, 0, 1064, 1065, 5, 116, 0, 0, 1065, 1066, 5, 101, 0, 0, 1066, 1067, 5, 71, 0, 0, 1067, 1068, 5, 108, 0, 0, 1068, 1069, 5, 111, 0, 0, 1069, 1070, 5, 98, 0, 0, 1070, 1071, 5, 97, 0, 0, 1071, 1072, 5, 108, 0, 0, 1072, 1073, 5, 73, 0, 0, 1073, 1074, 5, 68, 0, 0, 1074, 1075, 5, 83, 0, 0, 1075, 1076, 5, 116, 0, 0, 1076, 1077, 5, 114, 0, 0, 1077, 1078, 5, 105, 0, 0, 1078, 1079, 5, 110, 0, 0, 1079, 1080, 5, 103, 0, 0, 1080, 104, 1, 0, 0, 0, 1081, 1082, 5, 114, 0, 0, 1082, 1083, 5, 101, 0, 0, 1083, 1084, 5, 109, 0, 0, 1084, 1085, 5, 111, 0, 0, 1085, 1086, 5, 116, 0, 0, 1086, 1087, 5, 101, 0, 0, 1087, 1088, 5, 73, 0, 0, 1088, 1089, 5, 110, 0, 0, 1089, 1090, 5, 102, 0, 0, 1090, 1091, 5, 111, 0, 0, 1091, 106, 1, 0, 0, 0, 1092, 1093, 5, 102, 0, 0, 1093, 1094, 5, 105, 0, 0, 1094, 1095, 5, 108, 0, 0, 1095, 1096, 5, 101, 0, 0, 1096, 1097, 5, 69, 0, 0, 1097, 1098, 5, 110, 0, 0, 1098, 1099, 5, 99, 0, 0, 1099, 1100, 5, 111, 0, 0, 1100, 1101, 5, 100, 0, 0, 1101, 1102, 5, 105, 0, 0, 1102, 1103, 5, 110, 0, 0, 1103, 1104, 5, 103, 0, 0, 1104, 108, 1, 0, 0, 0, 1105, 1106, 5, 99, 0, 0, 1106, 1107, 5, 111, 0, 0, 1107, 1108, 5, 109, 0, 0, 1108, 1109, 5, 109, 0, 0, 1109, 1110, 5, 101, 0, 0, 1110, 1111, 5, 110, 0, 0, 1111, 1112, 5, 116, 0, 0, 1112, 1113, 5, 115, 0, 0, 1113, 110, 1, 0, 0, 0, 1114, 1115, 5, 101, 0, 0, 1115, 1116, 5, 120, 0, 0, 1116, 1117, 5, 112, 0, 0, 1117, 1118, 5, 108, 0, 0, 1118, 1119, 5, 105, 0, 0, 1119, 1120, 5, 99, 0, 0, 1120, 1121, 5, 105, 0, 0, 1121, 1122, 5, 116, 0, 0, 1122, 1123, 5, 70, 0, 0, 1123, 1124, 5, 105, 0, 0, 1124, 1125, 5, 108, 0, 0, 1125, 1126, 5, 101, 0, 0, 1126, 1127, 5, 84, 0, 0, 1127, 1128, 5, 121, 0, 0, 1128, 1129, 5, 112, 0, 0, 1129, 1130, 5, 101, 0, 0, 1130, 112, 1, 0, 0, 0, 1131, 1132, 5, 101, 0, 0, 1132, 1133, 5, 120, 0, 0, 1133, 1134, 5, 112, 0, 0, 1134, 1135, 5, 108, 0, 0, 1135, 1136, 5, 105, 0, 0, 1136, 1137, 5, 99, 0, 0, 1137, 1138, 5, 105, 0, 0, 1138, 1139, 5, 116, 0, 0, 1139, 1140, 5, 70, 0, 0, 1140, 1141, 5, 105, 0, 0, 1141, 1142, 5, 108, 0, 0, 1142, 1143, 5, 101, 0, 0, 1143, 1144, 5, 84, 0, 0, 1144, 1145, 5, 121, 0, 0, 1145, 1146, 5, 112, 0, 0, 1146, 1147, 5, 101, 0, 0, 1147, 1148, 5, 115, 0, 0, 1148, 114, 1, 0, 0, 0, 1149, 1150, 5, 101, 0, 0, 1150, 1151, 5, 120, 0, 0, 1151, 1152, 5, 112, 0, 0, 1152, 1153, 5, 108, 0, 0, 1153, 1154, 5, 105, 0, 0, 1154, 1155, 5, 99, 0, 0, 1155, 1156, 5, 105, 0, 0, 1156, 1157, 5, 116, 0, 0, 1157, 1158, 5, 70, 0, 0, 1158, 1159, 5, 111, 0, 0, 1159, 1160, 5, 108, 0, 0, 1160, 1161, 5, 100, 0, 0, 1161, 1162, 5, 101, 0, 0, 1162, 1163, 5, 114, 0, 0, 1163, 1164, 5, 115, 0, 0, 1164, 116, 1, 0, 0, 0, 1165, 1166, 5, 108, 0, 0, 1166, 1167, 5, 97, 0, 0, 1167, 1168, 5, 115, 0, 0, 1168, 1169, 5, 116, 0, 0, 1169, 1170, 5, 75, 0, 0, 1170, 1171, 5, 110, 0, 0, 1171, 1172, 5, 111, 0, 0, 1172, 1173, 5, 119, 0, 0, 1173, 1174, 5, 110, 0, 0, 1174, 1175, 5, 70, 0, 0, 1175, 1176, 5, 105, 0, 0, 1176, 1177, 5, 108, 0, 0, 1177, 1178, 5, 101, 0, 0, 1178, 1179, 5, 84, 0, 0, 1179, 1180, 5, 121, 0, 0, 1180, 1181, 5, 112, 0, 0, 1181, 1182, 5, 101, 0, 0, 1182, 118, 1, 0, 0, 0, 1183, 1184, 5, 105, 0, 0, 1184, 1185, 5, 110, 0, 0, 1185, 1186, 5, 99, 0, 0, 1186, 1187, 5, 108, 0, 0, 1187, 1188, 5, 117, 0, 0, 1188, 1189, 5, 100, 0, 0, 1189, 1190, 5, 101, 0, 0, 1190, 1191, 5, 73, 0, 0, 1191, 1192, 5, 110, 0, 0, 1192, 1193, 5, 73, 0, 0, 1193, 1194, 5, 110, 0, 0, 1194, 1195, 5, 100, 0, 0, 1195, 1196, 5, 101, 0, 0, 1196, 1197, 5, 120, 0, 0, 1197, 120, 1, 0, 0, 0, 1198, 1199, 5, 105, 0, 0, 1199, 1200, 5, 110, 0, 0, 1200, 1201, 5, 100, 0, 0, 1201, 1202, 5, 101, 0, 0, 1202, 1203, 5, 110, 0, 0, 1203, 1204, 5, 116, 0, 0, 1204, 1205, 5, 87, 0, 0, 1205, 1206, 5, 105, 0, 0, 1206, 1207, 5, 100, 0, 0, 1207, 1208, 5, 116, 0, 0, 1208, 1209, 5, 104, 0, 0, 1209, 122, 1, 0, 0, 0, 1210, 1211, 5, 116, 0, 0, 1211, 1212, 5, 97, 0, 0, 1212, 1213, 5, 98, 0, 0, 1213, 1214, 5, 87, 0, 0, 1214, 1215, 5, 105, 0, 0, 1215, 1216, 5, 100, 0, 0, 1216, 1217, 5, 116, 0, 0, 1217, 1218, 5, 104, 0, 0, 1218, 124, 1, 0, 0, 0, 1219, 1220, 5, 117, 0, 0, 1220, 1221, 5, 115, 0, 0, 1221, 1222, 5, 101, 0, 0, 1222, 1223, 5, 115, 0, 0, 1223, 1224, 5, 84, 0, 0, 1224, 1225, 5, 97, 0, 0, 1225, 1226, 5, 98, 0, 0, 1226, 1227, 5, 115, 0, 0, 1227, 126, 1, 0, 0, 0, 1228, 1229, 5, 119, 0, 0, 1229, 1230, 5, 114, 0, 0, 1230, 1231, 5, 97, 0, 0, 1231, 1232, 5, 112, 0, 0, 1232, 1233, 5, 115, 0, 0, 1233, 1234, 5, 76, 0, 0, 1234, 1235, 5, 105, 0, 0, 1235, 1236, 5, 110, 0, 0, 1236, 1237, 5, 101, 0, 0, 1237, 1238, 5, 115, 0, 0, 1238, 128, 1, 0, 0, 0, 1239, 1240, 5, 112, 0, 0, 1240, 1241, 5, 108, 0, 0, 1241, 1242, 5, 97, 0, 0, 1242, 1243, 5, 116, 0, 0, 1243, 1244, 5, 102, 0, 0, 1244, 1245, 5, 111, 0, 0, 1245, 1246, 5, 114, 0, 0, 1246, 1247, 5, 109, 0, 0, 1247, 1248, 5, 70, 0, 0, 1248, 1249, 5, 105, 0, 0, 1249, 1250, 5, 108, 0, 0, 1250, 1251, 5, 116, 0, 0, 1251, 1252, 5, 101, 0, 0, 1252, 1253, 5, 114, 0, 0, 1253, 130, 1, 0, 0, 0, 1254, 1255, 5, 112, 0, 0, 1255, 1256, 5, 108, 0, 0, 1256, 1257, 5, 97, 0, 0, 1257, 1258, 5, 116, 0, 0, 1258, 1259, 5, 102, 0, 0, 1259, 1260, 5, 111, 0, 0, 1260, 1261, 5, 114, 0, 0, 1261, 1262, 5, 109, 0, 0, 1262, 1263, 5, 70, 0, 0, 1263, 1264, 5, 105, 0, 0, 1264, 1265, 5, 108, 0, 0, 1265, 1266, 5, 116, 0, 0, 1266, 1267, 5, 101, 0, 0, 1267, 1268, 5, 114, 0, 0, 1268, 1269, 5, 115, 0, 0, 1269, 132, 1, 0, 0, 0, 1270, 1271, 5, 99, 0, 0, 1271, 1272, 5, 104, 0, 0, 1272, 1273, 5, 105, 0, 0, 1273, 1274, 5, 108, 0, 0, 1274, 1275, 5, 100, 0, 0, 1275, 1276, 5, 114, 0, 0, 1276, 1277, 5, 101, 0, 0, 1277, 1278, 5, 110, 0, 0, 1278, 134, 1, 0, 0, 0, 1279, 1280, 5, 112, 0, 0, 1280, 1281, 5, 114, 0, 0, 1281, 1282, 5, 111, 0, 0, 1282, 1283, 5, 100, 0, 0, 1283, 1284, 5, 117, 0, 0, 1284, 1285, 5, 99, 0, 0, 1285, 1286, 5, 116, 0, 0, 1286, 1287, 5, 73, 0, 0, 1287, 1288, 5, 110, 0, 0, 1288, 1289, 5, 115, 0, 0, 1289, 1290, 5, 116, 0, 0, 1290, 1291, 5, 97, 0, 0, 1291, 1292, 5, 108, 0, 0, 1292, 1293, 5, 108, 0, 0, 1293, 1294, 5, 80, 0, 0, 1294, 1295, 5, 97, 0, 0, 1295, 1296, 5, 116, 0, 0, 1296, 1297, 5, 104, 0, 0, 1297, 136, 1, 0, 0, 0, 1298, 1299, 5, 114, 0, 0, 1299, 1300, 5, 101, 0, 0, 1300, 1301, 5, 112, 0, 0, 1301, 1302, 5, 111, 0, 0, 1302, 1303, 5, 115, 0, 0, 1303, 1304, 5, 105, 0, 0, 1304, 1305, 5, 116, 0, 0, 1305, 1306, 5, 111, 0, 0, 1306, 1307, 5, 114, 0, 0, 1307, 1308, 5, 121, 0, 0, 1308, 1309, 5, 85, 0, 0, 1309, 1310, 5, 82, 0, 0, 1310, 1311, 5, 76, 0, 0, 1311, 138, 1, 0, 0, 0, 1312, 1313, 5, 114, 0, 0, 1313, 1314, 5, 101, 0, 0, 1314, 1315, 5, 113, 0, 0, 1315, 1316, 5, 117, 0, 0, 1316, 1317, 5, 105, 0, 0, 1317, 1318, 5, 114, 0, 0, 1318, 1319, 5, 101, 0, 0, 1319, 1320, 5, 109, 0, 0, 1320, 1321, 5, 101, 0, 0, 1321, 1322, 5, 110, 0, 0, 1322, 1323, 5, 116, 0, 0, 1323, 140, 1, 0, 0, 0, 1324, 1325, 5, 112, 0, 0, 1325, 1326, 5, 97, 0, 0, 1326, 1327, 5, 99, 0, 0, 1327, 1328, 5, 107, 0, 0, 1328, 1329, 5, 97, 0, 0, 1329, 1330, 5, 103, 0, 0, 1330, 1331, 5, 101, 0, 0, 1331, 142, 1, 0, 0, 0, 1332, 1333, 5, 112, 0, 0, 1333, 1334, 5, 97, 0, 0, 1334, 1335, 5, 99, 0, 0, 1335, 1336, 5, 107, 0, 0, 1336, 1337, 5, 97, 0, 0, 1337, 1338, 5, 103, 0, 0, 1338, 1339, 5, 101, 0, 0, 1339, 1340, 5, 80, 0, 0, 1340, 1341, 5, 114, 0, 0, 1341, 1342, 5, 111, 0, 0, 1342, 1343, 5, 100, 0, 0, 1343, 1344, 5, 117, 0, 0, 1344, 1345, 5, 99, 0, 0, 1345, 1346, 5, 116, 0, 0, 1346, 1347, 5, 68, 0, 0, 1347, 1348, 5, 101, 0, 0, 1348, 1349, 5, 112, 0, 0, 1349, 1350, 5, 101, 0, 0, 1350, 1351, 5, 110, 0, 0, 1351, 1352, 5, 100, 0, 0, 1352, 1353, 5, 101, 0, 0, 1353, 1354, 5, 110, 0, 0, 1354, 1355, 5, 99, 0, 0, 1355, 1356, 5, 105, 0, 0, 1356, 1357, 5, 101, 0, 0, 1357, 1358, 5, 115, 0, 0, 1358, 144, 1, 0, 0, 0, 1359, 1360, 5, 110, 0, 0, 1360, 1361, 5, 97, 0, 0, 1361, 1362, 5, 109, 0, 0, 1362, 1363, 5, 101, 0, 0, 1363, 146, 1, 0, 0, 0, 1364, 1365, 5, 112, 0, 0, 1365, 1366, 5, 97, 0, 0, 1366, 1367, 5, 116, 0, 0, 1367, 1368, 5, 104, 0, 0, 1368, 148, 1, 0, 0, 0, 1369, 1370, 5, 115, 0, 0, 1370, 1371, 5, 111, 0, 0, 1371, 1372, 5, 117, 0, 0, 1372, 1373, 5, 114, 0, 0, 1373, 1374, 5, 99, 0, 0, 1374, 1375, 5, 101, 0, 0, 1375, 1376, 5, 84, 0, 0, 1376, 1377, 5, 114, 0, 0, 1377, 1378, 5, 101, 0, 0, 1378, 1379, 5, 101, 0, 0, 1379, 150, 1, 0, 0, 0, 1380, 1381, 5, 98, 0, 0, 1381, 1382, 5, 117, 0, 0, 1382, 1383, 5, 105, 0, 0, 1383, 1384, 5, 108, 0, 0, 1384, 1385, 5, 100, 0, 0, 1385, 1386, 5, 65, 0, 0, 1386, 1387, 5, 99, 0, 0, 1387, 1388, 5, 116, 0, 0, 1388, 1389, 5, 105, 0, 0, 1389, 1390, 5, 111, 0, 0, 1390, 1391, 5, 110, 0, 0, 1391, 1392, 5, 77, 0, 0, 1392, 1393, 5, 97, 0, 0, 1393, 1394, 5, 115, 0, 0, 1394, 1395, 5, 107, 0, 0, 1395, 152, 1, 0, 0, 0, 1396, 1397, 5, 102, 0, 0, 1397, 1398, 5, 105, 0, 0, 1398, 1399, 5, 108, 0, 0, 1399, 1400, 5, 101, 0, 0, 1400, 1401, 5, 115, 0, 0, 1401, 154, 1, 0, 0, 0, 1402, 1403, 5, 114, 0, 0, 1403, 1404, 5, 117, 0, 0, 1404, 1405, 5, 110, 0, 0, 1405, 1406, 5, 79, 0, 0, 1406, 1407, 5, 110, 0, 0, 1407, 1408, 5, 108, 0, 0, 1408, 1409, 5, 121, 0, 0, 1409, 1410, 5, 70, 0, 0, 1410, 1411, 5, 111, 0, 0, 1411, 1412, 5, 114, 0, 0, 1412, 1413, 5, 68, 0, 0, 1413, 1414, 5, 101, 0, 0, 1414, 1415, 5, 112, 0, 0, 1415, 1416, 5, 108, 0, 0, 1416, 1417, 5, 111, 0, 0, 1417, 1418, 5, 121, 0, 0, 1418, 1419, 5, 109, 0, 0, 1419, 1420, 5, 101, 0, 0, 1420, 1421, 5, 110, 0, 0, 1421, 1422, 5, 116, 0, 0, 1422, 1423, 5, 80, 0, 0, 1423, 1424, 5, 111, 0, 0, 1424, 1425, 5, 115, 0, 0, 1425, 1426, 5, 116, 0, 0, 1426, 1427, 5, 112, 0, 0, 1427, 1428, 5, 114, 0, 0, 1428, 1429, 5, 111, 0, 0, 1429, 1430, 5, 99, 0, 0, 1430, 1431, 5, 101, 0, 0, 1431, 1432, 5, 115, 0, 0, 1432, 1433, 5, 115, 0, 0, 1433, 1434, 5, 105, 0, 0, 1434, 1435, 5, 110, 0, 0, 1435, 1436, 5, 103, 0, 0, 1436, 156, 1, 0, 0, 0, 1437, 1438, 5, 98, 0, 0, 1438, 1439, 5, 117, 0, 0, 1439, 1440, 5, 105, 0, 0, 1440, 1441, 5, 108, 0, 0, 1441, 1442, 5, 100, 0, 0, 1442, 1443, 5, 67, 0, 0, 1443, 1444, 5, 111, 0, 0, 1444, 1445, 5, 110, 0, 0, 1445, 1446, 5, 102, 0, 0, 1446, 1447, 5, 105, 0, 0, 1447, 1448, 5, 103, 0, 0, 1448, 1449, 5, 117, 0, 0, 1449, 1450, 5, 114, 0, 0, 1450, 1451, 5, 97, 0, 0, 1451, 1452, 5, 116, 0, 0, 1452, 1453, 5, 105, 0, 0, 1453, 1454, 5, 111, 0, 0, 1454, 1455, 5, 110, 0, 0, 1455, 1456, 5, 76, 0, 0, 1456, 1457, 5, 105, 0, 0, 1457, 1458, 5, 115, 0, 0, 1458, 1459, 5, 116, 0, 0, 1459, 158, 1, 0, 0, 0, 1460, 1461, 5, 98, 0, 0, 1461, 1462, 5, 117, 0, 0, 1462, 1463, 5, 105, 0, 0, 1463, 1464, 5, 108, 0, 0, 1464, 1465, 5, 100, 0, 0, 1465, 1466, 5, 80, 0, 0, 1466, 1467, 5, 104, 0, 0, 1467, 1468, 5, 97, 0, 0, 1468, 1469, 5, 115, 0, 0, 1469, 1470, 5, 101, 0, 0, 1470, 1471, 5, 115, 0, 0, 1471, 160, 1, 0, 0, 0, 1472, 1473, 5, 98, 0, 0, 1473, 1474, 5, 117, 0, 0, 1474, 1475, 5, 105, 0, 0, 1475, 1476, 5, 108, 0, 0, 1476, 1477, 5, 100, 0, 0, 1477, 1478, 5, 82, 0, 0, 1478, 1479, 5, 117, 0, 0, 1479, 1480, 5, 108, 0, 0, 1480, 1481, 5, 101, 0, 0, 1481, 1482, 5, 115, 0, 0, 1482, 162, 1, 0, 0, 0, 1483, 1484, 5, 98, 0, 0, 1484, 1485, 5, 117, 0, 0, 1485, 1486, 5, 105, 0, 0, 1486, 1487, 5, 108, 0, 0, 1487, 1488, 5, 100, 0, 0, 1488, 1489, 5, 65, 0, 0, 1489, 1490, 5, 114, 0, 0, 1490, 1491, 5, 103, 0, 0, 1491, 1492, 5, 117, 0, 0, 1492, 1493, 5, 109, 0, 0, 1493, 1494, 5, 101, 0, 0, 1494, 1495, 5, 110, 0, 0, 1495, 1496, 5, 116, 0, 0, 1496, 1497, 5, 115, 0, 0, 1497, 1498, 5, 83, 0, 0, 1498, 1499, 5, 116, 0, 0, 1499, 1500, 5, 114, 0, 0, 1500, 1501, 5, 105, 0, 0, 1501, 1502, 5, 110, 0, 0, 1502, 1503, 5, 103, 0, 0, 1503, 164, 1, 0, 0, 0, 1504, 1505, 5, 98, 0, 0, 1505, 1506, 5, 117, 0, 0, 1506, 1507, 5, 105, 0, 0, 1507, 1508, 5, 108, 0, 0, 1508, 1509, 5, 100, 0, 0, 1509, 1510, 5, 84, 0, 0, 1510, 1511, 5, 111, 0, 0, 1511, 1512, 5, 111, 0, 0, 1512, 1513, 5, 108, 0, 0, 1513, 1514, 5, 80, 0, 0, 1514, 1515, 5, 97, 0, 0, 1515, 1516, 5, 116, 0, 0, 1516, 1517, 5, 104, 0, 0, 1517, 166, 1, 0, 0, 0, 1518, 1519, 5, 98, 0, 0, 1519, 1520, 5, 117, 0, 0, 1520, 1521, 5, 105, 0, 0, 1521, 1522, 5, 108, 0, 0, 1522, 1523, 5, 100, 0, 0, 1523, 1524, 5, 87, 0, 0, 1524, 1525, 5, 111, 0, 0, 1525, 1526, 5, 114, 0, 0, 1526, 1527, 5, 107, 0, 0, 1527, 1528, 5, 105, 0, 0, 1528, 1529, 5, 110, 0, 0, 1529, 1530, 5, 103, 0, 0, 1530, 1531, 5, 68, 0, 0, 1531, 1532, 5, 105, 0, 0, 1532, 1533, 5, 114, 0, 0, 1533, 1534, 5, 101, 0, 0, 1534, 1535, 5, 99, 0, 0, 1535, 1536, 5, 116, 0, 0, 1536, 1537, 5, 111, 0, 0, 1537, 1538, 5, 114, 0, 0, 1538, 1539, 5, 121, 0, 0, 1539, 168, 1, 0, 0, 0, 1540, 1541, 5, 112, 0, 0, 1541, 1542, 5, 97, 0, 0, 1542, 1543, 5, 115, 0, 0, 1543, 1544, 5, 115, 0, 0, 1544, 1545, 5, 66, 0, 0, 1545, 1546, 5, 117, 0, 0, 1546, 1547, 5, 105, 0, 0, 1547, 1548, 5, 108, 0, 0, 1548, 1549, 5, 100, 0, 0, 1549, 1550, 5, 83, 0, 0, 1550, 1551, 5, 101, 0, 0, 1551, 1552, 5, 116, 0, 0, 1552, 1553, 5, 116, 0, 0, 1553, 1554, 5, 105, 0, 0, 1554, 1555, 5, 110, 0, 0, 1555, 1556, 5, 103, 0, 0, 1556, 1557, 5, 115, 0, 0, 1557, 1558, 5, 73, 0, 0, 1558, 1559, 5, 110, 0, 0, 1559, 1560, 5, 69, 0, 0, 1560, 1561, 5, 110, 0, 0, 1561, 1562, 5, 118, 0, 0, 1562, 1563, 5, 105, 0, 0, 1563, 1564, 5, 114, 0, 0, 1564, 1565, 5, 111, 0, 0, 1565, 1566, 5, 110, 0, 0, 1566, 1567, 5, 109, 0, 0, 1567, 1568, 5, 101, 0, 0, 1568, 1569, 5, 110, 0, 0, 1569, 1570, 5, 116, 0, 0, 1570, 170, 1, 0, 0, 0, 1571, 1572, 5, 100, 0, 0, 1572, 1573, 5, 101, 0, 0, 1573, 1574, 5, 112, 0, 0, 1574, 1575, 5, 101, 0, 0, 1575, 1576, 5, 110, 0, 0, 1576, 1577, 5, 100, 0, 0, 1577, 1578, 5, 101, 0, 0, 1578, 1579, 5, 110, 0, 0, 1579, 1580, 5, 99, 0, 0, 1580, 1581, 5, 105, 0, 0, 1581, 1582, 5, 101, 0, 0, 1582, 1583, 5, 115, 0, 0, 1583, 172, 1, 0, 0, 0, 1584, 1585, 5, 112, 0, 0, 1585, 1586, 5, 114, 0, 0, 1586, 1587, 5, 111, 0, 0, 1587, 1588, 5, 100, 0, 0, 1588, 1589, 5, 117, 0, 0, 1589, 1590, 5, 99, 0, 0, 1590, 1591, 5, 116, 0, 0, 1591, 1592, 5, 78, 0, 0, 1592, 1593, 5, 97, 0, 0, 1593, 1594, 5, 109, 0, 0, 1594, 1595, 5, 101, 0, 0, 1595, 174, 1, 0, 0, 0, 1596, 1597, 5, 112, 0, 0, 1597, 1598, 5, 114, 0, 0, 1598, 1599, 5, 111, 0, 0, 1599, 1600, 5, 100, 0, 0, 1600, 1601, 5, 117, 0, 0, 1601, 1602, 5, 99, 0, 0, 1602, 1603, 5, 116, 0, 0, 1603, 1604, 5, 82, 0, 0, 1604, 1605, 5, 101, 0, 0, 1605, 1606, 5, 102, 0, 0, 1606, 1607, 5, 101, 0, 0, 1607, 1608, 5, 114, 0, 0, 1608, 1609, 5, 101, 0, 0, 1609, 1610, 5, 110, 0, 0, 1610, 1611, 5, 99, 0, 0, 1611, 1612, 5, 101, 0, 0, 1612, 176, 1, 0, 0, 0, 1613, 1614, 5, 112, 0, 0, 1614, 1615, 5, 114, 0, 0, 1615, 1616, 5, 111, 0, 0, 1616, 1617, 5, 100, 0, 0, 1617, 1618, 5, 117, 0, 0, 1618, 1619, 5, 99, 0, 0, 1619, 1620, 5, 116, 0, 0, 1620, 1621, 5, 84, 0, 0, 1621, 1622, 5, 121, 0, 0, 1622, 1623, 5, 112, 0, 0, 1623, 1624, 5, 101, 0, 0, 1624, 178, 1, 0, 0, 0, 1625, 1626, 5, 108, 0, 0, 1626, 1627, 5, 105, 0, 0, 1627, 1628, 5, 110, 0, 0, 1628, 1629, 5, 101, 0, 0, 1629, 1630, 5, 69, 0, 0, 1630, 1631, 5, 110, 0, 0, 1631, 1632, 5, 100, 0, 0, 1632, 1633, 5, 105, 0, 0, 1633, 1634, 5, 110, 0, 0, 1634, 1635, 5, 103, 0, 0, 1635, 180, 1, 0, 0, 0, 1636, 1637, 5, 120, 0, 0, 1637, 1638, 5, 99, 0, 0, 1638, 1639, 5, 76, 0, 0, 1639, 1640, 5, 97, 0, 0, 1640, 1641, 5, 110, 0, 0, 1641, 1642, 5, 103, 0, 0, 1642, 1643, 5, 117, 0, 0, 1643, 1644, 5, 97, 0, 0, 1644, 1645, 5, 103, 0, 0, 1645, 1646, 5, 101, 0, 0, 1646, 1647, 5, 83, 0, 0, 1647, 1648, 5, 112, 0, 0, 1648, 1649, 5, 101, 0, 0, 1649, 1650, 5, 99, 0, 0, 1650, 1651, 5, 105, 0, 0, 1651, 1652, 5, 102, 0, 0, 1652, 1653, 5, 105, 0, 0, 1653, 1654, 5, 99, 0, 0, 1654, 1655, 5, 97, 0, 0, 1655, 1656, 5, 116, 0, 0, 1656, 1657, 5, 105, 0, 0, 1657, 1658, 5, 111, 0, 0, 1658, 1659, 5, 110, 0, 0, 1659, 1660, 5, 73, 0, 0, 1660, 1661, 5, 100, 0, 0, 1661, 1662, 5, 101, 0, 0, 1662, 1663, 5, 110, 0, 0, 1663, 1664, 5, 116, 0, 0, 1664, 1665, 5, 105, 0, 0, 1665, 1666, 5, 102, 0, 0, 1666, 1667, 5, 105, 0, 0, 1667, 1668, 5, 101, 0, 0, 1668, 1669, 5, 114, 0, 0, 1669, 182, 1, 0, 0, 0, 1670, 1671, 5, 112, 0, 0, 1671, 1672, 5, 108, 0, 0, 1672, 1673, 5, 105, 0, 0, 1673, 1674, 5, 115, 0, 0, 1674, 1675, 5, 116, 0, 0, 1675, 1676, 5, 83, 0, 0, 1676, 1677, 5, 116, 0, 0, 1677, 1678, 5, 114, 0, 0, 1678, 1679, 5, 117, 0, 0, 1679, 1680, 5, 99, 0, 0, 1680, 1681, 5, 116, 0, 0, 1681, 1682, 5, 117, 0, 0, 1682, 1683, 5, 114, 0, 0, 1683, 1684, 5, 101, 0, 0, 1684, 1685, 5, 68, 0, 0, 1685, 1686, 5, 101, 0, 0, 1686, 1687, 5, 102, 0, 0, 1687, 1688, 5, 105, 0, 0, 1688, 1689, 5, 110, 0, 0, 1689, 1690, 5, 105, 0, 0, 1690, 1691, 5, 116, 0, 0, 1691, 1692, 5, 105, 0, 0, 1692, 1693, 5, 111, 0, 0, 1693, 1694, 5, 110, 0, 0, 1694, 1695, 5, 73, 0, 0, 1695, 1696, 5, 100, 0, 0, 1696, 1697, 5, 101, 0, 0, 1697, 1698, 5, 110, 0, 0, 1698, 1699, 5, 116, 0, 0, 1699, 1700, 5, 105, 0, 0, 1700, 1701, 5, 102, 0, 0, 1701, 1702, 5, 105, 0, 0, 1702, 1703, 5, 101, 0, 0, 1703, 1704, 5, 114, 0, 0, 1704, 184, 1, 0, 0, 0, 1705, 1706, 5, 114, 0, 0, 1706, 1707, 5, 101, 0, 0, 1707, 1708, 5, 102, 0, 0, 1708, 1709, 5, 84, 0, 0, 1709, 1710, 5, 121, 0, 0, 1710, 1711, 5, 112, 0, 0, 1711, 1712, 5, 101, 0, 0, 1712, 186, 1, 0, 0, 0, 1713, 1714, 5, 99, 0, 0, 1714, 1715, 5, 111, 0, 0, 1715, 1716, 5, 109, 0, 0, 1716, 1717, 5, 112, 0, 0, 1717, 1718, 5, 105, 0, 0, 1718, 1719, 5, 108, 0, 0, 1719, 1720, 5, 101, 0, 0, 1720, 1721, 5, 114, 0, 0, 1721, 1722, 5, 83, 0, 0, 1722, 1723, 5, 112, 0, 0, 1723, 1724, 5, 101, 0, 0, 1724, 1725, 5, 99, 0, 0, 1725, 188, 1, 0, 0, 0, 1726, 1727, 5, 102, 0, 0, 1727, 1728, 5, 105, 0, 0, 1728, 1729, 5, 108, 0, 0, 1729, 1730, 5, 101, 0, 0, 1730, 1731, 5, 80, 0, 0, 1731, 1732, 5, 97, 0, 0, 1732, 1733, 5, 116, 0, 0, 1733, 1734, 5, 116, 0, 0, 1734, 1735, 5, 101, 0, 0, 1735, 1736, 5, 114, 0, 0, 1736, 1737, 5, 110, 0, 0, 1737, 1738, 5, 115, 0, 0, 1738, 190, 1, 0, 0, 0, 1739, 1740, 5, 105, 0, 0, 1740, 1741, 5, 110, 0, 0, 1741, 1742, 5, 112, 0, 0, 1742, 1743, 5, 117, 0, 0, 1743, 1744, 5, 116, 0, 0, 1744, 1745, 5, 70, 0, 0, 1745, 1746, 5, 105, 0, 0, 1746, 1747, 5, 108, 0, 0, 1747, 1748, 5, 101, 0, 0, 1748, 1749, 5, 115, 0, 0, 1749, 192, 1, 0, 0, 0, 1750, 1751, 5, 105, 0, 0, 1751, 1752, 5, 115, 0, 0, 1752, 1753, 5, 69, 0, 0, 1753, 1754, 5, 100, 0, 0, 1754, 1755, 5, 105, 0, 0, 1755, 1756, 5, 116, 0, 0, 1756, 1757, 5, 97, 0, 0, 1757, 1758, 5, 98, 0, 0, 1758, 1759, 5, 108, 0, 0, 1759, 1760, 5, 101, 0, 0, 1760, 194, 1, 0, 0, 0, 1761, 1762, 5, 111, 0, 0, 1762, 1763, 5, 117, 0, 0, 1763, 1764, 5, 116, 0, 0, 1764, 1765, 5, 112, 0, 0, 1765, 1766, 5, 117, 0, 0, 1766, 1767, 5, 116, 0, 0, 1767, 1768, 5, 70, 0, 0, 1768, 1769, 5, 105, 0, 0, 1769, 1770, 5, 108, 0, 0, 1770, 1771, 5, 101, 0, 0, 1771, 1772, 5, 115, 0, 0, 1772, 196, 1, 0, 0, 0, 1773, 1774, 5, 114, 0, 0, 1774, 1775, 5, 117, 0, 0, 1775, 1776, 5, 110, 0, 0, 1776, 1777, 5, 79, 0, 0, 1777, 1778, 5, 110, 0, 0, 1778, 1779, 5, 99, 0, 0, 1779, 1780, 5, 101, 0, 0, 1780, 1781, 5, 80, 0, 0, 1781, 1782, 5, 101, 0, 0, 1782, 1783, 5, 114, 0, 0, 1783, 1784, 5, 65, 0, 0, 1784, 1785, 5, 114, 0, 0, 1785, 1786, 5, 99, 0, 0, 1786, 1787, 5, 104, 0, 0, 1787, 1788, 5, 105, 0, 0, 1788, 1789, 5, 116, 0, 0, 1789, 1790, 5, 101, 0, 0, 1790, 1791, 5, 99, 0, 0, 1791, 1792, 5, 116, 0, 0, 1792, 1793, 5, 117, 0, 0, 1793, 1794, 5, 114, 0, 0, 1794, 1795, 5, 101, 0, 0, 1795, 198, 1, 0, 0, 0, 1796, 1797, 5, 115, 0, 0, 1797, 1798, 5, 99, 0, 0, 1798, 1799, 5, 114, 0, 0, 1799, 1800, 5, 105, 0, 0, 1800, 1801, 5, 112, 0, 0, 1801, 1802, 5, 116, 0, 0, 1802, 200, 1, 0, 0, 0, 1803, 1804, 5, 97, 0, 0, 1804, 1805, 5, 116, 0, 0, 1805, 1806, 5, 116, 0, 0, 1806, 1807, 5, 114, 0, 0, 1807, 1808, 5, 105, 0, 0, 1808, 1809, 5, 98, 0, 0, 1809, 1810, 5, 117, 0, 0, 1810, 1811, 5, 116, 0, 0, 1811, 1812, 5, 101, 0, 0, 1812, 1813, 5, 115, 0, 0, 1813, 202, 1, 0, 0, 0, 1814, 1815, 5, 76, 0, 0, 1815, 1816, 5, 97, 0, 0, 1816, 1817, 5, 115, 0, 0, 1817, 1818, 5, 116, 0, 0, 1818, 1819, 5, 83, 0, 0, 1819, 1820, 5, 119, 0, 0, 1820, 1821, 5, 105, 0, 0, 1821, 1822, 5, 102, 0, 0, 1822, 1823, 5, 116, 0, 0, 1823, 1824, 5, 77, 0, 0, 1824, 1825, 5, 105, 0, 0, 1825, 1826, 5, 103, 0, 0, 1826, 1827, 5, 114, 0, 0, 1827, 1828, 5, 97, 0, 0, 1828, 1829, 5, 116, 0, 0, 1829, 1830, 5, 105, 0, 0, 1830, 1831, 5, 111, 0, 0, 1831, 1832, 5, 110, 0, 0, 1832, 204, 1, 0, 0, 0, 1833, 1834, 5, 68, 0, 0, 1834, 1835, 5, 101, 0, 0, 1835, 1836, 5, 102, 0, 0, 1836, 1837, 5, 97, 0, 0, 1837, 1838, 5, 117, 0, 0, 1838, 1839, 5, 108, 0, 0, 1839, 1840, 5, 116, 0, 0, 1840, 1841, 5, 66, 0, 0, 1841, 1842, 5, 117, 0, 0, 1842, 1843, 5, 105, 0, 0, 1843, 1844, 5, 108, 0, 0, 1844, 1845, 5, 100, 0, 0, 1845, 1846, 5, 83, 0, 0, 1846, 1847, 5, 121, 0, 0, 1847, 1848, 5, 115, 0, 0, 1848, 1849, 5, 116, 0, 0, 1849, 1850, 5, 101, 0, 0, 1850, 1851, 5, 109, 0, 0, 1851, 1852, 5, 84, 0, 0, 1852, 1853, 5, 121, 0, 0, 1853, 1854, 5, 112, 0, 0, 1854, 1855, 5, 101, 0, 0, 1855, 1856, 5, 70, 0, 0, 1856, 1857, 5, 111, 0, 0, 1857, 1858, 5, 114, 0, 0, 1858, 1859, 5, 87, 0, 0, 1859, 1860, 5, 111, 0, 0, 1860, 1861, 5, 114, 0, 0, 1861, 1862, 5, 107, 0, 0, 1862, 1863, 5, 115, 0, 0, 1863, 1864, 5, 112, 0, 0, 1864, 1865, 5, 97, 0, 0, 1865, 1866, 5, 99, 0, 0, 1866, 1867, 5, 101, 0, 0, 1867, 206, 1, 0, 0, 0, 1868, 1869, 5, 76, 0, 0, 1869, 1870, 5, 97, 0, 0, 1870, 1871, 5, 115, 0, 0, 1871, 1872, 5, 116, 0, 0, 1872, 1873, 5, 83, 0, 0, 1873, 1874, 5, 119, 0, 0, 1874, 1875, 5, 105, 0, 0, 1875, 1876, 5, 102, 0, 0, 1876, 1877, 5, 116, 0, 0, 1877, 1878, 5, 85, 0, 0, 1878, 1879, 5, 112, 0, 0, 1879, 1880, 5, 100, 0, 0, 1880, 1881, 5, 97, 0, 0, 1881, 1882, 5, 116, 0, 0, 1882, 1883, 5, 101, 0, 0, 1883, 1884, 5, 67, 0, 0, 1884, 1885, 5, 104, 0, 0, 1885, 1886, 5, 101, 0, 0, 1886, 1887, 5, 99, 0, 0, 1887, 1888, 5, 107, 0, 0, 1888, 208, 1, 0, 0, 0, 1889, 1890, 5, 66, 0, 0, 1890, 1891, 5, 117, 0, 0, 1891, 1892, 5, 105, 0, 0, 1892, 1893, 5, 108, 0, 0, 1893, 1894, 5, 100, 0, 0, 1894, 1895, 5, 73, 0, 0, 1895, 1896, 5, 110, 0, 0, 1896, 1897, 5, 100, 0, 0, 1897, 1898, 5, 101, 0, 0, 1898, 1899, 5, 112, 0, 0, 1899, 1900, 5, 101, 0, 0, 1900, 1901, 5, 110, 0, 0, 1901, 1902, 5, 100, 0, 0, 1902, 1903, 5, 101, 0, 0, 1903, 1904, 5, 110, 0, 0, 1904, 1905, 5, 116, 0, 0, 1905, 1906, 5, 84, 0, 0, 1906, 1907, 5, 97, 0, 0, 1907, 1908, 5, 114, 0, 0, 1908, 1909, 5, 103, 0, 0, 1909, 1910, 5, 101, 0, 0, 1910, 1911, 5, 116, 0, 0, 1911, 1912, 5, 115, 0, 0, 1912, 1913, 5, 73, 0, 0, 1913, 1914, 5, 110, 0, 0, 1914, 1915, 5, 80, 0, 0, 1915, 1916, 5, 97, 0, 0, 1916, 1917, 5, 114, 0, 0, 1917, 1918, 5, 97, 0, 0, 1918, 1919, 5, 108, 0, 0, 1919, 1920, 5, 108, 0, 0, 1920, 1921, 5, 101, 0, 0, 1921, 1922, 5, 108, 0, 0, 1922, 210, 1, 0, 0, 0, 1923, 1924, 5, 76, 0, 0, 1924, 1925, 5, 97, 0, 0, 1925, 1926, 5, 115, 0, 0, 1926, 1927, 5, 116, 0, 0, 1927, 1928, 5, 84, 0, 0, 1928, 1929, 5, 101, 0, 0, 1929, 1930, 5, 115, 0, 0, 1930, 1931, 5, 116, 0, 0, 1931, 1932, 5, 105, 0, 0, 1932, 1933, 5, 110, 0, 0, 1933, 1934, 5, 103, 0, 0, 1934, 1935, 5, 85, 0, 0, 1935, 1936, 5, 112, 0, 0, 1936, 1937, 5, 103, 0, 0, 1937, 1938, 5, 114, 0, 0, 1938, 1939, 5, 97, 0, 0, 1939, 1940, 5, 100, 0, 0, 1940, 1941, 5, 101, 0, 0, 1941, 1942, 5, 67, 0, 0, 1942, 1943, 5, 104, 0, 0, 1943, 1944, 5, 101, 0, 0, 1944, 1945, 5, 99, 0, 0, 1945, 1946, 5, 107, 0, 0, 1946, 212, 1, 0, 0, 0, 1947, 1948, 5, 76, 0, 0, 1948, 1949, 5, 97, 0, 0, 1949, 1950, 5, 115, 0, 0, 1950, 1951, 5, 116, 0, 0, 1951, 1952, 5, 85, 0, 0, 1952, 1953, 5, 112, 0, 0, 1953, 1954, 5, 103, 0, 0, 1954, 1955, 5, 114, 0, 0, 1955, 1956, 5, 97, 0, 0, 1956, 1957, 5, 100, 0, 0, 1957, 1958, 5, 101, 0, 0, 1958, 1959, 5, 67, 0, 0, 1959, 1960, 5, 104, 0, 0, 1960, 1961, 5, 101, 0, 0, 1961, 1962, 5, 99, 0, 0, 1962, 1963, 5, 107, 0, 0, 1963, 214, 1, 0, 0, 0, 1964, 1965, 5, 79, 0, 0, 1965, 1966, 5, 82, 0, 0, 1966, 1967, 5, 71, 0, 0, 1967, 1968, 5, 65, 0, 0, 1968, 1969, 5, 78, 0, 0, 1969, 1970, 5, 73, 0, 0, 1970, 1971, 5, 90, 0, 0, 1971, 1972, 5, 65, 0, 0, 1972, 1973, 5, 84, 0, 0, 1973, 1974, 5, 73, 0, 0, 1974, 1975, 5, 79, 0, 0, 1975, 1976, 5, 78, 0, 0, 1976, 1977, 5, 78, 0, 0, 1977, 1978, 5, 65, 0, 0, 1978, 1979, 5, 77, 0, 0, 1979, 1980, 5, 69, 0, 0, 1980, 216, 1, 0, 0, 0, 1981, 1982, 5, 84, 0, 0, 1982, 1983, 5, 97, 0, 0, 1983, 1984, 5, 114, 0, 0, 1984, 1985, 5, 103, 0, 0, 1985, 1986, 5, 101, 0, 0, 1986, 1987, 5, 116, 0, 0, 1987, 1988, 5, 65, 0, 0, 1988, 1989, 5, 116, 0, 0, 1989, 1990, 5, 116, 0, 0, 1990, 1991, 5, 114, 0, 0, 1991, 1992, 5, 105, 0, 0, 1992, 1993, 5, 98, 0, 0, 1993, 1994, 5, 117, 0, 0, 1994, 1995, 5, 116, 0, 0, 1995, 1996, 5, 101, 0, 0, 1996, 1997, 5, 115, 0, 0, 1997, 218, 1, 0, 0, 0, 1998, 1999, 5, 67, 0, 0, 1999, 2000, 5, 114, 0, 0, 2000, 2001, 5, 101, 0, 0, 2001, 2002, 5, 97, 0, 0, 2002, 2003, 5, 116, 0, 0, 2003, 2004, 5, 101, 0, 0, 2004, 2005, 5, 100, 0, 0, 2005, 2006, 5, 79, 0, 0, 2006, 2007, 5, 110, 0, 0, 2007, 2008, 5, 84, 0, 0, 2008, 2009, 5, 111, 0, 0, 2009, 2010, 5, 111, 0, 0, 2010, 2011, 5, 108, 0, 0, 2011, 2012, 5, 115, 0, 0, 2012, 2013, 5, 86, 0, 0, 2013, 2014, 5, 101, 0, 0, 2014, 2015, 5, 114, 0, 0, 2015, 2016, 5, 115, 0, 0, 2016, 2017, 5, 105, 0, 0, 2017, 2018, 5, 111, 0, 0, 2018, 2019, 5, 110, 0, 0, 2019, 220, 1, 0, 0, 0, 2020, 2021, 5, 84, 0, 0, 2021, 2022, 5, 101, 0, 0, 2022, 2023, 5, 115, 0, 0, 2023, 2024, 5, 116, 0, 0, 2024, 2025, 5, 84, 0, 0, 2025, 2026, 5, 97, 0, 0, 2026, 2027, 5, 114, 0, 0, 2027, 2028, 5, 103, 0, 0, 2028, 2029, 5, 101, 0, 0, 2029, 2030, 5, 116, 0, 0, 2030, 2031, 5, 73, 0, 0, 2031, 2032, 5, 68, 0, 0, 2032, 222, 1, 0, 0, 0, 2033, 2034, 5, 68, 0, 0, 2034, 2035, 5, 101, 0, 0, 2035, 2036, 5, 118, 0, 0, 2036, 2037, 5, 101, 0, 0, 2037, 2038, 5, 108, 0, 0, 2038, 2039, 5, 111, 0, 0, 2039, 2040, 5, 112, 0, 0, 2040, 2041, 5, 109, 0, 0, 2041, 2042, 5, 101, 0, 0, 2042, 2043, 5, 110, 0, 0, 2043, 2044, 5, 116, 0, 0, 2044, 2045, 5, 84, 0, 0, 2045, 2046, 5, 101, 0, 0, 2046, 2047, 5, 97, 0, 0, 2047, 2048, 5, 109, 0, 0, 2048, 224, 1, 0, 0, 0, 2049, 2050, 5, 68, 0, 0, 2050, 2051, 5, 101, 0, 0, 2051, 2052, 5, 118, 0, 0, 2052, 2053, 5, 101, 0, 0, 2053, 2054, 5, 108, 0, 0, 2054, 2055, 5, 111, 0, 0, 2055, 2056, 5, 112, 0, 0, 2056, 2057, 5, 109, 0, 0, 2057, 2058, 5, 101, 0, 0, 2058, 2059, 5, 110, 0, 0, 2059, 2060, 5, 116, 0, 0, 2060, 2061, 5, 84, 0, 0, 2061, 2062, 5, 101, 0, 0, 2062, 2063, 5, 97, 0, 0, 2063, 2064, 5, 109, 0, 0, 2064, 2065, 5, 78, 0, 0, 2065, 2066, 5, 97, 0, 0, 2066, 2067, 5, 109, 0, 0, 2067, 2068, 5, 101, 0, 0, 2068, 226, 1, 0, 0, 0, 2069, 2070, 5, 80, 0, 0, 2070, 2071, 5, 114, 0, 0, 2071, 2072, 5, 111, 0, 0, 2072, 2073, 5, 118, 0, 0, 2073, 2074, 5, 105, 0, 0, 2074, 2075, 5, 115, 0, 0, 2075, 2076, 5, 105, 0, 0, 2076, 2077, 5, 111, 0, 0, 2077, 2078, 5, 110, 0, 0, 2078, 2079, 5, 105, 0, 0, 2079, 2080, 5, 110, 0, 0, 2080, 2081, 5, 103, 0, 0, 2081, 2082, 5, 83, 0, 0, 2082, 2083, 5, 116, 0, 0, 2083, 2084, 5, 121, 0, 0, 2084, 2085, 5, 108, 0, 0, 2085, 2086, 5, 101, 0, 0, 2086, 228, 1, 0, 0, 0, 2087, 2088, 5, 99, 0, 0, 2088, 2089, 5, 111, 0, 0, 2089, 2090, 5, 109, 0, 0, 2090, 2091, 5, 112, 0, 0, 2091, 2092, 5, 97, 0, 0, 2092, 2093, 5, 116, 0, 0, 2093, 2094, 5, 105, 0, 0, 2094, 2095, 5, 98, 0, 0, 2095, 2096, 5, 105, 0, 0, 2096, 2097, 5, 108, 0, 0, 2097, 2098, 5, 105, 0, 0, 2098, 2099, 5, 116, 0, 0, 2099, 2100, 5, 121, 0, 0, 2100, 2101, 5, 86, 0, 0, 2101, 2102, 5, 101, 0, 0, 2102, 2103, 5, 114, 0, 0, 2103, 2104, 5, 115, 0, 0, 2104, 2105, 5, 105, 0, 0, 2105, 2106, 5, 111, 0, 0, 2106, 2107, 5, 110, 0, 0, 2107, 230, 1, 0, 0, 0, 2108, 2109, 5, 100, 0, 0, 2109, 2110, 5, 101, 0, 0, 2110, 2111, 5, 118, 0, 0, 2111, 2112, 5, 101, 0, 0, 2112, 2113, 5, 108, 0, 0, 2113, 2114, 5, 111, 0, 0, 2114, 2115, 5, 112, 0, 0, 2115, 2116, 5, 109, 0, 0, 2116, 2117, 5, 101, 0, 0, 2117, 2118, 5, 110, 0, 0, 2118, 2119, 5, 116, 0, 0, 2119, 2120, 5, 82, 0, 0, 2120, 2121, 5, 101, 0, 0, 2121, 2122, 5, 103, 0, 0, 2122, 2123, 5, 105, 0, 0, 2123, 2124, 5, 111, 0, 0, 2124, 2125, 5, 110, 0, 0, 2125, 232, 1, 0, 0, 0, 2126, 2127, 5, 104, 0, 0, 2127, 2128, 5, 97, 0, 0, 2128, 2129, 5, 115, 0, 0, 2129, 2130, 5, 83, 0, 0, 2130, 2131, 5, 99, 0, 0, 2131, 2132, 5, 97, 0, 0, 2132, 2133, 5, 110, 0, 0, 2133, 2134, 5, 110, 0, 0, 2134, 2135, 5, 101, 0, 0, 2135, 2136, 5, 100, 0, 0, 2136, 2137, 5, 70, 0, 0, 2137, 2138, 5, 111, 0, 0, 2138, 2139, 5, 114, 0, 0, 2139, 2140, 5, 69, 0, 0, 2140, 2141, 5, 110, 0, 0, 2141, 2142, 5, 99, 0, 0, 2142, 2143, 5, 111, 0, 0, 2143, 2144, 5, 100, 0, 0, 2144, 2145, 5, 105, 0, 0, 2145, 2146, 5, 110, 0, 0, 2146, 2147, 5, 103, 0, 0, 2147, 2148, 5, 115, 0, 0, 2148, 234, 1, 0, 0, 0, 2149, 2150, 5, 107, 0, 0, 2150, 2151, 5, 110, 0, 0, 2151, 2152, 5, 111, 0, 0, 2152, 2153, 5, 119, 0, 0, 2153, 2154, 5, 110, 0, 0, 2154, 2155, 5, 82, 0, 0, 2155, 2156, 5, 101, 0, 0, 2156, 2157, 5, 103, 0, 0, 2157, 2158, 5, 105, 0, 0, 2158, 2159, 5, 111, 0, 0, 2159, 2160, 5, 110, 0, 0, 2160, 2161, 5, 115, 0, 0, 2161, 236, 1, 0, 0, 0, 2162, 2163, 5, 109, 0, 0, 2163, 2164, 5, 97, 0, 0, 2164, 2165, 5, 105, 0, 0, 2165, 2166, 5, 110, 0, 0, 2166, 2167, 5, 71, 0, 0, 2167, 2168, 5, 114, 0, 0, 2168, 2169, 5, 111, 0, 0, 2169, 2170, 5, 117, 0, 0, 2170, 2171, 5, 112, 0, 0, 2171, 238, 1, 0, 0, 0, 2172, 2173, 5, 112, 0, 0, 2173, 2174, 5, 114, 0, 0, 2174, 2175, 5, 111, 0, 0, 2175, 2176, 5, 100, 0, 0, 2176, 2177, 5, 117, 0, 0, 2177, 2178, 5, 99, 0, 0, 2178, 2179, 5, 116, 0, 0, 2179, 2180, 5, 82, 0, 0, 2180, 2181, 5, 101, 0, 0, 2181, 2182, 5, 102, 0, 0, 2182, 2183, 5, 71, 0, 0, 2183, 2184, 5, 114, 0, 0, 2184, 2185, 5, 111, 0, 0, 2185, 2186, 5, 117, 0, 0, 2186, 2187, 5, 112, 0, 0, 2187, 240, 1, 0, 0, 0, 2188, 2189, 5, 112, 0, 0, 2189, 2190, 5, 97, 0, 0, 2190, 2191, 5, 99, 0, 0, 2191, 2192, 5, 107, 0, 0, 2192, 2193, 5, 97, 0, 0, 2193, 2194, 5, 103, 0, 0, 2194, 2195, 5, 101, 0, 0, 2195, 2196, 5, 82, 0, 0, 2196, 2197, 5, 101, 0, 0, 2197, 2198, 5, 102, 0, 0, 2198, 2199, 5, 101, 0, 0, 2199, 2200, 5, 114, 0, 0, 2200, 2201, 5, 101, 0, 0, 2201, 2202, 5, 110, 0, 0, 2202, 2203, 5, 99, 0, 0, 2203, 2204, 5, 101, 0, 0, 2204, 2205, 5, 115, 0, 0, 2205, 242, 1, 0, 0, 0, 2206, 2207, 5, 112, 0, 0, 2207, 2208, 5, 114, 0, 0, 2208, 2209, 5, 101, 0, 0, 2209, 2210, 5, 102, 0, 0, 2210, 2211, 5, 101, 0, 0, 2211, 2212, 5, 114, 0, 0, 2212, 2213, 5, 114, 0, 0, 2213, 2214, 5, 101, 0, 0, 2214, 2215, 5, 100, 0, 0, 2215, 2216, 5, 80, 0, 0, 2216, 2217, 5, 114, 0, 0, 2217, 2218, 5, 111, 0, 0, 2218, 2219, 5, 106, 0, 0, 2219, 2220, 5, 101, 0, 0, 2220, 2221, 5, 99, 0, 0, 2221, 2222, 5, 116, 0, 0, 2222, 2223, 5, 79, 0, 0, 2223, 2224, 5, 98, 0, 0, 2224, 2225, 5, 106, 0, 0, 2225, 2226, 5, 101, 0, 0, 2226, 2227, 5, 99, 0, 0, 2227, 2228, 5, 116, 0, 0, 2228, 2229, 5, 86, 0, 0, 2229, 2230, 5, 101, 0, 0, 2230, 2231, 5, 114, 0, 0, 2231, 2232, 5, 115, 0, 0, 2232, 2233, 5, 105, 0, 0, 2233, 2234, 5, 111, 0, 0, 2234, 2235, 5, 110, 0, 0, 2235, 244, 1, 0, 0, 0, 2236, 2237, 5, 112, 0, 0, 2237, 2238, 5, 114, 0, 0, 2238, 2239, 5, 111, 0, 0, 2239, 2240, 5, 106, 0, 0, 2240, 2241, 5, 101, 0, 0, 2241, 2242, 5, 99, 0, 0, 2242, 2243, 5, 116, 0, 0, 2243, 2244, 5, 68, 0, 0, 2244, 2245, 5, 105, 0, 0, 2245, 2246, 5, 114, 0, 0, 2246, 2247, 5, 80, 0, 0, 2247, 2248, 5, 97, 0, 0, 2248, 2249, 5, 116, 0, 0, 2249, 2250, 5, 104, 0, 0, 2250, 246, 1, 0, 0, 0, 2251, 2252, 5, 112, 0, 0, 2252, 2253, 5, 114, 0, 0, 2253, 2254, 5, 111, 0, 0, 2254, 2255, 5, 106, 0, 0, 2255, 2256, 5, 101, 0, 0, 2256, 2257, 5, 99, 0, 0, 2257, 2258, 5, 116, 0, 0, 2258, 2259, 5, 82, 0, 0, 2259, 2260, 5, 101, 0, 0, 2260, 2261, 5, 102, 0, 0, 2261, 2262, 5, 101, 0, 0, 2262, 2263, 5, 114, 0, 0, 2263, 2264, 5, 101, 0, 0, 2264, 2265, 5, 110, 0, 0, 2265, 2266, 5, 99, 0, 0, 2266, 2267, 5, 101, 0, 0, 2267, 2268, 5, 115, 0, 0, 2268, 248, 1, 0, 0, 0, 2269, 2270, 5, 112, 0, 0, 2270, 2271, 5, 114, 0, 0, 2271, 2272, 5, 111, 0, 0, 2272, 2273, 5, 106, 0, 0, 2273, 2274, 5, 101, 0, 0, 2274, 2275, 5, 99, 0, 0, 2275, 2276, 5, 116, 0, 0, 2276, 2277, 5, 82, 0, 0, 2277, 2278, 5, 111, 0, 0, 2278, 2279, 5, 111, 0, 0, 2279, 2280, 5, 116, 0, 0, 2280, 250, 1, 0, 0, 0, 2281, 2282, 5, 116, 0, 0, 2282, 2283, 5, 97, 0, 0, 2283, 2284, 5, 114, 0, 0, 2284, 2285, 5, 103, 0, 0, 2285, 2286, 5, 101, 0, 0, 2286, 2287, 5, 116, 0, 0, 2287, 2288, 5, 115, 0, 0, 2288, 252, 1, 0, 0, 0, 2289, 2290, 5, 105, 0, 0, 2290, 2291, 5, 110, 0, 0, 2291, 2292, 5, 112, 0, 0, 2292, 2293, 5, 117, 0, 0, 2293, 2294, 5, 116, 0, 0, 2294, 2295, 5, 70, 0, 0, 2295, 2296, 5, 105, 0, 0, 2296, 2297, 5, 108, 0, 0, 2297, 2298, 5, 101, 0, 0, 2298, 2299, 5, 76, 0, 0, 2299, 2300, 5, 105, 0, 0, 2300, 2301, 5, 115, 0, 0, 2301, 2302, 5, 116, 0, 0, 2302, 2303, 5, 80, 0, 0, 2303, 2304, 5, 97, 0, 0, 2304, 2305, 5, 116, 0, 0, 2305, 2306, 5, 104, 0, 0, 2306, 2307, 5, 115, 0, 0, 2307, 254, 1, 0, 0, 0, 2308, 2309, 5, 105, 0, 0, 2309, 2310, 5, 110, 0, 0, 2310, 2311, 5, 112, 0, 0, 2311, 2312, 5, 117, 0, 0, 2312, 2313, 5, 116, 0, 0, 2313, 2314, 5, 80, 0, 0, 2314, 2315, 5, 97, 0, 0, 2315, 2316, 5, 116, 0, 0, 2316, 2317, 5, 104, 0, 0, 2317, 2318, 5, 115, 0, 0, 2318, 256, 1, 0, 0, 0, 2319, 2320, 5, 111, 0, 0, 2320, 2321, 5, 117, 0, 0, 2321, 2322, 5, 116, 0, 0, 2322, 2323, 5, 112, 0, 0, 2323, 2324, 5, 117, 0, 0, 2324, 2325, 5, 116, 0, 0, 2325, 2326, 5, 70, 0, 0, 2326, 2327, 5, 105, 0, 0, 2327, 2328, 5, 108, 0, 0, 2328, 2329, 5, 101, 0, 0, 2329, 2330, 5, 76, 0, 0, 2330, 2331, 5, 105, 0, 0, 2331, 2332, 5, 115, 0, 0, 2332, 2333, 5, 116, 0, 0, 2333, 2334, 5, 80, 0, 0, 2334, 2335, 5, 97, 0, 0, 2335, 2336, 5, 116, 0, 0, 2336, 2337, 5, 104, 0, 0, 2337, 2338, 5, 115, 0, 0, 2338, 258, 1, 0, 0, 0, 2339, 2340, 5, 111, 0, 0, 2340, 2341, 5, 117, 0, 0, 2341, 2342, 5, 116, 0, 0, 2342, 2343, 5, 112, 0, 0, 2343, 2344, 5, 117, 0, 0, 2344, 2345, 5, 116, 0, 0, 2345, 2346, 5, 80, 0, 0, 2346, 2347, 5, 97, 0, 0, 2347, 2348, 5, 116, 0, 0, 2348, 2349, 5, 104, 0, 0, 2349, 2350, 5, 115, 0, 0, 2350, 260, 1, 0, 0, 0, 2351, 2352, 5, 115, 0, 0, 2352, 2353, 5, 104, 0, 0, 2353, 2354, 5, 101, 0, 0, 2354, 2355, 5, 108, 0, 0, 2355, 2356, 5, 108, 0, 0, 2356, 2357, 5, 80, 0, 0, 2357, 2358, 5, 97, 0, 0, 2358, 2359, 5, 116, 0, 0, 2359, 2360, 5, 104, 0, 0, 2360, 262, 1, 0, 0, 0, 2361, 2362, 5, 115, 0, 0, 2362, 2363, 5, 104, 0, 0, 2363, 2364, 5, 101, 0, 0, 2364, 2365, 5, 108, 0, 0, 2365, 2366, 5, 108, 0, 0, 2366, 264, 1, 0, 0, 0, 2367, 2368, 5, 115, 0, 0, 2368, 2369, 5, 104, 0, 0, 2369, 2370, 5, 101, 0, 0, 2370, 2371, 5, 108, 0, 0, 2371, 2372, 5, 108, 0, 0, 2372, 2373, 5, 83, 0, 0, 2373, 2374, 5, 99, 0, 0, 2374, 2375, 5, 114, 0, 0, 2375, 2376, 5, 105, 0, 0, 2376, 2377, 5, 112, 0, 0, 2377, 2378, 5, 116, 0, 0, 2378, 266, 1, 0, 0, 0, 2379, 2380, 5, 115, 0, 0, 2380, 2381, 5, 104, 0, 0, 2381, 2382, 5, 111, 0, 0, 2382, 2383, 5, 119, 0, 0, 2383, 2384, 5, 69, 0, 0, 2384, 2385, 5, 110, 0, 0, 2385, 2386, 5, 118, 0, 0, 2386, 2387, 5, 86, 0, 0, 2387, 2388, 5, 97, 0, 0, 2388, 2389, 5, 114, 0, 0, 2389, 2390, 5, 115, 0, 0, 2390, 2391, 5, 73, 0, 0, 2391, 2392, 5, 110, 0, 0, 2392, 2393, 5, 76, 0, 0, 2393, 2394, 5, 111, 0, 0, 2394, 2395, 5, 103, 0, 0, 2395, 268, 1, 0, 0, 0, 2396, 2397, 5, 116, 0, 0, 2397, 2398, 5, 97, 0, 0, 2398, 2399, 5, 114, 0, 0, 2399, 2400, 5, 103, 0, 0, 2400, 2401, 5, 101, 0, 0, 2401, 2402, 5, 116, 0, 0, 2402, 270, 1, 0, 0, 0, 2403, 2404, 5, 116, 0, 0, 2404, 2405, 5, 97, 0, 0, 2405, 2406, 5, 114, 0, 0, 2406, 2407, 5, 103, 0, 0, 2407, 2408, 5, 101, 0, 0, 2408, 2409, 5, 116, 0, 0, 2409, 2410, 5, 80, 0, 0, 2410, 2411, 5, 114, 0, 0, 2411, 2412, 5, 111, 0, 0, 2412, 2413, 5, 120, 0, 0, 2413, 2414, 5, 121, 0, 0, 2414, 272, 1, 0, 0, 0, 2415, 2416, 5, 102, 0, 0, 2416, 2417, 5, 105, 0, 0, 2417, 2418, 5, 108, 0, 0, 2418, 2419, 5, 101, 0, 0, 2419, 2420, 5, 84, 0, 0, 2420, 2421, 5, 121, 0, 0, 2421, 2422, 5, 112, 0, 0, 2422, 2423, 5, 101, 0, 0, 2423, 274, 1, 0, 0, 0, 2424, 2425, 5, 114, 0, 0, 2425, 2426, 5, 101, 0, 0, 2426, 2427, 5, 109, 0, 0, 2427, 2428, 5, 111, 0, 0, 2428, 2429, 5, 116, 0, 0, 2429, 2430, 5, 101, 0, 0, 2430, 2431, 5, 82, 0, 0, 2431, 2432, 5, 101, 0, 0, 2432, 2433, 5, 102, 0, 0, 2433, 276, 1, 0, 0, 0, 2434, 2435, 5, 98, 0, 0, 2435, 2436, 5, 97, 0, 0, 2436, 2437, 5, 115, 0, 0, 2437, 2438, 5, 101, 0, 0, 2438, 2439, 5, 67, 0, 0, 2439, 2440, 5, 111, 0, 0, 2440, 2441, 5, 110, 0, 0, 2441, 2442, 5, 102, 0, 0, 2442, 2443, 5, 105, 0, 0, 2443, 2444, 5, 103, 0, 0, 2444, 2445, 5, 117, 0, 0, 2445, 2446, 5, 114, 0, 0, 2446, 2447, 5, 97, 0, 0, 2447, 2448, 5, 116, 0, 0, 2448, 2449, 5, 105, 0, 0, 2449, 2450, 5, 111, 0, 0, 2450, 2451, 5, 110, 0, 0, 2451, 2452, 5, 82, 0, 0, 2452, 2453, 5, 101, 0, 0, 2453, 2454, 5, 102, 0, 0, 2454, 2455, 5, 101, 0, 0, 2455, 2456, 5, 114, 0, 0, 2456, 2457, 5, 101, 0, 0, 2457, 2458, 5, 110, 0, 0, 2458, 2459, 5, 99, 0, 0, 2459, 2460, 5, 101, 0, 0, 2460, 278, 1, 0, 0, 0, 2461, 2462, 5, 98, 0, 0, 2462, 2463, 5, 117, 0, 0, 2463, 2464, 5, 105, 0, 0, 2464, 2465, 5, 108, 0, 0, 2465, 2466, 5, 100, 0, 0, 2466, 2467, 5, 83, 0, 0, 2467, 2468, 5, 101, 0, 0, 2468, 2469, 5, 116, 0, 0, 2469, 2470, 5, 116, 0, 0, 2470, 2471, 5, 105, 0, 0, 2471, 2472, 5, 110, 0, 0, 2472, 2473, 5, 103, 0, 0, 2473, 2474, 5, 115, 0, 0, 2474, 280, 1, 0, 0, 0, 2475, 2476, 5, 98, 0, 0, 2476, 2477, 5, 117, 0, 0, 2477, 2478, 5, 105, 0, 0, 2478, 2479, 5, 108, 0, 0, 2479, 2480, 5, 100, 0, 0, 2480, 2481, 5, 83, 0, 0, 2481, 2482, 5, 116, 0, 0, 2482, 2483, 5, 121, 0, 0, 2483, 2484, 5, 108, 0, 0, 2484, 2485, 5, 101, 0, 0, 2485, 2486, 5, 115, 0, 0, 2486, 282, 1, 0, 0, 0, 2487, 2488, 5, 100, 0, 0, 2488, 2489, 5, 115, 0, 0, 2489, 2490, 5, 116, 0, 0, 2490, 2491, 5, 80, 0, 0, 2491, 2492, 5, 97, 0, 0, 2492, 2493, 5, 116, 0, 0, 2493, 2494, 5, 104, 0, 0, 2494, 284, 1, 0, 0, 0, 2495, 2496, 5, 100, 0, 0, 2496, 2497, 5, 115, 0, 0, 2497, 2498, 5, 116, 0, 0, 2498, 2499, 5, 83, 0, 0, 2499, 2500, 5, 117, 0, 0, 2500, 2501, 5, 98, 0, 0, 2501, 2502, 5, 102, 0, 0, 2502, 2503, 5, 111, 0, 0, 2503, 2504, 5, 108, 0, 0, 2504, 2505, 5, 100, 0, 0, 2505, 2506, 5, 101, 0, 0, 2506, 2507, 5, 114, 0, 0, 2507, 2508, 5, 83, 0, 0, 2508, 2509, 5, 112, 0, 0, 2509, 2510, 5, 101, 0, 0, 2510, 2511, 5, 99, 0, 0, 2511, 286, 1, 0, 0, 0, 2512, 2513, 5, 80, 0, 0, 2513, 2514, 5, 114, 0, 0, 2514, 2515, 5, 111, 0, 0, 2515, 2516, 5, 100, 0, 0, 2516, 2517, 5, 117, 0, 0, 2517, 2518, 5, 99, 0, 0, 2518, 2519, 5, 116, 0, 0, 2519, 2520, 5, 71, 0, 0, 2520, 2521, 5, 114, 0, 0, 2521, 2522, 5, 111, 0, 0, 2522, 2523, 5, 117, 0, 0, 2523, 2524, 5, 112, 0, 0, 2524, 288, 1, 0, 0, 0, 2525, 2526, 5, 80, 0, 0, 2526, 2527, 5, 114, 0, 0, 2527, 2528, 5, 111, 0, 0, 2528, 2529, 5, 106, 0, 0, 2529, 2530, 5, 101, 0, 0, 2530, 2531, 5, 99, 0, 0, 2531, 2532, 5, 116, 0, 0, 2532, 2533, 5, 82, 0, 0, 2533, 2534, 5, 101, 0, 0, 2534, 2535, 5, 102, 0, 0, 2535, 290, 1, 0, 0, 0, 2536, 2537, 5, 98, 0, 0, 2537, 2538, 5, 117, 0, 0, 2538, 2539, 5, 105, 0, 0, 2539, 2540, 5, 108, 0, 0, 2540, 2541, 5, 100, 0, 0, 2541, 2542, 5, 67, 0, 0, 2542, 2543, 5, 111, 0, 0, 2543, 2544, 5, 110, 0, 0, 2544, 2545, 5, 102, 0, 0, 2545, 2546, 5, 105, 0, 0, 2546, 2547, 5, 103, 0, 0, 2547, 2548, 5, 117, 0, 0, 2548, 2549, 5, 114, 0, 0, 2549, 2550, 5, 97, 0, 0, 2550, 2551, 5, 116, 0, 0, 2551, 2552, 5, 105, 0, 0, 2552, 2553, 5, 111, 0, 0, 2553, 2554, 5, 110, 0, 0, 2554, 2555, 5, 115, 0, 0, 2555, 292, 1, 0, 0, 0, 2556, 2557, 5, 100, 0, 0, 2557, 2558, 5, 101, 0, 0, 2558, 2559, 5, 102, 0, 0, 2559, 2560, 5, 97, 0, 0, 2560, 2561, 5, 117, 0, 0, 2561, 2562, 5, 108, 0, 0, 2562, 2563, 5, 116, 0, 0, 2563, 2564, 5, 67, 0, 0, 2564, 2565, 5, 111, 0, 0, 2565, 2566, 5, 110, 0, 0, 2566, 2567, 5, 102, 0, 0, 2567, 2568, 5, 105, 0, 0, 2568, 2569, 5, 103, 0, 0, 2569, 2570, 5, 117, 0, 0, 2570, 2571, 5, 114, 0, 0, 2571, 2572, 5, 97, 0, 0, 2572, 2573, 5, 116, 0, 0, 2573, 2574, 5, 105, 0, 0, 2574, 2575, 5, 111, 0, 0, 2575, 2576, 5, 110, 0, 0, 2576, 2577, 5, 73, 0, 0, 2577, 2578, 5, 115, 0, 0, 2578, 2579, 5, 86, 0, 0, 2579, 2580, 5, 105, 0, 0, 2580, 2581, 5, 115, 0, 0, 2581, 2582, 5, 105, 0, 0, 2582, 2583, 5, 98, 0, 0, 2583, 2584, 5, 108, 0, 0, 2584, 2585, 5, 101, 0, 0, 2585, 294, 1, 0, 0, 0, 2586, 2587, 5, 100, 0, 0, 2587, 2588, 5, 101, 0, 0, 2588, 2589, 5, 102, 0, 0, 2589, 2590, 5, 97, 0, 0, 2590, 2591, 5, 117, 0, 0, 2591, 2592, 5, 108, 0, 0, 2592, 2593, 5, 116, 0, 0, 2593, 2594, 5, 67, 0, 0, 2594, 2595, 5, 111, 0, 0, 2595, 2596, 5, 110, 0, 0, 2596, 2597, 5, 102, 0, 0, 2597, 2598, 5, 105, 0, 0, 2598, 2599, 5, 103, 0, 0, 2599, 2600, 5, 117, 0, 0, 2600, 2601, 5, 114, 0, 0, 2601, 2602, 5, 97, 0, 0, 2602, 2603, 5, 116, 0, 0, 2603, 2604, 5, 105, 0, 0, 2604, 2605, 5, 111, 0, 0, 2605, 2606, 5, 110, 0, 0, 2606, 2607, 5, 78, 0, 0, 2607, 2608, 5, 97, 0, 0, 2608, 2609, 5, 109, 0, 0, 2609, 2610, 5, 101, 0, 0, 2610, 296, 1, 0, 0, 0, 2611, 2612, 5, 115, 0, 0, 2612, 2613, 5, 101, 0, 0, 2613, 2614, 5, 116, 0, 0, 2614, 2615, 5, 116, 0, 0, 2615, 2616, 5, 105, 0, 0, 2616, 2617, 5, 110, 0, 0, 2617, 2618, 5, 103, 0, 0, 2618, 2619, 5, 115, 0, 0, 2619, 298, 1, 0, 0, 0, 2620, 2621, 5, 83, 0, 0, 2621, 2622, 5, 121, 0, 0, 2622, 2623, 5, 115, 0, 0, 2623, 2624, 5, 116, 0, 0, 2624, 2625, 5, 101, 0, 0, 2625, 2626, 5, 109, 0, 0, 2626, 2627, 5, 67, 0, 0, 2627, 2628, 5, 97, 0, 0, 2628, 2629, 5, 112, 0, 0, 2629, 2630, 5, 97, 0, 0, 2630, 2631, 5, 98, 0, 0, 2631, 2632, 5, 105, 0, 0, 2632, 2633, 5, 108, 0, 0, 2633, 2634, 5, 105, 0, 0, 2634, 2635, 5, 116, 0, 0, 2635, 2636, 5, 105, 0, 0, 2636, 2637, 5, 101, 0, 0, 2637, 2638, 5, 115, 0, 0, 2638, 300, 1, 0, 0, 0, 2639, 2640, 5, 99, 0, 0, 2640, 2641, 5, 117, 0, 0, 2641, 2642, 5, 114, 0, 0, 2642, 2643, 5, 114, 0, 0, 2643, 2644, 5, 101, 0, 0, 2644, 2645, 5, 110, 0, 0, 2645, 2646, 5, 116, 0, 0, 2646, 2647, 5, 86, 0, 0, 2647, 2648, 5, 101, 0, 0, 2648, 2649, 5, 114, 0, 0, 2649, 2650, 5, 115, 0, 0, 2650, 2651, 5, 105, 0, 0, 2651, 2652, 5, 111, 0, 0, 2652, 2653, 5, 110, 0, 0, 2653, 302, 1, 0, 0, 0, 2654, 2655, 5, 118, 0, 0, 2655, 2656, 5, 101, 0, 0, 2656, 2657, 5, 114, 0, 0, 2657, 2658, 5, 115, 0, 0, 2658, 2659, 5, 105, 0, 0, 2659, 2660, 5, 111, 0, 0, 2660, 2661, 5, 110, 0, 0, 2661, 2662, 5, 71, 0, 0, 2662, 2663, 5, 114, 0, 0, 2663, 2664, 5, 111, 0, 0, 2664, 2665, 5, 117, 0, 0, 2665, 2666, 5, 112, 0, 0, 2666, 2667, 5, 84, 0, 0, 2667, 2668, 5, 121, 0, 0, 2668, 2669, 5, 112, 0, 0, 2669, 2670, 5, 101, 0, 0, 2670, 304, 1, 0, 0, 0, 2671, 2672, 5, 109, 0, 0, 2672, 2673, 5, 101, 0, 0, 2673, 2674, 5, 109, 0, 0, 2674, 2675, 5, 98, 0, 0, 2675, 2676, 5, 101, 0, 0, 2676, 2677, 5, 114, 0, 0, 2677, 2678, 5, 115, 0, 0, 2678, 2679, 5, 104, 0, 0, 2679, 2680, 5, 105, 0, 0, 2680, 2681, 5, 112, 0, 0, 2681, 2682, 5, 69, 0, 0, 2682, 2683, 5, 120, 0, 0, 2683, 2684, 5, 99, 0, 0, 2684, 2685, 5, 101, 0, 0, 2685, 2686, 5, 112, 0, 0, 2686, 2687, 5, 116, 0, 0, 2687, 2688, 5, 105, 0, 0, 2688, 2689, 5, 111, 0, 0, 2689, 2690, 5, 110, 0, 0, 2690, 2691, 5, 115, 0, 0, 2691, 306, 1, 0, 0, 0, 2692, 2693, 5, 101, 0, 0, 2693, 2694, 5, 120, 0, 0, 2694, 2695, 5, 99, 0, 0, 2695, 2696, 5, 101, 0, 0, 2696, 2697, 5, 112, 0, 0, 2697, 2698, 5, 116, 0, 0, 2698, 2699, 5, 105, 0, 0, 2699, 2700, 5, 111, 0, 0, 2700, 2701, 5, 110, 0, 0, 2701, 2702, 5, 115, 0, 0, 2702, 308, 1, 0, 0, 0, 2703, 2704, 5, 67, 0, 0, 2704, 2705, 5, 76, 0, 0, 2705, 2706, 5, 65, 0, 0, 2706, 2707, 5, 83, 0, 0, 2707, 2708, 5, 83, 0, 0, 2708, 2709, 5, 80, 0, 0, 2709, 2710, 5, 82, 0, 0, 2710, 2711, 5, 69, 0, 0, 2711, 2712, 5, 70, 0, 0, 2712, 2713, 5, 73, 0, 0, 2713, 2714, 5, 88, 0, 0, 2714, 310, 1, 0, 0, 0, 2715, 2716, 3, 323, 161, 0, 2716, 2717, 3, 323, 161, 0, 2717, 2718, 3, 323, 161, 0, 2718, 2719, 3, 323, 161, 0, 2719, 2720, 3, 323, 161, 0, 2720, 2721, 3, 323, 161, 0, 2721, 2722, 3, 323, 161, 0, 2722, 2723, 3, 323, 161, 0, 2723, 2724, 3, 323, 161, 0, 2724, 2725, 3, 323, 161, 0, 2725, 2726, 3, 323, 161, 0, 2726, 2727, 3, 323, 161, 0, 2727, 2728, 3, 323, 161, 0, 2728, 2729, 3, 323, 161, 0, 2729, 2730, 3, 323, 161, 0, 2730, 2731, 3, 323, 161, 0, 2731, 2732, 3, 323, 161, 0, 2732, 2733, 3, 323, 161, 0, 2733, 2734, 3, 323, 161, 0, 2734, 2735, 3, 323, 161, 0, 2735, 2736, 3, 323, 161, 0, 2736, 2737, 3, 323, 161, 0, 2737, 2738, 3, 323, 161, 0, 2738, 2740, 3, 323, 161, 0, 2739, 2741, 3, 323, 161, 0, 2740, 2739, 1, 0, 0, 0, 2740, 2741, 1, 0, 0, 0, 2741, 2743, 1, 0, 0, 0, 2742, 2744, 3, 323, 161, 0, 2743, 2742, 1, 0, 0, 0, 2743, 2744, 1, 0, 0, 0, 2744, 2746, 1, 0, 0, 0, 2745, 2747, 3, 323, 161, 0, 2746, 2745, 1, 0, 0, 0, 2746, 2747, 1, 0, 0, 0, 2747, 2749, 1, 0, 0, 0, 2748, 2750, 3, 323, 161, 0, 2749, 2748, 1, 0, 0, 0, 2749, 2750, 1, 0, 0, 0, 2750, 2752, 1, 0, 0, 0, 2751, 2753, 3, 323, 161, 0, 2752, 2751, 1, 0, 0, 0, 2752, 2753, 1, 0, 0, 0, 2753, 2755, 1, 0, 0, 0, 2754, 2756, 3, 323, 161, 0, 2755, 2754, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 2758, 1, 0, 0, 0, 2757, 2759, 3, 323, 161, 0, 2758, 2757, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2761, 1, 0, 0, 0, 2760, 2762, 3, 323, 161, 0, 2761, 2760, 1, 0, 0, 0, 2761, 2762, 1, 0, 0, 0, 2762, 2827, 1, 0, 0, 0, 2763, 2764, 5, 70, 0, 0, 2764, 2765, 5, 82, 0, 0, 2765, 2769, 5, 95, 0, 0, 2766, 2767, 5, 71, 0, 0, 2767, 2769, 5, 95, 0, 0, 2768, 2763, 1, 0, 0, 0, 2768, 2766, 1, 0, 0, 0, 2769, 2771, 1, 0, 0, 0, 2770, 2772, 3, 323, 161, 0, 2771, 2770, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2771, 1, 0, 0, 0, 2773, 2774, 1, 0, 0, 0, 2774, 2827, 1, 0, 0, 0, 2775, 2776, 3, 321, 160, 0, 2776, 2777, 3, 321, 160, 0, 2777, 2778, 3, 321, 160, 0, 2778, 2779, 3, 321, 160, 0, 2779, 2780, 3, 321, 160, 0, 2780, 2781, 3, 321, 160, 0, 2781, 2782, 3, 321, 160, 0, 2782, 2783, 3, 321, 160, 0, 2783, 2784, 3, 321, 160, 0, 2784, 2785, 3, 321, 160, 0, 2785, 2786, 3, 321, 160, 0, 2786, 2787, 3, 321, 160, 0, 2787, 2788, 3, 321, 160, 0, 2788, 2789, 3, 321, 160, 0, 2789, 2790, 3, 321, 160, 0, 2790, 2791, 3, 321, 160, 0, 2791, 2792, 3, 321, 160, 0, 2792, 2793, 3, 321, 160, 0, 2793, 2794, 3, 321, 160, 0, 2794, 2795, 3, 321, 160, 0, 2795, 2796, 3, 321, 160, 0, 2796, 2797, 3, 321, 160, 0, 2797, 2798, 3, 321, 160, 0, 2798, 2799, 3, 321, 160, 0, 2799, 2827, 1, 0, 0, 0, 2800, 2801, 5, 79, 0, 0, 2801, 2802, 5, 66, 0, 0, 2802, 2803, 5, 74, 0, 0, 2803, 2804, 5, 95, 0, 0, 2804, 2805, 1, 0, 0, 0, 2805, 2827, 3, 25, 12, 0, 2806, 2808, 5, 34, 0, 0, 2807, 2809, 3, 315, 157, 0, 2808, 2807, 1, 0, 0, 0, 2809, 2810, 1, 0, 0, 0, 2810, 2808, 1, 0, 0, 0, 2810, 2811, 1, 0, 0, 0, 2811, 2820, 1, 0, 0, 0, 2812, 2813, 5, 58, 0, 0, 2813, 2814, 5, 58, 0, 0, 2814, 2816, 1, 0, 0, 0, 2815, 2817, 3, 315, 157, 0, 2816, 2815, 1, 0, 0, 0, 2817, 2818, 1, 0, 0, 0, 2818, 2816, 1, 0, 0, 0, 2818, 2819, 1, 0, 0, 0, 2819, 2821, 1, 0, 0, 0, 2820, 2812, 1, 0, 0, 0, 2821, 2822, 1, 0, 0, 0, 2822, 2820, 1, 0, 0, 0, 2822, 2823, 1, 0, 0, 0, 2823, 2824, 1, 0, 0, 0, 2824, 2825, 5, 34, 0, 0, 2825, 2827, 1, 0, 0, 0, 2826, 2715, 1, 0, 0, 0, 2826, 2768, 1, 0, 0, 0, 2826, 2775, 1, 0, 0, 0, 2826, 2800, 1, 0, 0, 0, 2826, 2806, 1, 0, 0, 0, 2827, 312, 1, 0, 0, 0, 2828, 2830, 5, 34, 0, 0, 2829, 2831, 3, 325, 162, 0, 2830, 2829, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 2830, 1, 0, 0, 0, 2832, 2833, 1, 0, 0, 0, 2833, 2834, 1, 0, 0, 0, 2834, 2835, 5, 34, 0, 0, 2835, 2839, 1, 0, 0, 0, 2836, 2837, 5, 34, 0, 0, 2837, 2839, 5, 34, 0, 0, 2838, 2828, 1, 0, 0, 0, 2838, 2836, 1, 0, 0, 0, 2839, 314, 1, 0, 0, 0, 2840, 2847, 3, 319, 159, 0, 2841, 2847, 3, 35, 17, 0, 2842, 2847, 3, 19, 9, 0, 2843, 2847, 3, 33, 16, 0, 2844, 2847, 3, 21, 10, 0, 2845, 2847, 3, 37, 18, 0, 2846, 2840, 1, 0, 0, 0, 2846, 2841, 1, 0, 0, 0, 2846, 2842, 1, 0, 0, 0, 2846, 2843, 1, 0, 0, 0, 2846, 2844, 1, 0, 0, 0, 2846, 2845, 1, 0, 0, 0, 2847, 2848, 1, 0, 0, 0, 2848, 2846, 1, 0, 0, 0, 2848, 2849, 1, 0, 0, 0, 2849, 316, 1, 0, 0, 0, 2850, 2851, 5, 36, 0, 0, 2851, 2853, 3, 315, 157, 0, 2852, 2850, 1, 0, 0, 0, 2853, 2854, 1, 0, 0, 0, 2854, 2852, 1, 0, 0, 0, 2854, 2855, 1, 0, 0, 0, 2855, 2857, 1, 0, 0, 0, 2856, 2858, 3, 33, 16, 0, 2857, 2856, 1, 0, 0, 0, 2857, 2858, 1, 0, 0, 0, 2858, 318, 1, 0, 0, 0, 2859, 2860, 7, 1, 0, 0, 2860, 320, 1, 0, 0, 0, 2861, 2862, 7, 2, 0, 0, 2862, 322, 1, 0, 0, 0, 2863, 2864, 7, 3, 0, 0, 2864, 324, 1, 0, 0, 0, 2865, 2869, 8, 4, 0, 0, 2866, 2867, 5, 92, 0, 0, 2867, 2869, 5, 34, 0, 0, 2868, 2865, 1, 0, 0, 0, 2868, 2866, 1, 0, 0, 0, 2869, 326, 1, 0, 0, 0, 2870, 2872, 7, 5, 0, 0, 2871, 2870, 1, 0, 0, 0, 2872, 2873, 1, 0, 0, 0, 2873, 2871, 1, 0, 0, 0, 2873, 2874, 1, 0, 0, 0, 2874, 2875, 1, 0, 0, 0, 2875, 2876, 6, 163, 0, 0, 2876, 328, 1, 0, 0, 0, 2877, 2878, 5, 47, 0, 0, 2878, 2879, 5, 42, 0, 0, 2879, 2883, 1, 0, 0, 0, 2880, 2882, 9, 0, 0, 0, 2881, 2880, 1, 0, 0, 0, 2882, 2885, 1, 0, 0, 0, 2883, 2884, 1, 0, 0, 0, 2883, 2881, 1, 0, 0, 0, 2884, 2886, 1, 0, 0, 0, 2885, 2883, 1, 0, 0, 0, 2886, 2887, 5, 42, 0, 0, 2887, 2888, 5, 47, 0, 0, 2888, 2889, 1, 0, 0, 0, 2889, 2890, 6, 164, 0, 0, 2890, 330, 1, 0, 0, 0, 2891, 2892, 5, 47, 0, 0, 2892, 2893, 5, 47, 0, 0, 2893, 2897, 1, 0, 0, 0, 2894, 2896, 8, 6, 0, 0, 2895, 2894, 1, 0, 0, 0, 2896, 2899, 1, 0, 0, 0, 2897, 2895, 1, 0, 0, 0, 2897, 2898, 1, 0, 0, 0, 2898, 2900, 1, 0, 0, 0, 2899, 2897, 1, 0, 0, 0, 2900, 2901, 6, 165, 0, 0, 2901, 332, 1, 0, 0, 0, 27, 0, 381, 778, 2740, 2743, 2746, 2749, 2752, 2755, 2758, 2761, 2768, 2773, 2810, 2818, 2822, 2826, 2832, 2838, 2846, 2848, 2854, 2857, 2868, 2873, 2883, 2897, 1, 6, 0, 0] \ No newline at end of file diff --git a/kin/grammar/PBXProjLexer.py b/kin/grammar/PBXProjLexer.py index b092464..8f48af5 100644 --- a/kin/grammar/PBXProjLexer.py +++ b/kin/grammar/PBXProjLexer.py @@ -1,4 +1,4 @@ -# Generated from PBXProj.g4 by ANTLR 4.13.1 +# Generated from PBXProj.g4 by ANTLR 4.13.2 from antlr4 import * from io import StringIO import sys @@ -10,7 +10,7 @@ def serializedATN(): return [ - 4,0,157,2710,6,-1,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7, + 4,0,164,2902,6,-1,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7, 5,2,6,7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12, 2,13,7,13,2,14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19, 7,19,2,20,7,20,2,21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25, @@ -36,1004 +36,1079 @@ def serializedATN(): 2,142,7,142,2,143,7,143,2,144,7,144,2,145,7,145,2,146,7,146,2,147, 7,147,2,148,7,148,2,149,7,149,2,150,7,150,2,151,7,151,2,152,7,152, 2,153,7,153,2,154,7,154,2,155,7,155,2,156,7,156,2,157,7,157,2,158, - 7,158,1,0,1,0,1,1,1,1,1,2,1,2,1,3,1,3,1,4,1,4,1,5,1,5,1,6,1,6,1, - 7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,9,1,9,1,10,1,10,1,11,1,11,1,11,1,11, - 1,12,4,12,366,8,12,11,12,12,12,367,1,13,1,13,1,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,14,1,14,1,14,1,14,1,14, - 1,14,1,14,1,14,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, - 1,15,1,16,1,16,1,17,1,17,1,18,1,18,1,19,1,19,1,19,1,19,1,19,1,19, - 1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19, - 1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20, - 1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21, - 1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22, - 1,22,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23, - 1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,24,1,24,1,24, - 1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24, - 1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,25,1,25,1,25,1,25,1,25,1,25, - 1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,26,1,26, - 1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26, - 1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,27,1,27,1,27,1,27, - 1,27,1,27,1,27,1,27,1,27,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28, - 1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28, - 1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,29, - 1,29,1,29,1,29,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30, - 1,30,1,30,1,30,1,30,1,30,1,30,1,31,1,31,1,31,1,31,1,31,1,31,1,31, - 1,31,1,31,1,31,1,31,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32, - 1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,33,1,33,1,33,1,33, - 1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33, - 1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33, - 1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,3,33,683,8,33,1,34,1,34, - 1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34, - 1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,35,1,35,1,35, - 1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35, - 1,35,1,35,1,35,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36, - 1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,37,1,37, - 1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37, - 1,37,1,37,1,37,1,37,1,37,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38, - 1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,39,1,39,1,39,1,39,1,39, - 1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39, - 1,39,1,39,1,39,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40, - 1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,41,1,41,1,41, - 1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41, - 1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41, - 1,41,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42, - 1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42, - 1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,43,1,43,1,43,1,43,1,43,1,43, - 1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,44,1,44,1,44,1,44, - 1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,45, - 1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,46,1,46,1,46,1,46,1,46,1,46, - 1,46,1,46,1,46,1,46,1,46,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47, - 1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,48,1,48,1,48,1,48,1,48, - 1,48,1,48,1,48,1,48,1,48,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49, - 1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49, - 1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,51,1,51, - 1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,52,1,52, - 1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,53,1,53,1,53,1,53,1,53,1,53, - 1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,54,1,54, - 1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54, - 1,54,1,54,1,54,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55, - 1,55,1,55,1,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56, - 1,56,1,56,1,56,1,56,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57, - 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,59,1,59,1,59,1,59, - 1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,60,1,60,1,60,1,60,1,60,1,60, - 1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,61,1,61,1,61,1,61, - 1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,62, - 1,62,1,62,1,62,1,62,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63, - 1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63, - 1,63,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64, - 1,64,1,64,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65, - 1,65,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,67,1,67,1,67,1,67, - 1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67, - 1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,68,1,68,1,68, - 1,68,1,68,1,69,1,69,1,69,1,69,1,69,1,70,1,70,1,70,1,70,1,70,1,70, - 1,70,1,70,1,70,1,70,1,70,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71, - 1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,72,1,72,1,72,1,72,1,72, - 1,72,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73, - 1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73, - 1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,74,1,74,1,74, - 1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74, - 1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,75,1,75,1,75,1,75,1,75,1,75, - 1,75,1,75,1,75,1,75,1,75,1,75,1,76,1,76,1,76,1,76,1,76,1,76,1,76, - 1,76,1,76,1,76,1,76,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77, - 1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,78, - 1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78, - 1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79, - 1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,80,1,80,1,80,1,80, - 1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80, - 1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80, - 1,80,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81, - 1,81,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82, - 1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83, - 1,83,1,83,1,83,1,83,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84, - 1,84,1,84,1,84,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85, - 1,85,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86, - 1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86, - 1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,87,1,87,1,87,1,87, - 1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87, - 1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87, - 1,87,1,87,1,87,1,87,1,87,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88, - 1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89, - 1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90, - 1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,92,1,92, - 1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,93,1,93,1,93,1,93, - 1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,94,1,94,1,94,1,94,1,94, - 1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94, - 1,94,1,94,1,94,1,94,1,94,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,96, - 1,96,1,96,1,96,1,96,1,96,1,96,1,96,1,96,1,96,1,96,1,97,1,97,1,97, - 1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97, - 1,97,1,97,1,97,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98, - 1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98, - 1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,99, - 1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99, - 1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,100,1,100,1,100,1,100,1,100, - 1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100, - 1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100, - 1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,101,1,101,1,101,1,101, - 1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101, - 1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,102,1,102, + 7,158,2,159,7,159,2,160,7,160,2,161,7,161,2,162,7,162,2,163,7,163, + 2,164,7,164,2,165,7,165,1,0,1,0,1,1,1,1,1,2,1,2,1,3,1,3,1,4,1,4, + 1,5,1,5,1,6,1,6,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7, + 1,7,1,7,1,7,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,9,1,9,1,10,1,10,1, + 11,1,11,1,11,1,11,1,12,4,12,380,8,12,11,12,12,12,381,1,13,1,13,1, + 13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,14,1, + 14,1,14,1,14,1,14,1,14,1,14,1,14,1,15,1,15,1,15,1,15,1,15,1,15,1, + 15,1,15,1,15,1,15,1,15,1,16,1,16,1,17,1,17,1,18,1,18,1,19,1,19,1, + 19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1, + 19,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1, + 20,1,20,1,20,1,20,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1, + 21,1,21,1,21,1,21,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1, + 22,1,22,1,22,1,22,1,22,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1, + 23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1, + 23,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1, + 24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,25,1,25,1, + 25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1, + 25,1,25,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1, + 26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1, + 26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1, + 26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,27,1,27,1,27,1, + 27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1, + 27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1, + 27,1,27,1,27,1,27,1,27,1,27,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1, + 28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1, + 28,1,28,1,28,1,28,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1, + 30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1, + 30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,31,1,31,1,31,1,31,1,31,1, + 31,1,31,1,31,1,31,1,31,1,31,1,31,1,31,1,31,1,31,1,31,1,32,1,32,1, + 32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1, + 32,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,34,1, + 34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1, + 34,1,34,1,34,1,34,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1, + 35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1, + 35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1, + 35,1,35,1,35,3,35,779,8,35,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1, + 36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1, + 36,1,36,1,36,1,36,1,36,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1, + 37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,38,1,38,1, + 38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1, + 38,1,38,1,38,1,38,1,38,1,38,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1, + 39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1, + 40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1, + 40,1,40,1,40,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1, + 41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,42,1,42,1, + 42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1, + 42,1,42,1,42,1,42,1,42,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1, + 43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1, + 43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,44,1,44,1,44,1,44,1, + 44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1, + 44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1, + 44,1,44,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1, + 45,1,45,1,45,1,45,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1, + 46,1,46,1,46,1,46,1,46,1,46,1,46,1,47,1,47,1,47,1,47,1,47,1,47,1, + 47,1,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1, + 49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1, + 49,1,49,1,49,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1, + 51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1, + 51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,52,1,52,1,52,1,52,1,52,1, + 52,1,52,1,52,1,52,1,52,1,52,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1, + 53,1,53,1,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1, + 54,1,54,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1, + 55,1,55,1,55,1,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1, + 56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,57,1,57,1, + 57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1, + 57,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1, + 58,1,58,1,58,1,58,1,58,1,58,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1, + 59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,60,1,60,1,60,1,60,1,60,1, + 60,1,60,1,60,1,60,1,60,1,60,1,60,1,61,1,61,1,61,1,61,1,61,1,61,1, + 61,1,61,1,61,1,62,1,62,1,62,1,62,1,62,1,62,1,62,1,62,1,62,1,63,1, + 63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,64,1,64,1,64,1, + 64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,65,1, + 65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1, + 65,1,65,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,67,1,67,1, + 67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1, + 67,1,67,1,67,1,67,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1, + 68,1,68,1,68,1,68,1,68,1,69,1,69,1,69,1,69,1,69,1,69,1,69,1,69,1, + 69,1,69,1,69,1,69,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,71,1, + 71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1, + 71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1, + 72,1,72,1,72,1,72,1,72,1,73,1,73,1,73,1,73,1,73,1,74,1,74,1,74,1, + 74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,75,1,75,1,75,1,75,1,75,1, + 75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,76,1,76,1, + 76,1,76,1,76,1,76,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1, + 77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1, + 77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1, + 78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1, + 78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,79,1,79,1,79,1, + 79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,80,1,80,1,80,1,80,1, + 80,1,80,1,80,1,80,1,80,1,80,1,80,1,81,1,81,1,81,1,81,1,81,1,81,1, + 81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1, + 81,1,81,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1, + 82,1,82,1,82,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1, + 83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,84,1, + 84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1, + 84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1, + 84,1,84,1,84,1,84,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1, + 85,1,85,1,85,1,85,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1, + 86,1,86,1,86,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1, + 87,1,87,1,87,1,87,1,87,1,87,1,87,1,88,1,88,1,88,1,88,1,88,1,88,1, + 88,1,88,1,88,1,88,1,88,1,88,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1, + 89,1,89,1,89,1,89,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1, + 90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1, + 90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,91,1, + 91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1, + 91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1, + 91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,92,1,92,1,92,1,92,1,92,1, + 92,1,92,1,92,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1, + 93,1,93,1,93,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1, + 94,1,94,1,94,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1, + 95,1,96,1,96,1,96,1,96,1,96,1,96,1,96,1,96,1,96,1,96,1,96,1,97,1, + 97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,98,1,98,1, + 98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1, + 98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,99,1,99,1,99,1,99,1,99,1, + 99,1,99,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1, + 100,1,100,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101, + 1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,102, 1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102, - 1,102,1,102,1,102,1,102,1,103,1,103,1,103,1,103,1,103,1,103,1,103, - 1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,104, + 1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102, + 1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102, + 1,102,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, + 1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, + 1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104, + 1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104, 1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104, - 1,104,1,104,1,104,1,104,1,104,1,105,1,105,1,105,1,105,1,105,1,105, + 1,104,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105, 1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105, - 1,105,1,105,1,105,1,105,1,105,1,106,1,106,1,106,1,106,1,106,1,106, - 1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,107,1,107,1,107,1,107, + 1,105,1,105,1,105,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106, + 1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,107,1,107, 1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,107, - 1,107,1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,108, + 1,107,1,107,1,107,1,107,1,108,1,108,1,108,1,108,1,108,1,108,1,108, 1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,109, 1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109, - 1,109,1,109,1,109,1,109,1,109,1,109,1,110,1,110,1,110,1,110,1,110, + 1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,110, 1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,110, - 1,110,1,110,1,110,1,110,1,110,1,111,1,111,1,111,1,111,1,111,1,111, - 1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111, - 1,111,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112, + 1,110,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111, + 1,111,1,111,1,111,1,111,1,111,1,111,1,112,1,112,1,112,1,112,1,112, 1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112, - 1,112,1,112,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, - 1,113,1,113,1,113,1,113,1,114,1,114,1,114,1,114,1,114,1,114,1,114, - 1,114,1,114,1,114,1,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115, - 1,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115,1,116,1,116,1,116, + 1,112,1,112,1,112,1,112,1,113,1,113,1,113,1,113,1,113,1,113,1,113, + 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, + 1,114,1,114,1,114,1,114,1,114,1,114,1,114,1,114,1,114,1,114,1,114, + 1,114,1,114,1,114,1,114,1,114,1,114,1,114,1,114,1,114,1,114,1,115, + 1,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115, + 1,115,1,115,1,115,1,115,1,115,1,115,1,116,1,116,1,116,1,116,1,116, 1,116,1,116,1,116,1,116,1,116,1,116,1,116,1,116,1,116,1,116,1,116, - 1,116,1,116,1,116,1,116,1,117,1,117,1,117,1,117,1,117,1,117,1,117, - 1,117,1,117,1,117,1,117,1,117,1,117,1,117,1,117,1,118,1,118,1,118, - 1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118, - 1,118,1,118,1,118,1,118,1,119,1,119,1,119,1,119,1,119,1,119,1,119, - 1,119,1,119,1,119,1,119,1,119,1,120,1,120,1,120,1,120,1,120,1,120, - 1,120,1,120,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121, - 1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,122, + 1,116,1,116,1,116,1,116,1,116,1,116,1,116,1,117,1,117,1,117,1,117, + 1,117,1,117,1,117,1,117,1,117,1,117,1,117,1,117,1,117,1,118,1,118, + 1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,119,1,119,1,119, + 1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119, + 1,119,1,119,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120, + 1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,121,1,121, + 1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121, + 1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121, + 1,121,1,121,1,121,1,121,1,121,1,121,1,122,1,122,1,122,1,122,1,122, 1,122,1,122,1,122,1,122,1,122,1,122,1,122,1,122,1,122,1,122,1,123, 1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123, - 1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,124,1,124,1,124, - 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,125,1,125, - 1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,126,1,126,1,126, - 1,126,1,126,1,126,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127, - 1,127,1,127,1,127,1,127,1,128,1,128,1,128,1,128,1,128,1,128,1,128, + 1,123,1,123,1,123,1,123,1,123,1,123,1,124,1,124,1,124,1,124,1,124, + 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,125,1,125,1,125,1,125, + 1,125,1,125,1,125,1,125,1,126,1,126,1,126,1,126,1,126,1,126,1,126, + 1,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126, + 1,126,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127, + 1,127,1,128,1,128,1,128,1,128,1,128,1,128,1,128,1,128,1,128,1,128, 1,128,1,128,1,128,1,128,1,128,1,128,1,128,1,128,1,128,1,128,1,129, - 1,129,1,129,1,129,1,129,1,129,1,129,1,130,1,130,1,130,1,130,1,130, - 1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,131,1,131,1,131,1,131, + 1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129, + 1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,131, 1,131,1,131,1,131,1,131,1,131,1,132,1,132,1,132,1,132,1,132,1,132, - 1,132,1,132,1,132,1,132,1,133,1,133,1,133,1,133,1,133,1,133,1,133, + 1,132,1,132,1,132,1,132,1,132,1,132,1,133,1,133,1,133,1,133,1,133, 1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133, - 1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,134,1,134, - 1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134, - 1,134,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, - 1,135,1,135,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,137, - 1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137, - 1,137,1,137,1,137,1,137,1,137,1,138,1,138,1,138,1,138,1,138,1,138, - 1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,139,1,139,1,139,1,139, - 1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,140,1,140,1,140,1,140, - 1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140, - 1,140,1,140,1,140,1,140,1,140,1,141,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,143,1,143,1,143,1,143,1,143,1,143, - 1,143,1,143,1,143,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144, - 1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144, + 1,133,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,135,1,135,1,135, + 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,136,1,136, + 1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,137,1,137,1,137,1,137, + 1,137,1,137,1,137,1,137,1,137,1,137,1,138,1,138,1,138,1,138,1,138, + 1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138, + 1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138, + 1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139, + 1,139,1,139,1,139,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140, + 1,140,1,140,1,140,1,140,1,141,1,141,1,141,1,141,1,141,1,141,1,141, + 1,141,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, + 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,143,1,143,1,143,1,143, + 1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,144,1,144, + 1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,145,1,145, 1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145, - 1,145,1,145,1,145,1,145,1,146,1,146,1,146,1,146,1,146,1,146,1,146, - 1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,147, + 1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,146,1,146,1,146,1,146, + 1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146, + 1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146, + 1,146,1,146,1,146,1,146,1,147,1,147,1,147,1,147,1,147,1,147,1,147, 1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147, - 1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148, - 1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148, - 1,148,1,148,1,148,3,148,2549,8,148,1,148,3,148,2552,8,148,1,148, - 3,148,2555,8,148,1,148,3,148,2558,8,148,1,148,3,148,2561,8,148,1, - 148,3,148,2564,8,148,1,148,3,148,2567,8,148,1,148,3,148,2570,8,148, - 1,148,1,148,1,148,1,148,1,148,3,148,2577,8,148,1,148,4,148,2580, - 8,148,11,148,12,148,2581,1,148,1,148,1,148,1,148,1,148,1,148,1,148, - 1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148, - 1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148, - 1,148,1,148,1,148,1,148,4,148,2617,8,148,11,148,12,148,2618,1,148, - 1,148,1,148,1,148,4,148,2625,8,148,11,148,12,148,2626,4,148,2629, - 8,148,11,148,12,148,2630,1,148,1,148,3,148,2635,8,148,1,149,1,149, - 4,149,2639,8,149,11,149,12,149,2640,1,149,1,149,1,149,1,149,3,149, - 2647,8,149,1,150,1,150,1,150,1,150,1,150,1,150,4,150,2655,8,150, - 11,150,12,150,2656,1,151,1,151,4,151,2661,8,151,11,151,12,151,2662, - 1,151,3,151,2666,8,151,1,152,1,152,1,153,1,153,1,154,1,154,1,155, - 1,155,1,155,3,155,2677,8,155,1,156,4,156,2680,8,156,11,156,12,156, - 2681,1,156,1,156,1,157,1,157,1,157,1,157,5,157,2690,8,157,10,157, - 12,157,2693,9,157,1,157,1,157,1,157,1,157,1,157,1,158,1,158,1,158, - 1,158,5,158,2704,8,158,10,158,12,158,2707,9,158,1,158,1,158,1,2691, - 0,159,1,1,3,2,5,3,7,4,9,5,11,6,13,7,15,8,17,9,19,10,21,11,23,12, - 25,13,27,14,29,15,31,16,33,17,35,18,37,19,39,20,41,21,43,22,45,23, - 47,24,49,25,51,26,53,27,55,28,57,29,59,30,61,31,63,32,65,33,67,34, - 69,35,71,36,73,37,75,38,77,39,79,40,81,41,83,42,85,43,87,44,89,45, - 91,46,93,47,95,48,97,49,99,50,101,51,103,52,105,53,107,54,109,55, - 111,56,113,57,115,58,117,59,119,60,121,61,123,62,125,63,127,64,129, - 65,131,66,133,67,135,68,137,69,139,70,141,71,143,72,145,73,147,74, - 149,75,151,76,153,77,155,78,157,79,159,80,161,81,163,82,165,83,167, - 84,169,85,171,86,173,87,175,88,177,89,179,90,181,91,183,92,185,93, - 187,94,189,95,191,96,193,97,195,98,197,99,199,100,201,101,203,102, - 205,103,207,104,209,105,211,106,213,107,215,108,217,109,219,110, - 221,111,223,112,225,113,227,114,229,115,231,116,233,117,235,118, - 237,119,239,120,241,121,243,122,245,123,247,124,249,125,251,126, - 253,127,255,128,257,129,259,130,261,131,263,132,265,133,267,134, - 269,135,271,136,273,137,275,138,277,139,279,140,281,141,283,142, - 285,143,287,144,289,145,291,146,293,147,295,148,297,149,299,150, - 301,151,303,152,305,153,307,154,309,0,311,0,313,155,315,156,317, - 157,1,0,7,1,0,48,57,3,0,48,57,65,90,97,122,2,0,48,57,65,90,3,0,48, - 57,65,70,97,102,1,0,34,34,3,0,9,10,12,13,32,32,2,0,10,10,13,13,2740, - 0,1,1,0,0,0,0,3,1,0,0,0,0,5,1,0,0,0,0,7,1,0,0,0,0,9,1,0,0,0,0,11, - 1,0,0,0,0,13,1,0,0,0,0,15,1,0,0,0,0,17,1,0,0,0,0,19,1,0,0,0,0,21, - 1,0,0,0,0,23,1,0,0,0,0,25,1,0,0,0,0,27,1,0,0,0,0,29,1,0,0,0,0,31, - 1,0,0,0,0,33,1,0,0,0,0,35,1,0,0,0,0,37,1,0,0,0,0,39,1,0,0,0,0,41, - 1,0,0,0,0,43,1,0,0,0,0,45,1,0,0,0,0,47,1,0,0,0,0,49,1,0,0,0,0,51, - 1,0,0,0,0,53,1,0,0,0,0,55,1,0,0,0,0,57,1,0,0,0,0,59,1,0,0,0,0,61, - 1,0,0,0,0,63,1,0,0,0,0,65,1,0,0,0,0,67,1,0,0,0,0,69,1,0,0,0,0,71, - 1,0,0,0,0,73,1,0,0,0,0,75,1,0,0,0,0,77,1,0,0,0,0,79,1,0,0,0,0,81, - 1,0,0,0,0,83,1,0,0,0,0,85,1,0,0,0,0,87,1,0,0,0,0,89,1,0,0,0,0,91, - 1,0,0,0,0,93,1,0,0,0,0,95,1,0,0,0,0,97,1,0,0,0,0,99,1,0,0,0,0,101, - 1,0,0,0,0,103,1,0,0,0,0,105,1,0,0,0,0,107,1,0,0,0,0,109,1,0,0,0, - 0,111,1,0,0,0,0,113,1,0,0,0,0,115,1,0,0,0,0,117,1,0,0,0,0,119,1, - 0,0,0,0,121,1,0,0,0,0,123,1,0,0,0,0,125,1,0,0,0,0,127,1,0,0,0,0, - 129,1,0,0,0,0,131,1,0,0,0,0,133,1,0,0,0,0,135,1,0,0,0,0,137,1,0, - 0,0,0,139,1,0,0,0,0,141,1,0,0,0,0,143,1,0,0,0,0,145,1,0,0,0,0,147, - 1,0,0,0,0,149,1,0,0,0,0,151,1,0,0,0,0,153,1,0,0,0,0,155,1,0,0,0, - 0,157,1,0,0,0,0,159,1,0,0,0,0,161,1,0,0,0,0,163,1,0,0,0,0,165,1, - 0,0,0,0,167,1,0,0,0,0,169,1,0,0,0,0,171,1,0,0,0,0,173,1,0,0,0,0, - 175,1,0,0,0,0,177,1,0,0,0,0,179,1,0,0,0,0,181,1,0,0,0,0,183,1,0, - 0,0,0,185,1,0,0,0,0,187,1,0,0,0,0,189,1,0,0,0,0,191,1,0,0,0,0,193, - 1,0,0,0,0,195,1,0,0,0,0,197,1,0,0,0,0,199,1,0,0,0,0,201,1,0,0,0, - 0,203,1,0,0,0,0,205,1,0,0,0,0,207,1,0,0,0,0,209,1,0,0,0,0,211,1, - 0,0,0,0,213,1,0,0,0,0,215,1,0,0,0,0,217,1,0,0,0,0,219,1,0,0,0,0, - 221,1,0,0,0,0,223,1,0,0,0,0,225,1,0,0,0,0,227,1,0,0,0,0,229,1,0, - 0,0,0,231,1,0,0,0,0,233,1,0,0,0,0,235,1,0,0,0,0,237,1,0,0,0,0,239, - 1,0,0,0,0,241,1,0,0,0,0,243,1,0,0,0,0,245,1,0,0,0,0,247,1,0,0,0, - 0,249,1,0,0,0,0,251,1,0,0,0,0,253,1,0,0,0,0,255,1,0,0,0,0,257,1, - 0,0,0,0,259,1,0,0,0,0,261,1,0,0,0,0,263,1,0,0,0,0,265,1,0,0,0,0, - 267,1,0,0,0,0,269,1,0,0,0,0,271,1,0,0,0,0,273,1,0,0,0,0,275,1,0, - 0,0,0,277,1,0,0,0,0,279,1,0,0,0,0,281,1,0,0,0,0,283,1,0,0,0,0,285, - 1,0,0,0,0,287,1,0,0,0,0,289,1,0,0,0,0,291,1,0,0,0,0,293,1,0,0,0, - 0,295,1,0,0,0,0,297,1,0,0,0,0,299,1,0,0,0,0,301,1,0,0,0,0,303,1, - 0,0,0,0,305,1,0,0,0,0,307,1,0,0,0,0,313,1,0,0,0,0,315,1,0,0,0,0, - 317,1,0,0,0,1,319,1,0,0,0,3,321,1,0,0,0,5,323,1,0,0,0,7,325,1,0, - 0,0,9,327,1,0,0,0,11,329,1,0,0,0,13,331,1,0,0,0,15,333,1,0,0,0,17, - 348,1,0,0,0,19,356,1,0,0,0,21,358,1,0,0,0,23,360,1,0,0,0,25,365, - 1,0,0,0,27,369,1,0,0,0,29,383,1,0,0,0,31,391,1,0,0,0,33,402,1,0, - 0,0,35,404,1,0,0,0,37,406,1,0,0,0,39,408,1,0,0,0,41,427,1,0,0,0, - 43,440,1,0,0,0,45,453,1,0,0,0,47,467,1,0,0,0,49,489,1,0,0,0,51,512, - 1,0,0,0,53,529,1,0,0,0,55,553,1,0,0,0,57,562,1,0,0,0,59,583,1,0, - 0,0,61,599,1,0,0,0,63,615,1,0,0,0,65,626,1,0,0,0,67,682,1,0,0,0, - 69,684,1,0,0,0,71,709,1,0,0,0,73,728,1,0,0,0,75,749,1,0,0,0,77,769, - 1,0,0,0,79,785,1,0,0,0,81,806,1,0,0,0,83,826,1,0,0,0,85,856,1,0, - 0,0,87,888,1,0,0,0,89,903,1,0,0,0,91,919,1,0,0,0,93,927,1,0,0,0, - 95,938,1,0,0,0,97,954,1,0,0,0,99,964,1,0,0,0,101,985,1,0,0,0,103, - 996,1,0,0,0,105,1009,1,0,0,0,107,1018,1,0,0,0,109,1035,1,0,0,0,111, - 1053,1,0,0,0,113,1068,1,0,0,0,115,1080,1,0,0,0,117,1089,1,0,0,0, - 119,1098,1,0,0,0,121,1109,1,0,0,0,123,1124,1,0,0,0,125,1140,1,0, - 0,0,127,1149,1,0,0,0,129,1168,1,0,0,0,131,1182,1,0,0,0,133,1194, - 1,0,0,0,135,1202,1,0,0,0,137,1229,1,0,0,0,139,1234,1,0,0,0,141,1239, - 1,0,0,0,143,1250,1,0,0,0,145,1266,1,0,0,0,147,1272,1,0,0,0,149,1307, - 1,0,0,0,151,1330,1,0,0,0,153,1342,1,0,0,0,155,1353,1,0,0,0,157,1374, - 1,0,0,0,159,1388,1,0,0,0,161,1410,1,0,0,0,163,1441,1,0,0,0,165,1454, - 1,0,0,0,167,1466,1,0,0,0,169,1483,1,0,0,0,171,1495,1,0,0,0,173,1506, - 1,0,0,0,175,1540,1,0,0,0,177,1575,1,0,0,0,179,1583,1,0,0,0,181,1596, - 1,0,0,0,183,1609,1,0,0,0,185,1620,1,0,0,0,187,1631,1,0,0,0,189,1643, - 1,0,0,0,191,1666,1,0,0,0,193,1673,1,0,0,0,195,1684,1,0,0,0,197,1703, - 1,0,0,0,199,1738,1,0,0,0,201,1759,1,0,0,0,203,1793,1,0,0,0,205,1817, - 1,0,0,0,207,1834,1,0,0,0,209,1851,1,0,0,0,211,1868,1,0,0,0,213,1890, - 1,0,0,0,215,1903,1,0,0,0,217,1919,1,0,0,0,219,1939,1,0,0,0,221,1957, - 1,0,0,0,223,1978,1,0,0,0,225,1996,1,0,0,0,227,2019,1,0,0,0,229,2032, - 1,0,0,0,231,2042,1,0,0,0,233,2058,1,0,0,0,235,2076,1,0,0,0,237,2091, - 1,0,0,0,239,2109,1,0,0,0,241,2121,1,0,0,0,243,2129,1,0,0,0,245,2148, - 1,0,0,0,247,2159,1,0,0,0,249,2179,1,0,0,0,251,2191,1,0,0,0,253,2201, - 1,0,0,0,255,2207,1,0,0,0,257,2219,1,0,0,0,259,2236,1,0,0,0,261,2243, - 1,0,0,0,263,2255,1,0,0,0,265,2264,1,0,0,0,267,2274,1,0,0,0,269,2301, - 1,0,0,0,271,2315,1,0,0,0,273,2327,1,0,0,0,275,2335,1,0,0,0,277,2352, - 1,0,0,0,279,2365,1,0,0,0,281,2376,1,0,0,0,283,2396,1,0,0,0,285,2426, - 1,0,0,0,287,2451,1,0,0,0,289,2460,1,0,0,0,291,2479,1,0,0,0,293,2494, - 1,0,0,0,295,2511,1,0,0,0,297,2634,1,0,0,0,299,2646,1,0,0,0,301,2654, - 1,0,0,0,303,2660,1,0,0,0,305,2667,1,0,0,0,307,2669,1,0,0,0,309,2671, - 1,0,0,0,311,2676,1,0,0,0,313,2679,1,0,0,0,315,2685,1,0,0,0,317,2699, - 1,0,0,0,319,320,5,123,0,0,320,2,1,0,0,0,321,322,5,125,0,0,322,4, - 1,0,0,0,323,324,5,61,0,0,324,6,1,0,0,0,325,326,5,59,0,0,326,8,1, - 0,0,0,327,328,5,40,0,0,328,10,1,0,0,0,329,330,5,44,0,0,330,12,1, - 0,0,0,331,332,5,41,0,0,332,14,1,0,0,0,333,334,5,97,0,0,334,335,5, - 114,0,0,335,336,5,99,0,0,336,337,5,104,0,0,337,338,5,105,0,0,338, - 339,5,118,0,0,339,340,5,101,0,0,340,341,5,86,0,0,341,342,5,101,0, - 0,342,343,5,114,0,0,343,344,5,115,0,0,344,345,5,105,0,0,345,346, - 5,111,0,0,346,347,5,110,0,0,347,16,1,0,0,0,348,349,5,99,0,0,349, - 350,5,108,0,0,350,351,5,97,0,0,351,352,5,115,0,0,352,353,5,115,0, - 0,353,354,5,101,0,0,354,355,5,115,0,0,355,18,1,0,0,0,356,357,5,45, - 0,0,357,20,1,0,0,0,358,359,5,46,0,0,359,22,1,0,0,0,360,361,5,105, - 0,0,361,362,5,115,0,0,362,363,5,97,0,0,363,24,1,0,0,0,364,366,7, - 0,0,0,365,364,1,0,0,0,366,367,1,0,0,0,367,365,1,0,0,0,367,368,1, - 0,0,0,368,26,1,0,0,0,369,370,5,111,0,0,370,371,5,98,0,0,371,372, - 5,106,0,0,372,373,5,101,0,0,373,374,5,99,0,0,374,375,5,116,0,0,375, - 376,5,86,0,0,376,377,5,101,0,0,377,378,5,114,0,0,378,379,5,115,0, - 0,379,380,5,105,0,0,380,381,5,111,0,0,381,382,5,110,0,0,382,28,1, - 0,0,0,383,384,5,111,0,0,384,385,5,98,0,0,385,386,5,106,0,0,386,387, - 5,101,0,0,387,388,5,99,0,0,388,389,5,116,0,0,389,390,5,115,0,0,390, - 30,1,0,0,0,391,392,5,114,0,0,392,393,5,111,0,0,393,394,5,111,0,0, - 394,395,5,116,0,0,395,396,5,79,0,0,396,397,5,98,0,0,397,398,5,106, - 0,0,398,399,5,101,0,0,399,400,5,99,0,0,400,401,5,116,0,0,401,32, - 1,0,0,0,402,403,5,47,0,0,403,34,1,0,0,0,404,405,5,95,0,0,405,36, - 1,0,0,0,406,407,5,36,0,0,407,38,1,0,0,0,408,409,5,80,0,0,409,410, - 5,66,0,0,410,411,5,88,0,0,411,412,5,65,0,0,412,413,5,103,0,0,413, - 414,5,103,0,0,414,415,5,114,0,0,415,416,5,101,0,0,416,417,5,103, - 0,0,417,418,5,97,0,0,418,419,5,116,0,0,419,420,5,101,0,0,420,421, - 5,84,0,0,421,422,5,97,0,0,422,423,5,114,0,0,423,424,5,103,0,0,424, - 425,5,101,0,0,425,426,5,116,0,0,426,40,1,0,0,0,427,428,5,80,0,0, - 428,429,5,66,0,0,429,430,5,88,0,0,430,431,5,66,0,0,431,432,5,117, - 0,0,432,433,5,105,0,0,433,434,5,108,0,0,434,435,5,100,0,0,435,436, - 5,70,0,0,436,437,5,105,0,0,437,438,5,108,0,0,438,439,5,101,0,0,439, - 42,1,0,0,0,440,441,5,80,0,0,441,442,5,66,0,0,442,443,5,88,0,0,443, - 444,5,66,0,0,444,445,5,117,0,0,445,446,5,105,0,0,446,447,5,108,0, - 0,447,448,5,100,0,0,448,449,5,82,0,0,449,450,5,117,0,0,450,451,5, - 108,0,0,451,452,5,101,0,0,452,44,1,0,0,0,453,454,5,80,0,0,454,455, - 5,66,0,0,455,456,5,88,0,0,456,457,5,66,0,0,457,458,5,117,0,0,458, - 459,5,105,0,0,459,460,5,108,0,0,460,461,5,100,0,0,461,462,5,83,0, - 0,462,463,5,116,0,0,463,464,5,121,0,0,464,465,5,108,0,0,465,466, - 5,101,0,0,466,46,1,0,0,0,467,468,5,80,0,0,468,469,5,66,0,0,469,470, - 5,88,0,0,470,471,5,67,0,0,471,472,5,111,0,0,472,473,5,110,0,0,473, - 474,5,116,0,0,474,475,5,97,0,0,475,476,5,105,0,0,476,477,5,110,0, - 0,477,478,5,101,0,0,478,479,5,114,0,0,479,480,5,73,0,0,480,481,5, - 116,0,0,481,482,5,101,0,0,482,483,5,109,0,0,483,484,5,80,0,0,484, - 485,5,114,0,0,485,486,5,111,0,0,486,487,5,120,0,0,487,488,5,121, - 0,0,488,48,1,0,0,0,489,490,5,80,0,0,490,491,5,66,0,0,491,492,5,88, - 0,0,492,493,5,67,0,0,493,494,5,111,0,0,494,495,5,112,0,0,495,496, - 5,121,0,0,496,497,5,70,0,0,497,498,5,105,0,0,498,499,5,108,0,0,499, - 500,5,101,0,0,500,501,5,115,0,0,501,502,5,66,0,0,502,503,5,117,0, - 0,503,504,5,105,0,0,504,505,5,108,0,0,505,506,5,100,0,0,506,507, - 5,80,0,0,507,508,5,104,0,0,508,509,5,97,0,0,509,510,5,115,0,0,510, - 511,5,101,0,0,511,50,1,0,0,0,512,513,5,80,0,0,513,514,5,66,0,0,514, - 515,5,88,0,0,515,516,5,70,0,0,516,517,5,105,0,0,517,518,5,108,0, - 0,518,519,5,101,0,0,519,520,5,82,0,0,520,521,5,101,0,0,521,522,5, - 102,0,0,522,523,5,101,0,0,523,524,5,114,0,0,524,525,5,101,0,0,525, - 526,5,110,0,0,526,527,5,99,0,0,527,528,5,101,0,0,528,52,1,0,0,0, - 529,530,5,80,0,0,530,531,5,66,0,0,531,532,5,88,0,0,532,533,5,70, - 0,0,533,534,5,114,0,0,534,535,5,97,0,0,535,536,5,109,0,0,536,537, - 5,101,0,0,537,538,5,119,0,0,538,539,5,111,0,0,539,540,5,114,0,0, - 540,541,5,107,0,0,541,542,5,115,0,0,542,543,5,66,0,0,543,544,5,117, - 0,0,544,545,5,105,0,0,545,546,5,108,0,0,546,547,5,100,0,0,547,548, - 5,80,0,0,548,549,5,104,0,0,549,550,5,97,0,0,550,551,5,115,0,0,551, - 552,5,101,0,0,552,54,1,0,0,0,553,554,5,80,0,0,554,555,5,66,0,0,555, - 556,5,88,0,0,556,557,5,71,0,0,557,558,5,114,0,0,558,559,5,111,0, - 0,559,560,5,117,0,0,560,561,5,112,0,0,561,56,1,0,0,0,562,563,5,80, - 0,0,563,564,5,66,0,0,564,565,5,88,0,0,565,566,5,72,0,0,566,567,5, - 101,0,0,567,568,5,97,0,0,568,569,5,100,0,0,569,570,5,101,0,0,570, - 571,5,114,0,0,571,572,5,115,0,0,572,573,5,66,0,0,573,574,5,117,0, - 0,574,575,5,105,0,0,575,576,5,108,0,0,576,577,5,100,0,0,577,578, - 5,80,0,0,578,579,5,104,0,0,579,580,5,97,0,0,580,581,5,115,0,0,581, - 582,5,101,0,0,582,58,1,0,0,0,583,584,5,80,0,0,584,585,5,66,0,0,585, - 586,5,88,0,0,586,587,5,78,0,0,587,588,5,97,0,0,588,589,5,116,0,0, - 589,590,5,105,0,0,590,591,5,118,0,0,591,592,5,101,0,0,592,593,5, - 84,0,0,593,594,5,97,0,0,594,595,5,114,0,0,595,596,5,103,0,0,596, - 597,5,101,0,0,597,598,5,116,0,0,598,60,1,0,0,0,599,600,5,80,0,0, - 600,601,5,66,0,0,601,602,5,88,0,0,602,603,5,76,0,0,603,604,5,101, - 0,0,604,605,5,103,0,0,605,606,5,97,0,0,606,607,5,99,0,0,607,608, - 5,121,0,0,608,609,5,84,0,0,609,610,5,97,0,0,610,611,5,114,0,0,611, - 612,5,103,0,0,612,613,5,101,0,0,613,614,5,116,0,0,614,62,1,0,0,0, - 615,616,5,80,0,0,616,617,5,66,0,0,617,618,5,88,0,0,618,619,5,80, - 0,0,619,620,5,114,0,0,620,621,5,111,0,0,621,622,5,106,0,0,622,623, - 5,101,0,0,623,624,5,99,0,0,624,625,5,116,0,0,625,64,1,0,0,0,626, - 627,5,80,0,0,627,628,5,66,0,0,628,629,5,88,0,0,629,630,5,82,0,0, - 630,631,5,101,0,0,631,632,5,102,0,0,632,633,5,101,0,0,633,634,5, - 114,0,0,634,635,5,101,0,0,635,636,5,110,0,0,636,637,5,99,0,0,637, - 638,5,101,0,0,638,639,5,80,0,0,639,640,5,114,0,0,640,641,5,111,0, - 0,641,642,5,120,0,0,642,643,5,121,0,0,643,66,1,0,0,0,644,645,5,80, - 0,0,645,646,5,66,0,0,646,647,5,88,0,0,647,648,5,82,0,0,648,649,5, - 101,0,0,649,650,5,115,0,0,650,651,5,111,0,0,651,652,5,117,0,0,652, - 653,5,114,0,0,653,654,5,99,0,0,654,655,5,101,0,0,655,656,5,115,0, - 0,656,657,5,66,0,0,657,658,5,117,0,0,658,659,5,105,0,0,659,660,5, - 108,0,0,660,661,5,100,0,0,661,662,5,80,0,0,662,663,5,104,0,0,663, - 664,5,97,0,0,664,665,5,115,0,0,665,683,5,101,0,0,666,667,5,80,0, - 0,667,668,5,66,0,0,668,669,5,88,0,0,669,670,5,82,0,0,670,671,5,101, - 0,0,671,672,5,122,0,0,672,673,5,66,0,0,673,674,5,117,0,0,674,675, - 5,105,0,0,675,676,5,108,0,0,676,677,5,100,0,0,677,678,5,80,0,0,678, - 679,5,104,0,0,679,680,5,97,0,0,680,681,5,115,0,0,681,683,5,101,0, - 0,682,644,1,0,0,0,682,666,1,0,0,0,683,68,1,0,0,0,684,685,5,80,0, - 0,685,686,5,66,0,0,686,687,5,88,0,0,687,688,5,83,0,0,688,689,5,104, - 0,0,689,690,5,101,0,0,690,691,5,108,0,0,691,692,5,108,0,0,692,693, - 5,83,0,0,693,694,5,99,0,0,694,695,5,114,0,0,695,696,5,105,0,0,696, - 697,5,112,0,0,697,698,5,116,0,0,698,699,5,66,0,0,699,700,5,117,0, - 0,700,701,5,105,0,0,701,702,5,108,0,0,702,703,5,100,0,0,703,704, - 5,80,0,0,704,705,5,104,0,0,705,706,5,97,0,0,706,707,5,115,0,0,707, - 708,5,101,0,0,708,70,1,0,0,0,709,710,5,80,0,0,710,711,5,66,0,0,711, - 712,5,88,0,0,712,713,5,83,0,0,713,714,5,104,0,0,714,715,5,101,0, - 0,715,716,5,108,0,0,716,717,5,108,0,0,717,718,5,66,0,0,718,719,5, - 117,0,0,719,720,5,105,0,0,720,721,5,108,0,0,721,722,5,100,0,0,722, - 723,5,80,0,0,723,724,5,104,0,0,724,725,5,97,0,0,725,726,5,115,0, - 0,726,727,5,101,0,0,727,72,1,0,0,0,728,729,5,80,0,0,729,730,5,66, - 0,0,730,731,5,88,0,0,731,732,5,83,0,0,732,733,5,111,0,0,733,734, - 5,117,0,0,734,735,5,114,0,0,735,736,5,99,0,0,736,737,5,101,0,0,737, - 738,5,115,0,0,738,739,5,66,0,0,739,740,5,117,0,0,740,741,5,105,0, - 0,741,742,5,108,0,0,742,743,5,100,0,0,743,744,5,80,0,0,744,745,5, - 104,0,0,745,746,5,97,0,0,746,747,5,115,0,0,747,748,5,101,0,0,748, - 74,1,0,0,0,749,750,5,80,0,0,750,751,5,66,0,0,751,752,5,88,0,0,752, - 753,5,84,0,0,753,754,5,97,0,0,754,755,5,114,0,0,755,756,5,103,0, - 0,756,757,5,101,0,0,757,758,5,116,0,0,758,759,5,68,0,0,759,760,5, - 101,0,0,760,761,5,112,0,0,761,762,5,101,0,0,762,763,5,110,0,0,763, - 764,5,100,0,0,764,765,5,101,0,0,765,766,5,110,0,0,766,767,5,99,0, - 0,767,768,5,121,0,0,768,76,1,0,0,0,769,770,5,80,0,0,770,771,5,66, - 0,0,771,772,5,88,0,0,772,773,5,86,0,0,773,774,5,97,0,0,774,775,5, - 114,0,0,775,776,5,105,0,0,776,777,5,97,0,0,777,778,5,110,0,0,778, - 779,5,116,0,0,779,780,5,71,0,0,780,781,5,114,0,0,781,782,5,111,0, - 0,782,783,5,117,0,0,783,784,5,112,0,0,784,78,1,0,0,0,785,786,5,88, - 0,0,786,787,5,67,0,0,787,788,5,66,0,0,788,789,5,117,0,0,789,790, - 5,105,0,0,790,791,5,108,0,0,791,792,5,100,0,0,792,793,5,67,0,0,793, - 794,5,111,0,0,794,795,5,110,0,0,795,796,5,102,0,0,796,797,5,105, - 0,0,797,798,5,103,0,0,798,799,5,117,0,0,799,800,5,114,0,0,800,801, - 5,97,0,0,801,802,5,116,0,0,802,803,5,105,0,0,803,804,5,111,0,0,804, - 805,5,110,0,0,805,80,1,0,0,0,806,807,5,88,0,0,807,808,5,67,0,0,808, - 809,5,67,0,0,809,810,5,111,0,0,810,811,5,110,0,0,811,812,5,102,0, - 0,812,813,5,105,0,0,813,814,5,103,0,0,814,815,5,117,0,0,815,816, - 5,114,0,0,816,817,5,97,0,0,817,818,5,116,0,0,818,819,5,105,0,0,819, - 820,5,111,0,0,820,821,5,110,0,0,821,822,5,76,0,0,822,823,5,105,0, - 0,823,824,5,115,0,0,824,825,5,116,0,0,825,82,1,0,0,0,826,827,5,88, - 0,0,827,828,5,67,0,0,828,829,5,82,0,0,829,830,5,101,0,0,830,831, - 5,109,0,0,831,832,5,111,0,0,832,833,5,116,0,0,833,834,5,101,0,0, - 834,835,5,83,0,0,835,836,5,119,0,0,836,837,5,105,0,0,837,838,5,102, - 0,0,838,839,5,116,0,0,839,840,5,80,0,0,840,841,5,97,0,0,841,842, - 5,99,0,0,842,843,5,107,0,0,843,844,5,97,0,0,844,845,5,103,0,0,845, - 846,5,101,0,0,846,847,5,82,0,0,847,848,5,101,0,0,848,849,5,102,0, - 0,849,850,5,101,0,0,850,851,5,114,0,0,851,852,5,101,0,0,852,853, - 5,110,0,0,853,854,5,99,0,0,854,855,5,101,0,0,855,84,1,0,0,0,856, - 857,5,88,0,0,857,858,5,67,0,0,858,859,5,83,0,0,859,860,5,119,0,0, - 860,861,5,105,0,0,861,862,5,102,0,0,862,863,5,116,0,0,863,864,5, - 80,0,0,864,865,5,97,0,0,865,866,5,99,0,0,866,867,5,107,0,0,867,868, - 5,97,0,0,868,869,5,103,0,0,869,870,5,101,0,0,870,871,5,80,0,0,871, - 872,5,114,0,0,872,873,5,111,0,0,873,874,5,100,0,0,874,875,5,117, - 0,0,875,876,5,99,0,0,876,877,5,116,0,0,877,878,5,68,0,0,878,879, - 5,101,0,0,879,880,5,112,0,0,880,881,5,101,0,0,881,882,5,110,0,0, - 882,883,5,100,0,0,883,884,5,101,0,0,884,885,5,110,0,0,885,886,5, - 99,0,0,886,887,5,121,0,0,887,86,1,0,0,0,888,889,5,88,0,0,889,890, - 5,67,0,0,890,891,5,86,0,0,891,892,5,101,0,0,892,893,5,114,0,0,893, - 894,5,115,0,0,894,895,5,105,0,0,895,896,5,111,0,0,896,897,5,110, - 0,0,897,898,5,71,0,0,898,899,5,114,0,0,899,900,5,111,0,0,900,901, - 5,117,0,0,901,902,5,112,0,0,902,88,1,0,0,0,903,904,5,97,0,0,904, - 905,5,108,0,0,905,906,5,119,0,0,906,907,5,97,0,0,907,908,5,121,0, - 0,908,909,5,115,0,0,909,910,5,79,0,0,910,911,5,117,0,0,911,912,5, - 116,0,0,912,913,5,79,0,0,913,914,5,102,0,0,914,915,5,68,0,0,915, - 916,5,97,0,0,916,917,5,116,0,0,917,918,5,101,0,0,918,90,1,0,0,0, - 919,920,5,102,0,0,920,921,5,105,0,0,921,922,5,108,0,0,922,923,5, - 101,0,0,923,924,5,82,0,0,924,925,5,101,0,0,925,926,5,102,0,0,926, - 92,1,0,0,0,927,928,5,112,0,0,928,929,5,114,0,0,929,930,5,111,0,0, - 930,931,5,100,0,0,931,932,5,117,0,0,932,933,5,99,0,0,933,934,5,116, - 0,0,934,935,5,82,0,0,935,936,5,101,0,0,936,937,5,102,0,0,937,94, - 1,0,0,0,938,939,5,99,0,0,939,940,5,111,0,0,940,941,5,110,0,0,941, - 942,5,116,0,0,942,943,5,97,0,0,943,944,5,105,0,0,944,945,5,110,0, - 0,945,946,5,101,0,0,946,947,5,114,0,0,947,948,5,80,0,0,948,949,5, - 111,0,0,949,950,5,114,0,0,950,951,5,116,0,0,951,952,5,97,0,0,952, - 953,5,108,0,0,953,96,1,0,0,0,954,955,5,112,0,0,955,956,5,114,0,0, - 956,957,5,111,0,0,957,958,5,120,0,0,958,959,5,121,0,0,959,960,5, - 84,0,0,960,961,5,121,0,0,961,962,5,112,0,0,962,963,5,101,0,0,963, - 98,1,0,0,0,964,965,5,114,0,0,965,966,5,101,0,0,966,967,5,109,0,0, - 967,968,5,111,0,0,968,969,5,116,0,0,969,970,5,101,0,0,970,971,5, - 71,0,0,971,972,5,108,0,0,972,973,5,111,0,0,973,974,5,98,0,0,974, - 975,5,97,0,0,975,976,5,108,0,0,976,977,5,73,0,0,977,978,5,68,0,0, - 978,979,5,83,0,0,979,980,5,116,0,0,980,981,5,114,0,0,981,982,5,105, - 0,0,982,983,5,110,0,0,983,984,5,103,0,0,984,100,1,0,0,0,985,986, - 5,114,0,0,986,987,5,101,0,0,987,988,5,109,0,0,988,989,5,111,0,0, - 989,990,5,116,0,0,990,991,5,101,0,0,991,992,5,73,0,0,992,993,5,110, - 0,0,993,994,5,102,0,0,994,995,5,111,0,0,995,102,1,0,0,0,996,997, - 5,102,0,0,997,998,5,105,0,0,998,999,5,108,0,0,999,1000,5,101,0,0, - 1000,1001,5,69,0,0,1001,1002,5,110,0,0,1002,1003,5,99,0,0,1003,1004, - 5,111,0,0,1004,1005,5,100,0,0,1005,1006,5,105,0,0,1006,1007,5,110, - 0,0,1007,1008,5,103,0,0,1008,104,1,0,0,0,1009,1010,5,99,0,0,1010, - 1011,5,111,0,0,1011,1012,5,109,0,0,1012,1013,5,109,0,0,1013,1014, - 5,101,0,0,1014,1015,5,110,0,0,1015,1016,5,116,0,0,1016,1017,5,115, - 0,0,1017,106,1,0,0,0,1018,1019,5,101,0,0,1019,1020,5,120,0,0,1020, - 1021,5,112,0,0,1021,1022,5,108,0,0,1022,1023,5,105,0,0,1023,1024, - 5,99,0,0,1024,1025,5,105,0,0,1025,1026,5,116,0,0,1026,1027,5,70, - 0,0,1027,1028,5,105,0,0,1028,1029,5,108,0,0,1029,1030,5,101,0,0, - 1030,1031,5,84,0,0,1031,1032,5,121,0,0,1032,1033,5,112,0,0,1033, - 1034,5,101,0,0,1034,108,1,0,0,0,1035,1036,5,108,0,0,1036,1037,5, - 97,0,0,1037,1038,5,115,0,0,1038,1039,5,116,0,0,1039,1040,5,75,0, - 0,1040,1041,5,110,0,0,1041,1042,5,111,0,0,1042,1043,5,119,0,0,1043, - 1044,5,110,0,0,1044,1045,5,70,0,0,1045,1046,5,105,0,0,1046,1047, - 5,108,0,0,1047,1048,5,101,0,0,1048,1049,5,84,0,0,1049,1050,5,121, - 0,0,1050,1051,5,112,0,0,1051,1052,5,101,0,0,1052,110,1,0,0,0,1053, - 1054,5,105,0,0,1054,1055,5,110,0,0,1055,1056,5,99,0,0,1056,1057, - 5,108,0,0,1057,1058,5,117,0,0,1058,1059,5,100,0,0,1059,1060,5,101, - 0,0,1060,1061,5,73,0,0,1061,1062,5,110,0,0,1062,1063,5,73,0,0,1063, - 1064,5,110,0,0,1064,1065,5,100,0,0,1065,1066,5,101,0,0,1066,1067, - 5,120,0,0,1067,112,1,0,0,0,1068,1069,5,105,0,0,1069,1070,5,110,0, - 0,1070,1071,5,100,0,0,1071,1072,5,101,0,0,1072,1073,5,110,0,0,1073, - 1074,5,116,0,0,1074,1075,5,87,0,0,1075,1076,5,105,0,0,1076,1077, - 5,100,0,0,1077,1078,5,116,0,0,1078,1079,5,104,0,0,1079,114,1,0,0, - 0,1080,1081,5,116,0,0,1081,1082,5,97,0,0,1082,1083,5,98,0,0,1083, - 1084,5,87,0,0,1084,1085,5,105,0,0,1085,1086,5,100,0,0,1086,1087, - 5,116,0,0,1087,1088,5,104,0,0,1088,116,1,0,0,0,1089,1090,5,117,0, - 0,1090,1091,5,115,0,0,1091,1092,5,101,0,0,1092,1093,5,115,0,0,1093, - 1094,5,84,0,0,1094,1095,5,97,0,0,1095,1096,5,98,0,0,1096,1097,5, - 115,0,0,1097,118,1,0,0,0,1098,1099,5,119,0,0,1099,1100,5,114,0,0, - 1100,1101,5,97,0,0,1101,1102,5,112,0,0,1102,1103,5,115,0,0,1103, - 1104,5,76,0,0,1104,1105,5,105,0,0,1105,1106,5,110,0,0,1106,1107, - 5,101,0,0,1107,1108,5,115,0,0,1108,120,1,0,0,0,1109,1110,5,112,0, - 0,1110,1111,5,108,0,0,1111,1112,5,97,0,0,1112,1113,5,116,0,0,1113, - 1114,5,102,0,0,1114,1115,5,111,0,0,1115,1116,5,114,0,0,1116,1117, - 5,109,0,0,1117,1118,5,70,0,0,1118,1119,5,105,0,0,1119,1120,5,108, - 0,0,1120,1121,5,116,0,0,1121,1122,5,101,0,0,1122,1123,5,114,0,0, - 1123,122,1,0,0,0,1124,1125,5,112,0,0,1125,1126,5,108,0,0,1126,1127, - 5,97,0,0,1127,1128,5,116,0,0,1128,1129,5,102,0,0,1129,1130,5,111, - 0,0,1130,1131,5,114,0,0,1131,1132,5,109,0,0,1132,1133,5,70,0,0,1133, - 1134,5,105,0,0,1134,1135,5,108,0,0,1135,1136,5,116,0,0,1136,1137, - 5,101,0,0,1137,1138,5,114,0,0,1138,1139,5,115,0,0,1139,124,1,0,0, - 0,1140,1141,5,99,0,0,1141,1142,5,104,0,0,1142,1143,5,105,0,0,1143, - 1144,5,108,0,0,1144,1145,5,100,0,0,1145,1146,5,114,0,0,1146,1147, - 5,101,0,0,1147,1148,5,110,0,0,1148,126,1,0,0,0,1149,1150,5,112,0, - 0,1150,1151,5,114,0,0,1151,1152,5,111,0,0,1152,1153,5,100,0,0,1153, - 1154,5,117,0,0,1154,1155,5,99,0,0,1155,1156,5,116,0,0,1156,1157, - 5,73,0,0,1157,1158,5,110,0,0,1158,1159,5,115,0,0,1159,1160,5,116, - 0,0,1160,1161,5,97,0,0,1161,1162,5,108,0,0,1162,1163,5,108,0,0,1163, - 1164,5,80,0,0,1164,1165,5,97,0,0,1165,1166,5,116,0,0,1166,1167,5, - 104,0,0,1167,128,1,0,0,0,1168,1169,5,114,0,0,1169,1170,5,101,0,0, - 1170,1171,5,112,0,0,1171,1172,5,111,0,0,1172,1173,5,115,0,0,1173, - 1174,5,105,0,0,1174,1175,5,116,0,0,1175,1176,5,111,0,0,1176,1177, - 5,114,0,0,1177,1178,5,121,0,0,1178,1179,5,85,0,0,1179,1180,5,82, - 0,0,1180,1181,5,76,0,0,1181,130,1,0,0,0,1182,1183,5,114,0,0,1183, - 1184,5,101,0,0,1184,1185,5,113,0,0,1185,1186,5,117,0,0,1186,1187, - 5,105,0,0,1187,1188,5,114,0,0,1188,1189,5,101,0,0,1189,1190,5,109, - 0,0,1190,1191,5,101,0,0,1191,1192,5,110,0,0,1192,1193,5,116,0,0, - 1193,132,1,0,0,0,1194,1195,5,112,0,0,1195,1196,5,97,0,0,1196,1197, - 5,99,0,0,1197,1198,5,107,0,0,1198,1199,5,97,0,0,1199,1200,5,103, - 0,0,1200,1201,5,101,0,0,1201,134,1,0,0,0,1202,1203,5,112,0,0,1203, - 1204,5,97,0,0,1204,1205,5,99,0,0,1205,1206,5,107,0,0,1206,1207,5, - 97,0,0,1207,1208,5,103,0,0,1208,1209,5,101,0,0,1209,1210,5,80,0, - 0,1210,1211,5,114,0,0,1211,1212,5,111,0,0,1212,1213,5,100,0,0,1213, - 1214,5,117,0,0,1214,1215,5,99,0,0,1215,1216,5,116,0,0,1216,1217, - 5,68,0,0,1217,1218,5,101,0,0,1218,1219,5,112,0,0,1219,1220,5,101, - 0,0,1220,1221,5,110,0,0,1221,1222,5,100,0,0,1222,1223,5,101,0,0, - 1223,1224,5,110,0,0,1224,1225,5,99,0,0,1225,1226,5,105,0,0,1226, - 1227,5,101,0,0,1227,1228,5,115,0,0,1228,136,1,0,0,0,1229,1230,5, - 110,0,0,1230,1231,5,97,0,0,1231,1232,5,109,0,0,1232,1233,5,101,0, - 0,1233,138,1,0,0,0,1234,1235,5,112,0,0,1235,1236,5,97,0,0,1236,1237, - 5,116,0,0,1237,1238,5,104,0,0,1238,140,1,0,0,0,1239,1240,5,115,0, - 0,1240,1241,5,111,0,0,1241,1242,5,117,0,0,1242,1243,5,114,0,0,1243, - 1244,5,99,0,0,1244,1245,5,101,0,0,1245,1246,5,84,0,0,1246,1247,5, - 114,0,0,1247,1248,5,101,0,0,1248,1249,5,101,0,0,1249,142,1,0,0,0, - 1250,1251,5,98,0,0,1251,1252,5,117,0,0,1252,1253,5,105,0,0,1253, - 1254,5,108,0,0,1254,1255,5,100,0,0,1255,1256,5,65,0,0,1256,1257, - 5,99,0,0,1257,1258,5,116,0,0,1258,1259,5,105,0,0,1259,1260,5,111, - 0,0,1260,1261,5,110,0,0,1261,1262,5,77,0,0,1262,1263,5,97,0,0,1263, - 1264,5,115,0,0,1264,1265,5,107,0,0,1265,144,1,0,0,0,1266,1267,5, - 102,0,0,1267,1268,5,105,0,0,1268,1269,5,108,0,0,1269,1270,5,101, - 0,0,1270,1271,5,115,0,0,1271,146,1,0,0,0,1272,1273,5,114,0,0,1273, - 1274,5,117,0,0,1274,1275,5,110,0,0,1275,1276,5,79,0,0,1276,1277, - 5,110,0,0,1277,1278,5,108,0,0,1278,1279,5,121,0,0,1279,1280,5,70, - 0,0,1280,1281,5,111,0,0,1281,1282,5,114,0,0,1282,1283,5,68,0,0,1283, - 1284,5,101,0,0,1284,1285,5,112,0,0,1285,1286,5,108,0,0,1286,1287, - 5,111,0,0,1287,1288,5,121,0,0,1288,1289,5,109,0,0,1289,1290,5,101, - 0,0,1290,1291,5,110,0,0,1291,1292,5,116,0,0,1292,1293,5,80,0,0,1293, - 1294,5,111,0,0,1294,1295,5,115,0,0,1295,1296,5,116,0,0,1296,1297, - 5,112,0,0,1297,1298,5,114,0,0,1298,1299,5,111,0,0,1299,1300,5,99, - 0,0,1300,1301,5,101,0,0,1301,1302,5,115,0,0,1302,1303,5,115,0,0, - 1303,1304,5,105,0,0,1304,1305,5,110,0,0,1305,1306,5,103,0,0,1306, - 148,1,0,0,0,1307,1308,5,98,0,0,1308,1309,5,117,0,0,1309,1310,5,105, - 0,0,1310,1311,5,108,0,0,1311,1312,5,100,0,0,1312,1313,5,67,0,0,1313, - 1314,5,111,0,0,1314,1315,5,110,0,0,1315,1316,5,102,0,0,1316,1317, - 5,105,0,0,1317,1318,5,103,0,0,1318,1319,5,117,0,0,1319,1320,5,114, - 0,0,1320,1321,5,97,0,0,1321,1322,5,116,0,0,1322,1323,5,105,0,0,1323, - 1324,5,111,0,0,1324,1325,5,110,0,0,1325,1326,5,76,0,0,1326,1327, - 5,105,0,0,1327,1328,5,115,0,0,1328,1329,5,116,0,0,1329,150,1,0,0, - 0,1330,1331,5,98,0,0,1331,1332,5,117,0,0,1332,1333,5,105,0,0,1333, - 1334,5,108,0,0,1334,1335,5,100,0,0,1335,1336,5,80,0,0,1336,1337, - 5,104,0,0,1337,1338,5,97,0,0,1338,1339,5,115,0,0,1339,1340,5,101, - 0,0,1340,1341,5,115,0,0,1341,152,1,0,0,0,1342,1343,5,98,0,0,1343, - 1344,5,117,0,0,1344,1345,5,105,0,0,1345,1346,5,108,0,0,1346,1347, - 5,100,0,0,1347,1348,5,82,0,0,1348,1349,5,117,0,0,1349,1350,5,108, - 0,0,1350,1351,5,101,0,0,1351,1352,5,115,0,0,1352,154,1,0,0,0,1353, - 1354,5,98,0,0,1354,1355,5,117,0,0,1355,1356,5,105,0,0,1356,1357, - 5,108,0,0,1357,1358,5,100,0,0,1358,1359,5,65,0,0,1359,1360,5,114, - 0,0,1360,1361,5,103,0,0,1361,1362,5,117,0,0,1362,1363,5,109,0,0, - 1363,1364,5,101,0,0,1364,1365,5,110,0,0,1365,1366,5,116,0,0,1366, - 1367,5,115,0,0,1367,1368,5,83,0,0,1368,1369,5,116,0,0,1369,1370, - 5,114,0,0,1370,1371,5,105,0,0,1371,1372,5,110,0,0,1372,1373,5,103, - 0,0,1373,156,1,0,0,0,1374,1375,5,98,0,0,1375,1376,5,117,0,0,1376, - 1377,5,105,0,0,1377,1378,5,108,0,0,1378,1379,5,100,0,0,1379,1380, - 5,84,0,0,1380,1381,5,111,0,0,1381,1382,5,111,0,0,1382,1383,5,108, - 0,0,1383,1384,5,80,0,0,1384,1385,5,97,0,0,1385,1386,5,116,0,0,1386, - 1387,5,104,0,0,1387,158,1,0,0,0,1388,1389,5,98,0,0,1389,1390,5,117, - 0,0,1390,1391,5,105,0,0,1391,1392,5,108,0,0,1392,1393,5,100,0,0, - 1393,1394,5,87,0,0,1394,1395,5,111,0,0,1395,1396,5,114,0,0,1396, - 1397,5,107,0,0,1397,1398,5,105,0,0,1398,1399,5,110,0,0,1399,1400, - 5,103,0,0,1400,1401,5,68,0,0,1401,1402,5,105,0,0,1402,1403,5,114, - 0,0,1403,1404,5,101,0,0,1404,1405,5,99,0,0,1405,1406,5,116,0,0,1406, - 1407,5,111,0,0,1407,1408,5,114,0,0,1408,1409,5,121,0,0,1409,160, - 1,0,0,0,1410,1411,5,112,0,0,1411,1412,5,97,0,0,1412,1413,5,115,0, - 0,1413,1414,5,115,0,0,1414,1415,5,66,0,0,1415,1416,5,117,0,0,1416, - 1417,5,105,0,0,1417,1418,5,108,0,0,1418,1419,5,100,0,0,1419,1420, - 5,83,0,0,1420,1421,5,101,0,0,1421,1422,5,116,0,0,1422,1423,5,116, - 0,0,1423,1424,5,105,0,0,1424,1425,5,110,0,0,1425,1426,5,103,0,0, - 1426,1427,5,115,0,0,1427,1428,5,73,0,0,1428,1429,5,110,0,0,1429, - 1430,5,69,0,0,1430,1431,5,110,0,0,1431,1432,5,118,0,0,1432,1433, - 5,105,0,0,1433,1434,5,114,0,0,1434,1435,5,111,0,0,1435,1436,5,110, - 0,0,1436,1437,5,109,0,0,1437,1438,5,101,0,0,1438,1439,5,110,0,0, - 1439,1440,5,116,0,0,1440,162,1,0,0,0,1441,1442,5,100,0,0,1442,1443, - 5,101,0,0,1443,1444,5,112,0,0,1444,1445,5,101,0,0,1445,1446,5,110, - 0,0,1446,1447,5,100,0,0,1447,1448,5,101,0,0,1448,1449,5,110,0,0, - 1449,1450,5,99,0,0,1450,1451,5,105,0,0,1451,1452,5,101,0,0,1452, - 1453,5,115,0,0,1453,164,1,0,0,0,1454,1455,5,112,0,0,1455,1456,5, - 114,0,0,1456,1457,5,111,0,0,1457,1458,5,100,0,0,1458,1459,5,117, - 0,0,1459,1460,5,99,0,0,1460,1461,5,116,0,0,1461,1462,5,78,0,0,1462, - 1463,5,97,0,0,1463,1464,5,109,0,0,1464,1465,5,101,0,0,1465,166,1, - 0,0,0,1466,1467,5,112,0,0,1467,1468,5,114,0,0,1468,1469,5,111,0, - 0,1469,1470,5,100,0,0,1470,1471,5,117,0,0,1471,1472,5,99,0,0,1472, - 1473,5,116,0,0,1473,1474,5,82,0,0,1474,1475,5,101,0,0,1475,1476, - 5,102,0,0,1476,1477,5,101,0,0,1477,1478,5,114,0,0,1478,1479,5,101, - 0,0,1479,1480,5,110,0,0,1480,1481,5,99,0,0,1481,1482,5,101,0,0,1482, - 168,1,0,0,0,1483,1484,5,112,0,0,1484,1485,5,114,0,0,1485,1486,5, - 111,0,0,1486,1487,5,100,0,0,1487,1488,5,117,0,0,1488,1489,5,99,0, - 0,1489,1490,5,116,0,0,1490,1491,5,84,0,0,1491,1492,5,121,0,0,1492, - 1493,5,112,0,0,1493,1494,5,101,0,0,1494,170,1,0,0,0,1495,1496,5, - 108,0,0,1496,1497,5,105,0,0,1497,1498,5,110,0,0,1498,1499,5,101, - 0,0,1499,1500,5,69,0,0,1500,1501,5,110,0,0,1501,1502,5,100,0,0,1502, - 1503,5,105,0,0,1503,1504,5,110,0,0,1504,1505,5,103,0,0,1505,172, - 1,0,0,0,1506,1507,5,120,0,0,1507,1508,5,99,0,0,1508,1509,5,76,0, - 0,1509,1510,5,97,0,0,1510,1511,5,110,0,0,1511,1512,5,103,0,0,1512, - 1513,5,117,0,0,1513,1514,5,97,0,0,1514,1515,5,103,0,0,1515,1516, - 5,101,0,0,1516,1517,5,83,0,0,1517,1518,5,112,0,0,1518,1519,5,101, - 0,0,1519,1520,5,99,0,0,1520,1521,5,105,0,0,1521,1522,5,102,0,0,1522, - 1523,5,105,0,0,1523,1524,5,99,0,0,1524,1525,5,97,0,0,1525,1526,5, - 116,0,0,1526,1527,5,105,0,0,1527,1528,5,111,0,0,1528,1529,5,110, - 0,0,1529,1530,5,73,0,0,1530,1531,5,100,0,0,1531,1532,5,101,0,0,1532, - 1533,5,110,0,0,1533,1534,5,116,0,0,1534,1535,5,105,0,0,1535,1536, - 5,102,0,0,1536,1537,5,105,0,0,1537,1538,5,101,0,0,1538,1539,5,114, - 0,0,1539,174,1,0,0,0,1540,1541,5,112,0,0,1541,1542,5,108,0,0,1542, - 1543,5,105,0,0,1543,1544,5,115,0,0,1544,1545,5,116,0,0,1545,1546, - 5,83,0,0,1546,1547,5,116,0,0,1547,1548,5,114,0,0,1548,1549,5,117, - 0,0,1549,1550,5,99,0,0,1550,1551,5,116,0,0,1551,1552,5,117,0,0,1552, - 1553,5,114,0,0,1553,1554,5,101,0,0,1554,1555,5,68,0,0,1555,1556, - 5,101,0,0,1556,1557,5,102,0,0,1557,1558,5,105,0,0,1558,1559,5,110, - 0,0,1559,1560,5,105,0,0,1560,1561,5,116,0,0,1561,1562,5,105,0,0, - 1562,1563,5,111,0,0,1563,1564,5,110,0,0,1564,1565,5,73,0,0,1565, - 1566,5,100,0,0,1566,1567,5,101,0,0,1567,1568,5,110,0,0,1568,1569, - 5,116,0,0,1569,1570,5,105,0,0,1570,1571,5,102,0,0,1571,1572,5,105, - 0,0,1572,1573,5,101,0,0,1573,1574,5,114,0,0,1574,176,1,0,0,0,1575, - 1576,5,114,0,0,1576,1577,5,101,0,0,1577,1578,5,102,0,0,1578,1579, - 5,84,0,0,1579,1580,5,121,0,0,1580,1581,5,112,0,0,1581,1582,5,101, - 0,0,1582,178,1,0,0,0,1583,1584,5,99,0,0,1584,1585,5,111,0,0,1585, - 1586,5,109,0,0,1586,1587,5,112,0,0,1587,1588,5,105,0,0,1588,1589, - 5,108,0,0,1589,1590,5,101,0,0,1590,1591,5,114,0,0,1591,1592,5,83, - 0,0,1592,1593,5,112,0,0,1593,1594,5,101,0,0,1594,1595,5,99,0,0,1595, - 180,1,0,0,0,1596,1597,5,102,0,0,1597,1598,5,105,0,0,1598,1599,5, - 108,0,0,1599,1600,5,101,0,0,1600,1601,5,80,0,0,1601,1602,5,97,0, - 0,1602,1603,5,116,0,0,1603,1604,5,116,0,0,1604,1605,5,101,0,0,1605, - 1606,5,114,0,0,1606,1607,5,110,0,0,1607,1608,5,115,0,0,1608,182, - 1,0,0,0,1609,1610,5,105,0,0,1610,1611,5,110,0,0,1611,1612,5,112, - 0,0,1612,1613,5,117,0,0,1613,1614,5,116,0,0,1614,1615,5,70,0,0,1615, - 1616,5,105,0,0,1616,1617,5,108,0,0,1617,1618,5,101,0,0,1618,1619, - 5,115,0,0,1619,184,1,0,0,0,1620,1621,5,105,0,0,1621,1622,5,115,0, - 0,1622,1623,5,69,0,0,1623,1624,5,100,0,0,1624,1625,5,105,0,0,1625, - 1626,5,116,0,0,1626,1627,5,97,0,0,1627,1628,5,98,0,0,1628,1629,5, - 108,0,0,1629,1630,5,101,0,0,1630,186,1,0,0,0,1631,1632,5,111,0,0, - 1632,1633,5,117,0,0,1633,1634,5,116,0,0,1634,1635,5,112,0,0,1635, - 1636,5,117,0,0,1636,1637,5,116,0,0,1637,1638,5,70,0,0,1638,1639, - 5,105,0,0,1639,1640,5,108,0,0,1640,1641,5,101,0,0,1641,1642,5,115, - 0,0,1642,188,1,0,0,0,1643,1644,5,114,0,0,1644,1645,5,117,0,0,1645, - 1646,5,110,0,0,1646,1647,5,79,0,0,1647,1648,5,110,0,0,1648,1649, - 5,99,0,0,1649,1650,5,101,0,0,1650,1651,5,80,0,0,1651,1652,5,101, - 0,0,1652,1653,5,114,0,0,1653,1654,5,65,0,0,1654,1655,5,114,0,0,1655, - 1656,5,99,0,0,1656,1657,5,104,0,0,1657,1658,5,105,0,0,1658,1659, - 5,116,0,0,1659,1660,5,101,0,0,1660,1661,5,99,0,0,1661,1662,5,116, - 0,0,1662,1663,5,117,0,0,1663,1664,5,114,0,0,1664,1665,5,101,0,0, - 1665,190,1,0,0,0,1666,1667,5,115,0,0,1667,1668,5,99,0,0,1668,1669, - 5,114,0,0,1669,1670,5,105,0,0,1670,1671,5,112,0,0,1671,1672,5,116, - 0,0,1672,192,1,0,0,0,1673,1674,5,97,0,0,1674,1675,5,116,0,0,1675, - 1676,5,116,0,0,1676,1677,5,114,0,0,1677,1678,5,105,0,0,1678,1679, - 5,98,0,0,1679,1680,5,117,0,0,1680,1681,5,116,0,0,1681,1682,5,101, - 0,0,1682,1683,5,115,0,0,1683,194,1,0,0,0,1684,1685,5,76,0,0,1685, - 1686,5,97,0,0,1686,1687,5,115,0,0,1687,1688,5,116,0,0,1688,1689, - 5,83,0,0,1689,1690,5,119,0,0,1690,1691,5,105,0,0,1691,1692,5,102, - 0,0,1692,1693,5,116,0,0,1693,1694,5,77,0,0,1694,1695,5,105,0,0,1695, - 1696,5,103,0,0,1696,1697,5,114,0,0,1697,1698,5,97,0,0,1698,1699, - 5,116,0,0,1699,1700,5,105,0,0,1700,1701,5,111,0,0,1701,1702,5,110, - 0,0,1702,196,1,0,0,0,1703,1704,5,68,0,0,1704,1705,5,101,0,0,1705, - 1706,5,102,0,0,1706,1707,5,97,0,0,1707,1708,5,117,0,0,1708,1709, - 5,108,0,0,1709,1710,5,116,0,0,1710,1711,5,66,0,0,1711,1712,5,117, - 0,0,1712,1713,5,105,0,0,1713,1714,5,108,0,0,1714,1715,5,100,0,0, - 1715,1716,5,83,0,0,1716,1717,5,121,0,0,1717,1718,5,115,0,0,1718, - 1719,5,116,0,0,1719,1720,5,101,0,0,1720,1721,5,109,0,0,1721,1722, - 5,84,0,0,1722,1723,5,121,0,0,1723,1724,5,112,0,0,1724,1725,5,101, - 0,0,1725,1726,5,70,0,0,1726,1727,5,111,0,0,1727,1728,5,114,0,0,1728, - 1729,5,87,0,0,1729,1730,5,111,0,0,1730,1731,5,114,0,0,1731,1732, - 5,107,0,0,1732,1733,5,115,0,0,1733,1734,5,112,0,0,1734,1735,5,97, - 0,0,1735,1736,5,99,0,0,1736,1737,5,101,0,0,1737,198,1,0,0,0,1738, - 1739,5,76,0,0,1739,1740,5,97,0,0,1740,1741,5,115,0,0,1741,1742,5, - 116,0,0,1742,1743,5,83,0,0,1743,1744,5,119,0,0,1744,1745,5,105,0, - 0,1745,1746,5,102,0,0,1746,1747,5,116,0,0,1747,1748,5,85,0,0,1748, - 1749,5,112,0,0,1749,1750,5,100,0,0,1750,1751,5,97,0,0,1751,1752, - 5,116,0,0,1752,1753,5,101,0,0,1753,1754,5,67,0,0,1754,1755,5,104, - 0,0,1755,1756,5,101,0,0,1756,1757,5,99,0,0,1757,1758,5,107,0,0,1758, - 200,1,0,0,0,1759,1760,5,66,0,0,1760,1761,5,117,0,0,1761,1762,5,105, - 0,0,1762,1763,5,108,0,0,1763,1764,5,100,0,0,1764,1765,5,73,0,0,1765, - 1766,5,110,0,0,1766,1767,5,100,0,0,1767,1768,5,101,0,0,1768,1769, - 5,112,0,0,1769,1770,5,101,0,0,1770,1771,5,110,0,0,1771,1772,5,100, - 0,0,1772,1773,5,101,0,0,1773,1774,5,110,0,0,1774,1775,5,116,0,0, - 1775,1776,5,84,0,0,1776,1777,5,97,0,0,1777,1778,5,114,0,0,1778,1779, - 5,103,0,0,1779,1780,5,101,0,0,1780,1781,5,116,0,0,1781,1782,5,115, - 0,0,1782,1783,5,73,0,0,1783,1784,5,110,0,0,1784,1785,5,80,0,0,1785, - 1786,5,97,0,0,1786,1787,5,114,0,0,1787,1788,5,97,0,0,1788,1789,5, - 108,0,0,1789,1790,5,108,0,0,1790,1791,5,101,0,0,1791,1792,5,108, - 0,0,1792,202,1,0,0,0,1793,1794,5,76,0,0,1794,1795,5,97,0,0,1795, - 1796,5,115,0,0,1796,1797,5,116,0,0,1797,1798,5,84,0,0,1798,1799, - 5,101,0,0,1799,1800,5,115,0,0,1800,1801,5,116,0,0,1801,1802,5,105, - 0,0,1802,1803,5,110,0,0,1803,1804,5,103,0,0,1804,1805,5,85,0,0,1805, - 1806,5,112,0,0,1806,1807,5,103,0,0,1807,1808,5,114,0,0,1808,1809, - 5,97,0,0,1809,1810,5,100,0,0,1810,1811,5,101,0,0,1811,1812,5,67, - 0,0,1812,1813,5,104,0,0,1813,1814,5,101,0,0,1814,1815,5,99,0,0,1815, - 1816,5,107,0,0,1816,204,1,0,0,0,1817,1818,5,76,0,0,1818,1819,5,97, - 0,0,1819,1820,5,115,0,0,1820,1821,5,116,0,0,1821,1822,5,85,0,0,1822, - 1823,5,112,0,0,1823,1824,5,103,0,0,1824,1825,5,114,0,0,1825,1826, - 5,97,0,0,1826,1827,5,100,0,0,1827,1828,5,101,0,0,1828,1829,5,67, - 0,0,1829,1830,5,104,0,0,1830,1831,5,101,0,0,1831,1832,5,99,0,0,1832, - 1833,5,107,0,0,1833,206,1,0,0,0,1834,1835,5,79,0,0,1835,1836,5,82, - 0,0,1836,1837,5,71,0,0,1837,1838,5,65,0,0,1838,1839,5,78,0,0,1839, - 1840,5,73,0,0,1840,1841,5,90,0,0,1841,1842,5,65,0,0,1842,1843,5, - 84,0,0,1843,1844,5,73,0,0,1844,1845,5,79,0,0,1845,1846,5,78,0,0, - 1846,1847,5,78,0,0,1847,1848,5,65,0,0,1848,1849,5,77,0,0,1849,1850, - 5,69,0,0,1850,208,1,0,0,0,1851,1852,5,84,0,0,1852,1853,5,97,0,0, - 1853,1854,5,114,0,0,1854,1855,5,103,0,0,1855,1856,5,101,0,0,1856, - 1857,5,116,0,0,1857,1858,5,65,0,0,1858,1859,5,116,0,0,1859,1860, - 5,116,0,0,1860,1861,5,114,0,0,1861,1862,5,105,0,0,1862,1863,5,98, - 0,0,1863,1864,5,117,0,0,1864,1865,5,116,0,0,1865,1866,5,101,0,0, - 1866,1867,5,115,0,0,1867,210,1,0,0,0,1868,1869,5,67,0,0,1869,1870, - 5,114,0,0,1870,1871,5,101,0,0,1871,1872,5,97,0,0,1872,1873,5,116, - 0,0,1873,1874,5,101,0,0,1874,1875,5,100,0,0,1875,1876,5,79,0,0,1876, - 1877,5,110,0,0,1877,1878,5,84,0,0,1878,1879,5,111,0,0,1879,1880, - 5,111,0,0,1880,1881,5,108,0,0,1881,1882,5,115,0,0,1882,1883,5,86, - 0,0,1883,1884,5,101,0,0,1884,1885,5,114,0,0,1885,1886,5,115,0,0, - 1886,1887,5,105,0,0,1887,1888,5,111,0,0,1888,1889,5,110,0,0,1889, - 212,1,0,0,0,1890,1891,5,84,0,0,1891,1892,5,101,0,0,1892,1893,5,115, - 0,0,1893,1894,5,116,0,0,1894,1895,5,84,0,0,1895,1896,5,97,0,0,1896, - 1897,5,114,0,0,1897,1898,5,103,0,0,1898,1899,5,101,0,0,1899,1900, - 5,116,0,0,1900,1901,5,73,0,0,1901,1902,5,68,0,0,1902,214,1,0,0,0, - 1903,1904,5,68,0,0,1904,1905,5,101,0,0,1905,1906,5,118,0,0,1906, - 1907,5,101,0,0,1907,1908,5,108,0,0,1908,1909,5,111,0,0,1909,1910, - 5,112,0,0,1910,1911,5,109,0,0,1911,1912,5,101,0,0,1912,1913,5,110, - 0,0,1913,1914,5,116,0,0,1914,1915,5,84,0,0,1915,1916,5,101,0,0,1916, - 1917,5,97,0,0,1917,1918,5,109,0,0,1918,216,1,0,0,0,1919,1920,5,68, - 0,0,1920,1921,5,101,0,0,1921,1922,5,118,0,0,1922,1923,5,101,0,0, - 1923,1924,5,108,0,0,1924,1925,5,111,0,0,1925,1926,5,112,0,0,1926, - 1927,5,109,0,0,1927,1928,5,101,0,0,1928,1929,5,110,0,0,1929,1930, - 5,116,0,0,1930,1931,5,84,0,0,1931,1932,5,101,0,0,1932,1933,5,97, - 0,0,1933,1934,5,109,0,0,1934,1935,5,78,0,0,1935,1936,5,97,0,0,1936, - 1937,5,109,0,0,1937,1938,5,101,0,0,1938,218,1,0,0,0,1939,1940,5, - 80,0,0,1940,1941,5,114,0,0,1941,1942,5,111,0,0,1942,1943,5,118,0, - 0,1943,1944,5,105,0,0,1944,1945,5,115,0,0,1945,1946,5,105,0,0,1946, - 1947,5,111,0,0,1947,1948,5,110,0,0,1948,1949,5,105,0,0,1949,1950, - 5,110,0,0,1950,1951,5,103,0,0,1951,1952,5,83,0,0,1952,1953,5,116, - 0,0,1953,1954,5,121,0,0,1954,1955,5,108,0,0,1955,1956,5,101,0,0, - 1956,220,1,0,0,0,1957,1958,5,99,0,0,1958,1959,5,111,0,0,1959,1960, - 5,109,0,0,1960,1961,5,112,0,0,1961,1962,5,97,0,0,1962,1963,5,116, - 0,0,1963,1964,5,105,0,0,1964,1965,5,98,0,0,1965,1966,5,105,0,0,1966, - 1967,5,108,0,0,1967,1968,5,105,0,0,1968,1969,5,116,0,0,1969,1970, - 5,121,0,0,1970,1971,5,86,0,0,1971,1972,5,101,0,0,1972,1973,5,114, - 0,0,1973,1974,5,115,0,0,1974,1975,5,105,0,0,1975,1976,5,111,0,0, - 1976,1977,5,110,0,0,1977,222,1,0,0,0,1978,1979,5,100,0,0,1979,1980, - 5,101,0,0,1980,1981,5,118,0,0,1981,1982,5,101,0,0,1982,1983,5,108, - 0,0,1983,1984,5,111,0,0,1984,1985,5,112,0,0,1985,1986,5,109,0,0, - 1986,1987,5,101,0,0,1987,1988,5,110,0,0,1988,1989,5,116,0,0,1989, - 1990,5,82,0,0,1990,1991,5,101,0,0,1991,1992,5,103,0,0,1992,1993, - 5,105,0,0,1993,1994,5,111,0,0,1994,1995,5,110,0,0,1995,224,1,0,0, - 0,1996,1997,5,104,0,0,1997,1998,5,97,0,0,1998,1999,5,115,0,0,1999, - 2000,5,83,0,0,2000,2001,5,99,0,0,2001,2002,5,97,0,0,2002,2003,5, - 110,0,0,2003,2004,5,110,0,0,2004,2005,5,101,0,0,2005,2006,5,100, - 0,0,2006,2007,5,70,0,0,2007,2008,5,111,0,0,2008,2009,5,114,0,0,2009, - 2010,5,69,0,0,2010,2011,5,110,0,0,2011,2012,5,99,0,0,2012,2013,5, - 111,0,0,2013,2014,5,100,0,0,2014,2015,5,105,0,0,2015,2016,5,110, - 0,0,2016,2017,5,103,0,0,2017,2018,5,115,0,0,2018,226,1,0,0,0,2019, - 2020,5,107,0,0,2020,2021,5,110,0,0,2021,2022,5,111,0,0,2022,2023, - 5,119,0,0,2023,2024,5,110,0,0,2024,2025,5,82,0,0,2025,2026,5,101, - 0,0,2026,2027,5,103,0,0,2027,2028,5,105,0,0,2028,2029,5,111,0,0, - 2029,2030,5,110,0,0,2030,2031,5,115,0,0,2031,228,1,0,0,0,2032,2033, - 5,109,0,0,2033,2034,5,97,0,0,2034,2035,5,105,0,0,2035,2036,5,110, - 0,0,2036,2037,5,71,0,0,2037,2038,5,114,0,0,2038,2039,5,111,0,0,2039, - 2040,5,117,0,0,2040,2041,5,112,0,0,2041,230,1,0,0,0,2042,2043,5, - 112,0,0,2043,2044,5,114,0,0,2044,2045,5,111,0,0,2045,2046,5,100, - 0,0,2046,2047,5,117,0,0,2047,2048,5,99,0,0,2048,2049,5,116,0,0,2049, - 2050,5,82,0,0,2050,2051,5,101,0,0,2051,2052,5,102,0,0,2052,2053, - 5,71,0,0,2053,2054,5,114,0,0,2054,2055,5,111,0,0,2055,2056,5,117, - 0,0,2056,2057,5,112,0,0,2057,232,1,0,0,0,2058,2059,5,112,0,0,2059, - 2060,5,97,0,0,2060,2061,5,99,0,0,2061,2062,5,107,0,0,2062,2063,5, - 97,0,0,2063,2064,5,103,0,0,2064,2065,5,101,0,0,2065,2066,5,82,0, - 0,2066,2067,5,101,0,0,2067,2068,5,102,0,0,2068,2069,5,101,0,0,2069, - 2070,5,114,0,0,2070,2071,5,101,0,0,2071,2072,5,110,0,0,2072,2073, - 5,99,0,0,2073,2074,5,101,0,0,2074,2075,5,115,0,0,2075,234,1,0,0, - 0,2076,2077,5,112,0,0,2077,2078,5,114,0,0,2078,2079,5,111,0,0,2079, - 2080,5,106,0,0,2080,2081,5,101,0,0,2081,2082,5,99,0,0,2082,2083, - 5,116,0,0,2083,2084,5,68,0,0,2084,2085,5,105,0,0,2085,2086,5,114, - 0,0,2086,2087,5,80,0,0,2087,2088,5,97,0,0,2088,2089,5,116,0,0,2089, - 2090,5,104,0,0,2090,236,1,0,0,0,2091,2092,5,112,0,0,2092,2093,5, - 114,0,0,2093,2094,5,111,0,0,2094,2095,5,106,0,0,2095,2096,5,101, - 0,0,2096,2097,5,99,0,0,2097,2098,5,116,0,0,2098,2099,5,82,0,0,2099, - 2100,5,101,0,0,2100,2101,5,102,0,0,2101,2102,5,101,0,0,2102,2103, - 5,114,0,0,2103,2104,5,101,0,0,2104,2105,5,110,0,0,2105,2106,5,99, - 0,0,2106,2107,5,101,0,0,2107,2108,5,115,0,0,2108,238,1,0,0,0,2109, - 2110,5,112,0,0,2110,2111,5,114,0,0,2111,2112,5,111,0,0,2112,2113, - 5,106,0,0,2113,2114,5,101,0,0,2114,2115,5,99,0,0,2115,2116,5,116, - 0,0,2116,2117,5,82,0,0,2117,2118,5,111,0,0,2118,2119,5,111,0,0,2119, - 2120,5,116,0,0,2120,240,1,0,0,0,2121,2122,5,116,0,0,2122,2123,5, - 97,0,0,2123,2124,5,114,0,0,2124,2125,5,103,0,0,2125,2126,5,101,0, - 0,2126,2127,5,116,0,0,2127,2128,5,115,0,0,2128,242,1,0,0,0,2129, - 2130,5,105,0,0,2130,2131,5,110,0,0,2131,2132,5,112,0,0,2132,2133, - 5,117,0,0,2133,2134,5,116,0,0,2134,2135,5,70,0,0,2135,2136,5,105, - 0,0,2136,2137,5,108,0,0,2137,2138,5,101,0,0,2138,2139,5,76,0,0,2139, - 2140,5,105,0,0,2140,2141,5,115,0,0,2141,2142,5,116,0,0,2142,2143, - 5,80,0,0,2143,2144,5,97,0,0,2144,2145,5,116,0,0,2145,2146,5,104, - 0,0,2146,2147,5,115,0,0,2147,244,1,0,0,0,2148,2149,5,105,0,0,2149, - 2150,5,110,0,0,2150,2151,5,112,0,0,2151,2152,5,117,0,0,2152,2153, - 5,116,0,0,2153,2154,5,80,0,0,2154,2155,5,97,0,0,2155,2156,5,116, - 0,0,2156,2157,5,104,0,0,2157,2158,5,115,0,0,2158,246,1,0,0,0,2159, - 2160,5,111,0,0,2160,2161,5,117,0,0,2161,2162,5,116,0,0,2162,2163, - 5,112,0,0,2163,2164,5,117,0,0,2164,2165,5,116,0,0,2165,2166,5,70, - 0,0,2166,2167,5,105,0,0,2167,2168,5,108,0,0,2168,2169,5,101,0,0, - 2169,2170,5,76,0,0,2170,2171,5,105,0,0,2171,2172,5,115,0,0,2172, - 2173,5,116,0,0,2173,2174,5,80,0,0,2174,2175,5,97,0,0,2175,2176,5, - 116,0,0,2176,2177,5,104,0,0,2177,2178,5,115,0,0,2178,248,1,0,0,0, - 2179,2180,5,111,0,0,2180,2181,5,117,0,0,2181,2182,5,116,0,0,2182, - 2183,5,112,0,0,2183,2184,5,117,0,0,2184,2185,5,116,0,0,2185,2186, - 5,80,0,0,2186,2187,5,97,0,0,2187,2188,5,116,0,0,2188,2189,5,104, - 0,0,2189,2190,5,115,0,0,2190,250,1,0,0,0,2191,2192,5,115,0,0,2192, - 2193,5,104,0,0,2193,2194,5,101,0,0,2194,2195,5,108,0,0,2195,2196, - 5,108,0,0,2196,2197,5,80,0,0,2197,2198,5,97,0,0,2198,2199,5,116, - 0,0,2199,2200,5,104,0,0,2200,252,1,0,0,0,2201,2202,5,115,0,0,2202, - 2203,5,104,0,0,2203,2204,5,101,0,0,2204,2205,5,108,0,0,2205,2206, - 5,108,0,0,2206,254,1,0,0,0,2207,2208,5,115,0,0,2208,2209,5,104,0, - 0,2209,2210,5,101,0,0,2210,2211,5,108,0,0,2211,2212,5,108,0,0,2212, - 2213,5,83,0,0,2213,2214,5,99,0,0,2214,2215,5,114,0,0,2215,2216,5, - 105,0,0,2216,2217,5,112,0,0,2217,2218,5,116,0,0,2218,256,1,0,0,0, - 2219,2220,5,115,0,0,2220,2221,5,104,0,0,2221,2222,5,111,0,0,2222, - 2223,5,119,0,0,2223,2224,5,69,0,0,2224,2225,5,110,0,0,2225,2226, - 5,118,0,0,2226,2227,5,86,0,0,2227,2228,5,97,0,0,2228,2229,5,114, - 0,0,2229,2230,5,115,0,0,2230,2231,5,73,0,0,2231,2232,5,110,0,0,2232, - 2233,5,76,0,0,2233,2234,5,111,0,0,2234,2235,5,103,0,0,2235,258,1, - 0,0,0,2236,2237,5,116,0,0,2237,2238,5,97,0,0,2238,2239,5,114,0,0, - 2239,2240,5,103,0,0,2240,2241,5,101,0,0,2241,2242,5,116,0,0,2242, - 260,1,0,0,0,2243,2244,5,116,0,0,2244,2245,5,97,0,0,2245,2246,5,114, - 0,0,2246,2247,5,103,0,0,2247,2248,5,101,0,0,2248,2249,5,116,0,0, - 2249,2250,5,80,0,0,2250,2251,5,114,0,0,2251,2252,5,111,0,0,2252, - 2253,5,120,0,0,2253,2254,5,121,0,0,2254,262,1,0,0,0,2255,2256,5, - 102,0,0,2256,2257,5,105,0,0,2257,2258,5,108,0,0,2258,2259,5,101, - 0,0,2259,2260,5,84,0,0,2260,2261,5,121,0,0,2261,2262,5,112,0,0,2262, - 2263,5,101,0,0,2263,264,1,0,0,0,2264,2265,5,114,0,0,2265,2266,5, - 101,0,0,2266,2267,5,109,0,0,2267,2268,5,111,0,0,2268,2269,5,116, - 0,0,2269,2270,5,101,0,0,2270,2271,5,82,0,0,2271,2272,5,101,0,0,2272, - 2273,5,102,0,0,2273,266,1,0,0,0,2274,2275,5,98,0,0,2275,2276,5,97, - 0,0,2276,2277,5,115,0,0,2277,2278,5,101,0,0,2278,2279,5,67,0,0,2279, - 2280,5,111,0,0,2280,2281,5,110,0,0,2281,2282,5,102,0,0,2282,2283, - 5,105,0,0,2283,2284,5,103,0,0,2284,2285,5,117,0,0,2285,2286,5,114, - 0,0,2286,2287,5,97,0,0,2287,2288,5,116,0,0,2288,2289,5,105,0,0,2289, - 2290,5,111,0,0,2290,2291,5,110,0,0,2291,2292,5,82,0,0,2292,2293, - 5,101,0,0,2293,2294,5,102,0,0,2294,2295,5,101,0,0,2295,2296,5,114, - 0,0,2296,2297,5,101,0,0,2297,2298,5,110,0,0,2298,2299,5,99,0,0,2299, - 2300,5,101,0,0,2300,268,1,0,0,0,2301,2302,5,98,0,0,2302,2303,5,117, - 0,0,2303,2304,5,105,0,0,2304,2305,5,108,0,0,2305,2306,5,100,0,0, - 2306,2307,5,83,0,0,2307,2308,5,101,0,0,2308,2309,5,116,0,0,2309, - 2310,5,116,0,0,2310,2311,5,105,0,0,2311,2312,5,110,0,0,2312,2313, - 5,103,0,0,2313,2314,5,115,0,0,2314,270,1,0,0,0,2315,2316,5,98,0, - 0,2316,2317,5,117,0,0,2317,2318,5,105,0,0,2318,2319,5,108,0,0,2319, - 2320,5,100,0,0,2320,2321,5,83,0,0,2321,2322,5,116,0,0,2322,2323, - 5,121,0,0,2323,2324,5,108,0,0,2324,2325,5,101,0,0,2325,2326,5,115, - 0,0,2326,272,1,0,0,0,2327,2328,5,100,0,0,2328,2329,5,115,0,0,2329, - 2330,5,116,0,0,2330,2331,5,80,0,0,2331,2332,5,97,0,0,2332,2333,5, - 116,0,0,2333,2334,5,104,0,0,2334,274,1,0,0,0,2335,2336,5,100,0,0, - 2336,2337,5,115,0,0,2337,2338,5,116,0,0,2338,2339,5,83,0,0,2339, - 2340,5,117,0,0,2340,2341,5,98,0,0,2341,2342,5,102,0,0,2342,2343, - 5,111,0,0,2343,2344,5,108,0,0,2344,2345,5,100,0,0,2345,2346,5,101, - 0,0,2346,2347,5,114,0,0,2347,2348,5,83,0,0,2348,2349,5,112,0,0,2349, - 2350,5,101,0,0,2350,2351,5,99,0,0,2351,276,1,0,0,0,2352,2353,5,80, - 0,0,2353,2354,5,114,0,0,2354,2355,5,111,0,0,2355,2356,5,100,0,0, - 2356,2357,5,117,0,0,2357,2358,5,99,0,0,2358,2359,5,116,0,0,2359, - 2360,5,71,0,0,2360,2361,5,114,0,0,2361,2362,5,111,0,0,2362,2363, - 5,117,0,0,2363,2364,5,112,0,0,2364,278,1,0,0,0,2365,2366,5,80,0, - 0,2366,2367,5,114,0,0,2367,2368,5,111,0,0,2368,2369,5,106,0,0,2369, - 2370,5,101,0,0,2370,2371,5,99,0,0,2371,2372,5,116,0,0,2372,2373, - 5,82,0,0,2373,2374,5,101,0,0,2374,2375,5,102,0,0,2375,280,1,0,0, - 0,2376,2377,5,98,0,0,2377,2378,5,117,0,0,2378,2379,5,105,0,0,2379, - 2380,5,108,0,0,2380,2381,5,100,0,0,2381,2382,5,67,0,0,2382,2383, - 5,111,0,0,2383,2384,5,110,0,0,2384,2385,5,102,0,0,2385,2386,5,105, - 0,0,2386,2387,5,103,0,0,2387,2388,5,117,0,0,2388,2389,5,114,0,0, - 2389,2390,5,97,0,0,2390,2391,5,116,0,0,2391,2392,5,105,0,0,2392, - 2393,5,111,0,0,2393,2394,5,110,0,0,2394,2395,5,115,0,0,2395,282, - 1,0,0,0,2396,2397,5,100,0,0,2397,2398,5,101,0,0,2398,2399,5,102, - 0,0,2399,2400,5,97,0,0,2400,2401,5,117,0,0,2401,2402,5,108,0,0,2402, - 2403,5,116,0,0,2403,2404,5,67,0,0,2404,2405,5,111,0,0,2405,2406, - 5,110,0,0,2406,2407,5,102,0,0,2407,2408,5,105,0,0,2408,2409,5,103, - 0,0,2409,2410,5,117,0,0,2410,2411,5,114,0,0,2411,2412,5,97,0,0,2412, - 2413,5,116,0,0,2413,2414,5,105,0,0,2414,2415,5,111,0,0,2415,2416, - 5,110,0,0,2416,2417,5,73,0,0,2417,2418,5,115,0,0,2418,2419,5,86, - 0,0,2419,2420,5,105,0,0,2420,2421,5,115,0,0,2421,2422,5,105,0,0, - 2422,2423,5,98,0,0,2423,2424,5,108,0,0,2424,2425,5,101,0,0,2425, - 284,1,0,0,0,2426,2427,5,100,0,0,2427,2428,5,101,0,0,2428,2429,5, - 102,0,0,2429,2430,5,97,0,0,2430,2431,5,117,0,0,2431,2432,5,108,0, - 0,2432,2433,5,116,0,0,2433,2434,5,67,0,0,2434,2435,5,111,0,0,2435, - 2436,5,110,0,0,2436,2437,5,102,0,0,2437,2438,5,105,0,0,2438,2439, - 5,103,0,0,2439,2440,5,117,0,0,2440,2441,5,114,0,0,2441,2442,5,97, - 0,0,2442,2443,5,116,0,0,2443,2444,5,105,0,0,2444,2445,5,111,0,0, - 2445,2446,5,110,0,0,2446,2447,5,78,0,0,2447,2448,5,97,0,0,2448,2449, - 5,109,0,0,2449,2450,5,101,0,0,2450,286,1,0,0,0,2451,2452,5,115,0, - 0,2452,2453,5,101,0,0,2453,2454,5,116,0,0,2454,2455,5,116,0,0,2455, - 2456,5,105,0,0,2456,2457,5,110,0,0,2457,2458,5,103,0,0,2458,2459, - 5,115,0,0,2459,288,1,0,0,0,2460,2461,5,83,0,0,2461,2462,5,121,0, - 0,2462,2463,5,115,0,0,2463,2464,5,116,0,0,2464,2465,5,101,0,0,2465, - 2466,5,109,0,0,2466,2467,5,67,0,0,2467,2468,5,97,0,0,2468,2469,5, - 112,0,0,2469,2470,5,97,0,0,2470,2471,5,98,0,0,2471,2472,5,105,0, - 0,2472,2473,5,108,0,0,2473,2474,5,105,0,0,2474,2475,5,116,0,0,2475, - 2476,5,105,0,0,2476,2477,5,101,0,0,2477,2478,5,115,0,0,2478,290, - 1,0,0,0,2479,2480,5,99,0,0,2480,2481,5,117,0,0,2481,2482,5,114,0, - 0,2482,2483,5,114,0,0,2483,2484,5,101,0,0,2484,2485,5,110,0,0,2485, - 2486,5,116,0,0,2486,2487,5,86,0,0,2487,2488,5,101,0,0,2488,2489, - 5,114,0,0,2489,2490,5,115,0,0,2490,2491,5,105,0,0,2491,2492,5,111, - 0,0,2492,2493,5,110,0,0,2493,292,1,0,0,0,2494,2495,5,118,0,0,2495, - 2496,5,101,0,0,2496,2497,5,114,0,0,2497,2498,5,115,0,0,2498,2499, - 5,105,0,0,2499,2500,5,111,0,0,2500,2501,5,110,0,0,2501,2502,5,71, - 0,0,2502,2503,5,114,0,0,2503,2504,5,111,0,0,2504,2505,5,117,0,0, - 2505,2506,5,112,0,0,2506,2507,5,84,0,0,2507,2508,5,121,0,0,2508, - 2509,5,112,0,0,2509,2510,5,101,0,0,2510,294,1,0,0,0,2511,2512,5, - 67,0,0,2512,2513,5,76,0,0,2513,2514,5,65,0,0,2514,2515,5,83,0,0, - 2515,2516,5,83,0,0,2516,2517,5,80,0,0,2517,2518,5,82,0,0,2518,2519, - 5,69,0,0,2519,2520,5,70,0,0,2520,2521,5,73,0,0,2521,2522,5,88,0, - 0,2522,296,1,0,0,0,2523,2524,3,309,154,0,2524,2525,3,309,154,0,2525, - 2526,3,309,154,0,2526,2527,3,309,154,0,2527,2528,3,309,154,0,2528, - 2529,3,309,154,0,2529,2530,3,309,154,0,2530,2531,3,309,154,0,2531, - 2532,3,309,154,0,2532,2533,3,309,154,0,2533,2534,3,309,154,0,2534, - 2535,3,309,154,0,2535,2536,3,309,154,0,2536,2537,3,309,154,0,2537, - 2538,3,309,154,0,2538,2539,3,309,154,0,2539,2540,3,309,154,0,2540, - 2541,3,309,154,0,2541,2542,3,309,154,0,2542,2543,3,309,154,0,2543, - 2544,3,309,154,0,2544,2545,3,309,154,0,2545,2546,3,309,154,0,2546, - 2548,3,309,154,0,2547,2549,3,309,154,0,2548,2547,1,0,0,0,2548,2549, - 1,0,0,0,2549,2551,1,0,0,0,2550,2552,3,309,154,0,2551,2550,1,0,0, - 0,2551,2552,1,0,0,0,2552,2554,1,0,0,0,2553,2555,3,309,154,0,2554, - 2553,1,0,0,0,2554,2555,1,0,0,0,2555,2557,1,0,0,0,2556,2558,3,309, - 154,0,2557,2556,1,0,0,0,2557,2558,1,0,0,0,2558,2560,1,0,0,0,2559, - 2561,3,309,154,0,2560,2559,1,0,0,0,2560,2561,1,0,0,0,2561,2563,1, - 0,0,0,2562,2564,3,309,154,0,2563,2562,1,0,0,0,2563,2564,1,0,0,0, - 2564,2566,1,0,0,0,2565,2567,3,309,154,0,2566,2565,1,0,0,0,2566,2567, - 1,0,0,0,2567,2569,1,0,0,0,2568,2570,3,309,154,0,2569,2568,1,0,0, - 0,2569,2570,1,0,0,0,2570,2635,1,0,0,0,2571,2572,5,70,0,0,2572,2573, - 5,82,0,0,2573,2577,5,95,0,0,2574,2575,5,71,0,0,2575,2577,5,95,0, - 0,2576,2571,1,0,0,0,2576,2574,1,0,0,0,2577,2579,1,0,0,0,2578,2580, - 3,309,154,0,2579,2578,1,0,0,0,2580,2581,1,0,0,0,2581,2579,1,0,0, - 0,2581,2582,1,0,0,0,2582,2635,1,0,0,0,2583,2584,3,307,153,0,2584, - 2585,3,307,153,0,2585,2586,3,307,153,0,2586,2587,3,307,153,0,2587, - 2588,3,307,153,0,2588,2589,3,307,153,0,2589,2590,3,307,153,0,2590, - 2591,3,307,153,0,2591,2592,3,307,153,0,2592,2593,3,307,153,0,2593, - 2594,3,307,153,0,2594,2595,3,307,153,0,2595,2596,3,307,153,0,2596, - 2597,3,307,153,0,2597,2598,3,307,153,0,2598,2599,3,307,153,0,2599, - 2600,3,307,153,0,2600,2601,3,307,153,0,2601,2602,3,307,153,0,2602, - 2603,3,307,153,0,2603,2604,3,307,153,0,2604,2605,3,307,153,0,2605, - 2606,3,307,153,0,2606,2607,3,307,153,0,2607,2635,1,0,0,0,2608,2609, - 5,79,0,0,2609,2610,5,66,0,0,2610,2611,5,74,0,0,2611,2612,5,95,0, - 0,2612,2613,1,0,0,0,2613,2635,3,25,12,0,2614,2616,5,34,0,0,2615, - 2617,3,301,150,0,2616,2615,1,0,0,0,2617,2618,1,0,0,0,2618,2616,1, - 0,0,0,2618,2619,1,0,0,0,2619,2628,1,0,0,0,2620,2621,5,58,0,0,2621, - 2622,5,58,0,0,2622,2624,1,0,0,0,2623,2625,3,301,150,0,2624,2623, - 1,0,0,0,2625,2626,1,0,0,0,2626,2624,1,0,0,0,2626,2627,1,0,0,0,2627, - 2629,1,0,0,0,2628,2620,1,0,0,0,2629,2630,1,0,0,0,2630,2628,1,0,0, - 0,2630,2631,1,0,0,0,2631,2632,1,0,0,0,2632,2633,5,34,0,0,2633,2635, - 1,0,0,0,2634,2523,1,0,0,0,2634,2576,1,0,0,0,2634,2583,1,0,0,0,2634, - 2608,1,0,0,0,2634,2614,1,0,0,0,2635,298,1,0,0,0,2636,2638,5,34,0, - 0,2637,2639,3,311,155,0,2638,2637,1,0,0,0,2639,2640,1,0,0,0,2640, - 2638,1,0,0,0,2640,2641,1,0,0,0,2641,2642,1,0,0,0,2642,2643,5,34, - 0,0,2643,2647,1,0,0,0,2644,2645,5,34,0,0,2645,2647,5,34,0,0,2646, - 2636,1,0,0,0,2646,2644,1,0,0,0,2647,300,1,0,0,0,2648,2655,3,305, - 152,0,2649,2655,3,35,17,0,2650,2655,3,19,9,0,2651,2655,3,33,16,0, - 2652,2655,3,21,10,0,2653,2655,3,37,18,0,2654,2648,1,0,0,0,2654,2649, - 1,0,0,0,2654,2650,1,0,0,0,2654,2651,1,0,0,0,2654,2652,1,0,0,0,2654, - 2653,1,0,0,0,2655,2656,1,0,0,0,2656,2654,1,0,0,0,2656,2657,1,0,0, - 0,2657,302,1,0,0,0,2658,2659,5,36,0,0,2659,2661,3,301,150,0,2660, - 2658,1,0,0,0,2661,2662,1,0,0,0,2662,2660,1,0,0,0,2662,2663,1,0,0, - 0,2663,2665,1,0,0,0,2664,2666,3,33,16,0,2665,2664,1,0,0,0,2665,2666, - 1,0,0,0,2666,304,1,0,0,0,2667,2668,7,1,0,0,2668,306,1,0,0,0,2669, - 2670,7,2,0,0,2670,308,1,0,0,0,2671,2672,7,3,0,0,2672,310,1,0,0,0, - 2673,2677,8,4,0,0,2674,2675,5,92,0,0,2675,2677,5,34,0,0,2676,2673, - 1,0,0,0,2676,2674,1,0,0,0,2677,312,1,0,0,0,2678,2680,7,5,0,0,2679, - 2678,1,0,0,0,2680,2681,1,0,0,0,2681,2679,1,0,0,0,2681,2682,1,0,0, - 0,2682,2683,1,0,0,0,2683,2684,6,156,0,0,2684,314,1,0,0,0,2685,2686, - 5,47,0,0,2686,2687,5,42,0,0,2687,2691,1,0,0,0,2688,2690,9,0,0,0, - 2689,2688,1,0,0,0,2690,2693,1,0,0,0,2691,2692,1,0,0,0,2691,2689, - 1,0,0,0,2692,2694,1,0,0,0,2693,2691,1,0,0,0,2694,2695,5,42,0,0,2695, - 2696,5,47,0,0,2696,2697,1,0,0,0,2697,2698,6,157,0,0,2698,316,1,0, - 0,0,2699,2700,5,47,0,0,2700,2701,5,47,0,0,2701,2705,1,0,0,0,2702, - 2704,8,6,0,0,2703,2702,1,0,0,0,2704,2707,1,0,0,0,2705,2703,1,0,0, - 0,2705,2706,1,0,0,0,2706,2708,1,0,0,0,2707,2705,1,0,0,0,2708,2709, - 6,158,0,0,2709,318,1,0,0,0,27,0,367,682,2548,2551,2554,2557,2560, - 2563,2566,2569,2576,2581,2618,2626,2630,2634,2640,2646,2654,2656, - 2662,2665,2676,2681,2691,2705,1,6,0,0 + 1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,148,1,148,1,148,1,148, + 1,148,1,148,1,148,1,148,1,148,1,149,1,149,1,149,1,149,1,149,1,149, + 1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149, + 1,149,1,149,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150, + 1,150,1,150,1,150,1,150,1,150,1,150,1,151,1,151,1,151,1,151,1,151, + 1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151, + 1,151,1,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152, + 1,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152, + 1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153, + 1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,154, + 1,154,1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155, + 1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155, + 1,155,1,155,1,155,1,155,3,155,2741,8,155,1,155,3,155,2744,8,155, + 1,155,3,155,2747,8,155,1,155,3,155,2750,8,155,1,155,3,155,2753,8, + 155,1,155,3,155,2756,8,155,1,155,3,155,2759,8,155,1,155,3,155,2762, + 8,155,1,155,1,155,1,155,1,155,1,155,3,155,2769,8,155,1,155,4,155, + 2772,8,155,11,155,12,155,2773,1,155,1,155,1,155,1,155,1,155,1,155, + 1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155, + 1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155, + 1,155,1,155,1,155,1,155,1,155,4,155,2809,8,155,11,155,12,155,2810, + 1,155,1,155,1,155,1,155,4,155,2817,8,155,11,155,12,155,2818,4,155, + 2821,8,155,11,155,12,155,2822,1,155,1,155,3,155,2827,8,155,1,156, + 1,156,4,156,2831,8,156,11,156,12,156,2832,1,156,1,156,1,156,1,156, + 3,156,2839,8,156,1,157,1,157,1,157,1,157,1,157,1,157,4,157,2847, + 8,157,11,157,12,157,2848,1,158,1,158,4,158,2853,8,158,11,158,12, + 158,2854,1,158,3,158,2858,8,158,1,159,1,159,1,160,1,160,1,161,1, + 161,1,162,1,162,1,162,3,162,2869,8,162,1,163,4,163,2872,8,163,11, + 163,12,163,2873,1,163,1,163,1,164,1,164,1,164,1,164,5,164,2882,8, + 164,10,164,12,164,2885,9,164,1,164,1,164,1,164,1,164,1,164,1,165, + 1,165,1,165,1,165,5,165,2896,8,165,10,165,12,165,2899,9,165,1,165, + 1,165,1,2883,0,166,1,1,3,2,5,3,7,4,9,5,11,6,13,7,15,8,17,9,19,10, + 21,11,23,12,25,13,27,14,29,15,31,16,33,17,35,18,37,19,39,20,41,21, + 43,22,45,23,47,24,49,25,51,26,53,27,55,28,57,29,59,30,61,31,63,32, + 65,33,67,34,69,35,71,36,73,37,75,38,77,39,79,40,81,41,83,42,85,43, + 87,44,89,45,91,46,93,47,95,48,97,49,99,50,101,51,103,52,105,53,107, + 54,109,55,111,56,113,57,115,58,117,59,119,60,121,61,123,62,125,63, + 127,64,129,65,131,66,133,67,135,68,137,69,139,70,141,71,143,72,145, + 73,147,74,149,75,151,76,153,77,155,78,157,79,159,80,161,81,163,82, + 165,83,167,84,169,85,171,86,173,87,175,88,177,89,179,90,181,91,183, + 92,185,93,187,94,189,95,191,96,193,97,195,98,197,99,199,100,201, + 101,203,102,205,103,207,104,209,105,211,106,213,107,215,108,217, + 109,219,110,221,111,223,112,225,113,227,114,229,115,231,116,233, + 117,235,118,237,119,239,120,241,121,243,122,245,123,247,124,249, + 125,251,126,253,127,255,128,257,129,259,130,261,131,263,132,265, + 133,267,134,269,135,271,136,273,137,275,138,277,139,279,140,281, + 141,283,142,285,143,287,144,289,145,291,146,293,147,295,148,297, + 149,299,150,301,151,303,152,305,153,307,154,309,155,311,156,313, + 157,315,158,317,159,319,160,321,161,323,0,325,0,327,162,329,163, + 331,164,1,0,7,1,0,48,57,3,0,48,57,65,90,97,122,2,0,48,57,65,90,3, + 0,48,57,65,70,97,102,1,0,34,34,3,0,9,10,12,13,32,32,2,0,10,10,13, + 13,2932,0,1,1,0,0,0,0,3,1,0,0,0,0,5,1,0,0,0,0,7,1,0,0,0,0,9,1,0, + 0,0,0,11,1,0,0,0,0,13,1,0,0,0,0,15,1,0,0,0,0,17,1,0,0,0,0,19,1,0, + 0,0,0,21,1,0,0,0,0,23,1,0,0,0,0,25,1,0,0,0,0,27,1,0,0,0,0,29,1,0, + 0,0,0,31,1,0,0,0,0,33,1,0,0,0,0,35,1,0,0,0,0,37,1,0,0,0,0,39,1,0, + 0,0,0,41,1,0,0,0,0,43,1,0,0,0,0,45,1,0,0,0,0,47,1,0,0,0,0,49,1,0, + 0,0,0,51,1,0,0,0,0,53,1,0,0,0,0,55,1,0,0,0,0,57,1,0,0,0,0,59,1,0, + 0,0,0,61,1,0,0,0,0,63,1,0,0,0,0,65,1,0,0,0,0,67,1,0,0,0,0,69,1,0, + 0,0,0,71,1,0,0,0,0,73,1,0,0,0,0,75,1,0,0,0,0,77,1,0,0,0,0,79,1,0, + 0,0,0,81,1,0,0,0,0,83,1,0,0,0,0,85,1,0,0,0,0,87,1,0,0,0,0,89,1,0, + 0,0,0,91,1,0,0,0,0,93,1,0,0,0,0,95,1,0,0,0,0,97,1,0,0,0,0,99,1,0, + 0,0,0,101,1,0,0,0,0,103,1,0,0,0,0,105,1,0,0,0,0,107,1,0,0,0,0,109, + 1,0,0,0,0,111,1,0,0,0,0,113,1,0,0,0,0,115,1,0,0,0,0,117,1,0,0,0, + 0,119,1,0,0,0,0,121,1,0,0,0,0,123,1,0,0,0,0,125,1,0,0,0,0,127,1, + 0,0,0,0,129,1,0,0,0,0,131,1,0,0,0,0,133,1,0,0,0,0,135,1,0,0,0,0, + 137,1,0,0,0,0,139,1,0,0,0,0,141,1,0,0,0,0,143,1,0,0,0,0,145,1,0, + 0,0,0,147,1,0,0,0,0,149,1,0,0,0,0,151,1,0,0,0,0,153,1,0,0,0,0,155, + 1,0,0,0,0,157,1,0,0,0,0,159,1,0,0,0,0,161,1,0,0,0,0,163,1,0,0,0, + 0,165,1,0,0,0,0,167,1,0,0,0,0,169,1,0,0,0,0,171,1,0,0,0,0,173,1, + 0,0,0,0,175,1,0,0,0,0,177,1,0,0,0,0,179,1,0,0,0,0,181,1,0,0,0,0, + 183,1,0,0,0,0,185,1,0,0,0,0,187,1,0,0,0,0,189,1,0,0,0,0,191,1,0, + 0,0,0,193,1,0,0,0,0,195,1,0,0,0,0,197,1,0,0,0,0,199,1,0,0,0,0,201, + 1,0,0,0,0,203,1,0,0,0,0,205,1,0,0,0,0,207,1,0,0,0,0,209,1,0,0,0, + 0,211,1,0,0,0,0,213,1,0,0,0,0,215,1,0,0,0,0,217,1,0,0,0,0,219,1, + 0,0,0,0,221,1,0,0,0,0,223,1,0,0,0,0,225,1,0,0,0,0,227,1,0,0,0,0, + 229,1,0,0,0,0,231,1,0,0,0,0,233,1,0,0,0,0,235,1,0,0,0,0,237,1,0, + 0,0,0,239,1,0,0,0,0,241,1,0,0,0,0,243,1,0,0,0,0,245,1,0,0,0,0,247, + 1,0,0,0,0,249,1,0,0,0,0,251,1,0,0,0,0,253,1,0,0,0,0,255,1,0,0,0, + 0,257,1,0,0,0,0,259,1,0,0,0,0,261,1,0,0,0,0,263,1,0,0,0,0,265,1, + 0,0,0,0,267,1,0,0,0,0,269,1,0,0,0,0,271,1,0,0,0,0,273,1,0,0,0,0, + 275,1,0,0,0,0,277,1,0,0,0,0,279,1,0,0,0,0,281,1,0,0,0,0,283,1,0, + 0,0,0,285,1,0,0,0,0,287,1,0,0,0,0,289,1,0,0,0,0,291,1,0,0,0,0,293, + 1,0,0,0,0,295,1,0,0,0,0,297,1,0,0,0,0,299,1,0,0,0,0,301,1,0,0,0, + 0,303,1,0,0,0,0,305,1,0,0,0,0,307,1,0,0,0,0,309,1,0,0,0,0,311,1, + 0,0,0,0,313,1,0,0,0,0,315,1,0,0,0,0,317,1,0,0,0,0,319,1,0,0,0,0, + 321,1,0,0,0,0,327,1,0,0,0,0,329,1,0,0,0,0,331,1,0,0,0,1,333,1,0, + 0,0,3,335,1,0,0,0,5,337,1,0,0,0,7,339,1,0,0,0,9,341,1,0,0,0,11,343, + 1,0,0,0,13,345,1,0,0,0,15,347,1,0,0,0,17,362,1,0,0,0,19,370,1,0, + 0,0,21,372,1,0,0,0,23,374,1,0,0,0,25,379,1,0,0,0,27,383,1,0,0,0, + 29,397,1,0,0,0,31,405,1,0,0,0,33,416,1,0,0,0,35,418,1,0,0,0,37,420, + 1,0,0,0,39,422,1,0,0,0,41,441,1,0,0,0,43,454,1,0,0,0,45,467,1,0, + 0,0,47,481,1,0,0,0,49,503,1,0,0,0,51,526,1,0,0,0,53,543,1,0,0,0, + 55,590,1,0,0,0,57,625,1,0,0,0,59,649,1,0,0,0,61,658,1,0,0,0,63,679, + 1,0,0,0,65,695,1,0,0,0,67,711,1,0,0,0,69,722,1,0,0,0,71,778,1,0, + 0,0,73,780,1,0,0,0,75,805,1,0,0,0,77,824,1,0,0,0,79,845,1,0,0,0, + 81,865,1,0,0,0,83,881,1,0,0,0,85,902,1,0,0,0,87,922,1,0,0,0,89,952, + 1,0,0,0,91,984,1,0,0,0,93,999,1,0,0,0,95,1015,1,0,0,0,97,1023,1, + 0,0,0,99,1034,1,0,0,0,101,1050,1,0,0,0,103,1060,1,0,0,0,105,1081, + 1,0,0,0,107,1092,1,0,0,0,109,1105,1,0,0,0,111,1114,1,0,0,0,113,1131, + 1,0,0,0,115,1149,1,0,0,0,117,1165,1,0,0,0,119,1183,1,0,0,0,121,1198, + 1,0,0,0,123,1210,1,0,0,0,125,1219,1,0,0,0,127,1228,1,0,0,0,129,1239, + 1,0,0,0,131,1254,1,0,0,0,133,1270,1,0,0,0,135,1279,1,0,0,0,137,1298, + 1,0,0,0,139,1312,1,0,0,0,141,1324,1,0,0,0,143,1332,1,0,0,0,145,1359, + 1,0,0,0,147,1364,1,0,0,0,149,1369,1,0,0,0,151,1380,1,0,0,0,153,1396, + 1,0,0,0,155,1402,1,0,0,0,157,1437,1,0,0,0,159,1460,1,0,0,0,161,1472, + 1,0,0,0,163,1483,1,0,0,0,165,1504,1,0,0,0,167,1518,1,0,0,0,169,1540, + 1,0,0,0,171,1571,1,0,0,0,173,1584,1,0,0,0,175,1596,1,0,0,0,177,1613, + 1,0,0,0,179,1625,1,0,0,0,181,1636,1,0,0,0,183,1670,1,0,0,0,185,1705, + 1,0,0,0,187,1713,1,0,0,0,189,1726,1,0,0,0,191,1739,1,0,0,0,193,1750, + 1,0,0,0,195,1761,1,0,0,0,197,1773,1,0,0,0,199,1796,1,0,0,0,201,1803, + 1,0,0,0,203,1814,1,0,0,0,205,1833,1,0,0,0,207,1868,1,0,0,0,209,1889, + 1,0,0,0,211,1923,1,0,0,0,213,1947,1,0,0,0,215,1964,1,0,0,0,217,1981, + 1,0,0,0,219,1998,1,0,0,0,221,2020,1,0,0,0,223,2033,1,0,0,0,225,2049, + 1,0,0,0,227,2069,1,0,0,0,229,2087,1,0,0,0,231,2108,1,0,0,0,233,2126, + 1,0,0,0,235,2149,1,0,0,0,237,2162,1,0,0,0,239,2172,1,0,0,0,241,2188, + 1,0,0,0,243,2206,1,0,0,0,245,2236,1,0,0,0,247,2251,1,0,0,0,249,2269, + 1,0,0,0,251,2281,1,0,0,0,253,2289,1,0,0,0,255,2308,1,0,0,0,257,2319, + 1,0,0,0,259,2339,1,0,0,0,261,2351,1,0,0,0,263,2361,1,0,0,0,265,2367, + 1,0,0,0,267,2379,1,0,0,0,269,2396,1,0,0,0,271,2403,1,0,0,0,273,2415, + 1,0,0,0,275,2424,1,0,0,0,277,2434,1,0,0,0,279,2461,1,0,0,0,281,2475, + 1,0,0,0,283,2487,1,0,0,0,285,2495,1,0,0,0,287,2512,1,0,0,0,289,2525, + 1,0,0,0,291,2536,1,0,0,0,293,2556,1,0,0,0,295,2586,1,0,0,0,297,2611, + 1,0,0,0,299,2620,1,0,0,0,301,2639,1,0,0,0,303,2654,1,0,0,0,305,2671, + 1,0,0,0,307,2692,1,0,0,0,309,2703,1,0,0,0,311,2826,1,0,0,0,313,2838, + 1,0,0,0,315,2846,1,0,0,0,317,2852,1,0,0,0,319,2859,1,0,0,0,321,2861, + 1,0,0,0,323,2863,1,0,0,0,325,2868,1,0,0,0,327,2871,1,0,0,0,329,2877, + 1,0,0,0,331,2891,1,0,0,0,333,334,5,123,0,0,334,2,1,0,0,0,335,336, + 5,125,0,0,336,4,1,0,0,0,337,338,5,61,0,0,338,6,1,0,0,0,339,340,5, + 59,0,0,340,8,1,0,0,0,341,342,5,40,0,0,342,10,1,0,0,0,343,344,5,44, + 0,0,344,12,1,0,0,0,345,346,5,41,0,0,346,14,1,0,0,0,347,348,5,97, + 0,0,348,349,5,114,0,0,349,350,5,99,0,0,350,351,5,104,0,0,351,352, + 5,105,0,0,352,353,5,118,0,0,353,354,5,101,0,0,354,355,5,86,0,0,355, + 356,5,101,0,0,356,357,5,114,0,0,357,358,5,115,0,0,358,359,5,105, + 0,0,359,360,5,111,0,0,360,361,5,110,0,0,361,16,1,0,0,0,362,363,5, + 99,0,0,363,364,5,108,0,0,364,365,5,97,0,0,365,366,5,115,0,0,366, + 367,5,115,0,0,367,368,5,101,0,0,368,369,5,115,0,0,369,18,1,0,0,0, + 370,371,5,45,0,0,371,20,1,0,0,0,372,373,5,46,0,0,373,22,1,0,0,0, + 374,375,5,105,0,0,375,376,5,115,0,0,376,377,5,97,0,0,377,24,1,0, + 0,0,378,380,7,0,0,0,379,378,1,0,0,0,380,381,1,0,0,0,381,379,1,0, + 0,0,381,382,1,0,0,0,382,26,1,0,0,0,383,384,5,111,0,0,384,385,5,98, + 0,0,385,386,5,106,0,0,386,387,5,101,0,0,387,388,5,99,0,0,388,389, + 5,116,0,0,389,390,5,86,0,0,390,391,5,101,0,0,391,392,5,114,0,0,392, + 393,5,115,0,0,393,394,5,105,0,0,394,395,5,111,0,0,395,396,5,110, + 0,0,396,28,1,0,0,0,397,398,5,111,0,0,398,399,5,98,0,0,399,400,5, + 106,0,0,400,401,5,101,0,0,401,402,5,99,0,0,402,403,5,116,0,0,403, + 404,5,115,0,0,404,30,1,0,0,0,405,406,5,114,0,0,406,407,5,111,0,0, + 407,408,5,111,0,0,408,409,5,116,0,0,409,410,5,79,0,0,410,411,5,98, + 0,0,411,412,5,106,0,0,412,413,5,101,0,0,413,414,5,99,0,0,414,415, + 5,116,0,0,415,32,1,0,0,0,416,417,5,47,0,0,417,34,1,0,0,0,418,419, + 5,95,0,0,419,36,1,0,0,0,420,421,5,36,0,0,421,38,1,0,0,0,422,423, + 5,80,0,0,423,424,5,66,0,0,424,425,5,88,0,0,425,426,5,65,0,0,426, + 427,5,103,0,0,427,428,5,103,0,0,428,429,5,114,0,0,429,430,5,101, + 0,0,430,431,5,103,0,0,431,432,5,97,0,0,432,433,5,116,0,0,433,434, + 5,101,0,0,434,435,5,84,0,0,435,436,5,97,0,0,436,437,5,114,0,0,437, + 438,5,103,0,0,438,439,5,101,0,0,439,440,5,116,0,0,440,40,1,0,0,0, + 441,442,5,80,0,0,442,443,5,66,0,0,443,444,5,88,0,0,444,445,5,66, + 0,0,445,446,5,117,0,0,446,447,5,105,0,0,447,448,5,108,0,0,448,449, + 5,100,0,0,449,450,5,70,0,0,450,451,5,105,0,0,451,452,5,108,0,0,452, + 453,5,101,0,0,453,42,1,0,0,0,454,455,5,80,0,0,455,456,5,66,0,0,456, + 457,5,88,0,0,457,458,5,66,0,0,458,459,5,117,0,0,459,460,5,105,0, + 0,460,461,5,108,0,0,461,462,5,100,0,0,462,463,5,82,0,0,463,464,5, + 117,0,0,464,465,5,108,0,0,465,466,5,101,0,0,466,44,1,0,0,0,467,468, + 5,80,0,0,468,469,5,66,0,0,469,470,5,88,0,0,470,471,5,66,0,0,471, + 472,5,117,0,0,472,473,5,105,0,0,473,474,5,108,0,0,474,475,5,100, + 0,0,475,476,5,83,0,0,476,477,5,116,0,0,477,478,5,121,0,0,478,479, + 5,108,0,0,479,480,5,101,0,0,480,46,1,0,0,0,481,482,5,80,0,0,482, + 483,5,66,0,0,483,484,5,88,0,0,484,485,5,67,0,0,485,486,5,111,0,0, + 486,487,5,110,0,0,487,488,5,116,0,0,488,489,5,97,0,0,489,490,5,105, + 0,0,490,491,5,110,0,0,491,492,5,101,0,0,492,493,5,114,0,0,493,494, + 5,73,0,0,494,495,5,116,0,0,495,496,5,101,0,0,496,497,5,109,0,0,497, + 498,5,80,0,0,498,499,5,114,0,0,499,500,5,111,0,0,500,501,5,120,0, + 0,501,502,5,121,0,0,502,48,1,0,0,0,503,504,5,80,0,0,504,505,5,66, + 0,0,505,506,5,88,0,0,506,507,5,67,0,0,507,508,5,111,0,0,508,509, + 5,112,0,0,509,510,5,121,0,0,510,511,5,70,0,0,511,512,5,105,0,0,512, + 513,5,108,0,0,513,514,5,101,0,0,514,515,5,115,0,0,515,516,5,66,0, + 0,516,517,5,117,0,0,517,518,5,105,0,0,518,519,5,108,0,0,519,520, + 5,100,0,0,520,521,5,80,0,0,521,522,5,104,0,0,522,523,5,97,0,0,523, + 524,5,115,0,0,524,525,5,101,0,0,525,50,1,0,0,0,526,527,5,80,0,0, + 527,528,5,66,0,0,528,529,5,88,0,0,529,530,5,70,0,0,530,531,5,105, + 0,0,531,532,5,108,0,0,532,533,5,101,0,0,533,534,5,82,0,0,534,535, + 5,101,0,0,535,536,5,102,0,0,536,537,5,101,0,0,537,538,5,114,0,0, + 538,539,5,101,0,0,539,540,5,110,0,0,540,541,5,99,0,0,541,542,5,101, + 0,0,542,52,1,0,0,0,543,544,5,80,0,0,544,545,5,66,0,0,545,546,5,88, + 0,0,546,547,5,70,0,0,547,548,5,105,0,0,548,549,5,108,0,0,549,550, + 5,101,0,0,550,551,5,83,0,0,551,552,5,121,0,0,552,553,5,115,0,0,553, + 554,5,116,0,0,554,555,5,101,0,0,555,556,5,109,0,0,556,557,5,83,0, + 0,557,558,5,121,0,0,558,559,5,110,0,0,559,560,5,99,0,0,560,561,5, + 104,0,0,561,562,5,114,0,0,562,563,5,111,0,0,563,564,5,110,0,0,564, + 565,5,105,0,0,565,566,5,122,0,0,566,567,5,101,0,0,567,568,5,100, + 0,0,568,569,5,66,0,0,569,570,5,117,0,0,570,571,5,105,0,0,571,572, + 5,108,0,0,572,573,5,100,0,0,573,574,5,70,0,0,574,575,5,105,0,0,575, + 576,5,108,0,0,576,577,5,101,0,0,577,578,5,69,0,0,578,579,5,120,0, + 0,579,580,5,99,0,0,580,581,5,101,0,0,581,582,5,112,0,0,582,583,5, + 116,0,0,583,584,5,105,0,0,584,585,5,111,0,0,585,586,5,110,0,0,586, + 587,5,83,0,0,587,588,5,101,0,0,588,589,5,116,0,0,589,54,1,0,0,0, + 590,591,5,80,0,0,591,592,5,66,0,0,592,593,5,88,0,0,593,594,5,70, + 0,0,594,595,5,105,0,0,595,596,5,108,0,0,596,597,5,101,0,0,597,598, + 5,83,0,0,598,599,5,121,0,0,599,600,5,115,0,0,600,601,5,116,0,0,601, + 602,5,101,0,0,602,603,5,109,0,0,603,604,5,83,0,0,604,605,5,121,0, + 0,605,606,5,110,0,0,606,607,5,99,0,0,607,608,5,104,0,0,608,609,5, + 114,0,0,609,610,5,111,0,0,610,611,5,110,0,0,611,612,5,105,0,0,612, + 613,5,122,0,0,613,614,5,101,0,0,614,615,5,100,0,0,615,616,5,82,0, + 0,616,617,5,111,0,0,617,618,5,111,0,0,618,619,5,116,0,0,619,620, + 5,71,0,0,620,621,5,114,0,0,621,622,5,111,0,0,622,623,5,117,0,0,623, + 624,5,112,0,0,624,56,1,0,0,0,625,626,5,80,0,0,626,627,5,66,0,0,627, + 628,5,88,0,0,628,629,5,70,0,0,629,630,5,114,0,0,630,631,5,97,0,0, + 631,632,5,109,0,0,632,633,5,101,0,0,633,634,5,119,0,0,634,635,5, + 111,0,0,635,636,5,114,0,0,636,637,5,107,0,0,637,638,5,115,0,0,638, + 639,5,66,0,0,639,640,5,117,0,0,640,641,5,105,0,0,641,642,5,108,0, + 0,642,643,5,100,0,0,643,644,5,80,0,0,644,645,5,104,0,0,645,646,5, + 97,0,0,646,647,5,115,0,0,647,648,5,101,0,0,648,58,1,0,0,0,649,650, + 5,80,0,0,650,651,5,66,0,0,651,652,5,88,0,0,652,653,5,71,0,0,653, + 654,5,114,0,0,654,655,5,111,0,0,655,656,5,117,0,0,656,657,5,112, + 0,0,657,60,1,0,0,0,658,659,5,80,0,0,659,660,5,66,0,0,660,661,5,88, + 0,0,661,662,5,72,0,0,662,663,5,101,0,0,663,664,5,97,0,0,664,665, + 5,100,0,0,665,666,5,101,0,0,666,667,5,114,0,0,667,668,5,115,0,0, + 668,669,5,66,0,0,669,670,5,117,0,0,670,671,5,105,0,0,671,672,5,108, + 0,0,672,673,5,100,0,0,673,674,5,80,0,0,674,675,5,104,0,0,675,676, + 5,97,0,0,676,677,5,115,0,0,677,678,5,101,0,0,678,62,1,0,0,0,679, + 680,5,80,0,0,680,681,5,66,0,0,681,682,5,88,0,0,682,683,5,78,0,0, + 683,684,5,97,0,0,684,685,5,116,0,0,685,686,5,105,0,0,686,687,5,118, + 0,0,687,688,5,101,0,0,688,689,5,84,0,0,689,690,5,97,0,0,690,691, + 5,114,0,0,691,692,5,103,0,0,692,693,5,101,0,0,693,694,5,116,0,0, + 694,64,1,0,0,0,695,696,5,80,0,0,696,697,5,66,0,0,697,698,5,88,0, + 0,698,699,5,76,0,0,699,700,5,101,0,0,700,701,5,103,0,0,701,702,5, + 97,0,0,702,703,5,99,0,0,703,704,5,121,0,0,704,705,5,84,0,0,705,706, + 5,97,0,0,706,707,5,114,0,0,707,708,5,103,0,0,708,709,5,101,0,0,709, + 710,5,116,0,0,710,66,1,0,0,0,711,712,5,80,0,0,712,713,5,66,0,0,713, + 714,5,88,0,0,714,715,5,80,0,0,715,716,5,114,0,0,716,717,5,111,0, + 0,717,718,5,106,0,0,718,719,5,101,0,0,719,720,5,99,0,0,720,721,5, + 116,0,0,721,68,1,0,0,0,722,723,5,80,0,0,723,724,5,66,0,0,724,725, + 5,88,0,0,725,726,5,82,0,0,726,727,5,101,0,0,727,728,5,102,0,0,728, + 729,5,101,0,0,729,730,5,114,0,0,730,731,5,101,0,0,731,732,5,110, + 0,0,732,733,5,99,0,0,733,734,5,101,0,0,734,735,5,80,0,0,735,736, + 5,114,0,0,736,737,5,111,0,0,737,738,5,120,0,0,738,739,5,121,0,0, + 739,70,1,0,0,0,740,741,5,80,0,0,741,742,5,66,0,0,742,743,5,88,0, + 0,743,744,5,82,0,0,744,745,5,101,0,0,745,746,5,115,0,0,746,747,5, + 111,0,0,747,748,5,117,0,0,748,749,5,114,0,0,749,750,5,99,0,0,750, + 751,5,101,0,0,751,752,5,115,0,0,752,753,5,66,0,0,753,754,5,117,0, + 0,754,755,5,105,0,0,755,756,5,108,0,0,756,757,5,100,0,0,757,758, + 5,80,0,0,758,759,5,104,0,0,759,760,5,97,0,0,760,761,5,115,0,0,761, + 779,5,101,0,0,762,763,5,80,0,0,763,764,5,66,0,0,764,765,5,88,0,0, + 765,766,5,82,0,0,766,767,5,101,0,0,767,768,5,122,0,0,768,769,5,66, + 0,0,769,770,5,117,0,0,770,771,5,105,0,0,771,772,5,108,0,0,772,773, + 5,100,0,0,773,774,5,80,0,0,774,775,5,104,0,0,775,776,5,97,0,0,776, + 777,5,115,0,0,777,779,5,101,0,0,778,740,1,0,0,0,778,762,1,0,0,0, + 779,72,1,0,0,0,780,781,5,80,0,0,781,782,5,66,0,0,782,783,5,88,0, + 0,783,784,5,83,0,0,784,785,5,104,0,0,785,786,5,101,0,0,786,787,5, + 108,0,0,787,788,5,108,0,0,788,789,5,83,0,0,789,790,5,99,0,0,790, + 791,5,114,0,0,791,792,5,105,0,0,792,793,5,112,0,0,793,794,5,116, + 0,0,794,795,5,66,0,0,795,796,5,117,0,0,796,797,5,105,0,0,797,798, + 5,108,0,0,798,799,5,100,0,0,799,800,5,80,0,0,800,801,5,104,0,0,801, + 802,5,97,0,0,802,803,5,115,0,0,803,804,5,101,0,0,804,74,1,0,0,0, + 805,806,5,80,0,0,806,807,5,66,0,0,807,808,5,88,0,0,808,809,5,83, + 0,0,809,810,5,104,0,0,810,811,5,101,0,0,811,812,5,108,0,0,812,813, + 5,108,0,0,813,814,5,66,0,0,814,815,5,117,0,0,815,816,5,105,0,0,816, + 817,5,108,0,0,817,818,5,100,0,0,818,819,5,80,0,0,819,820,5,104,0, + 0,820,821,5,97,0,0,821,822,5,115,0,0,822,823,5,101,0,0,823,76,1, + 0,0,0,824,825,5,80,0,0,825,826,5,66,0,0,826,827,5,88,0,0,827,828, + 5,83,0,0,828,829,5,111,0,0,829,830,5,117,0,0,830,831,5,114,0,0,831, + 832,5,99,0,0,832,833,5,101,0,0,833,834,5,115,0,0,834,835,5,66,0, + 0,835,836,5,117,0,0,836,837,5,105,0,0,837,838,5,108,0,0,838,839, + 5,100,0,0,839,840,5,80,0,0,840,841,5,104,0,0,841,842,5,97,0,0,842, + 843,5,115,0,0,843,844,5,101,0,0,844,78,1,0,0,0,845,846,5,80,0,0, + 846,847,5,66,0,0,847,848,5,88,0,0,848,849,5,84,0,0,849,850,5,97, + 0,0,850,851,5,114,0,0,851,852,5,103,0,0,852,853,5,101,0,0,853,854, + 5,116,0,0,854,855,5,68,0,0,855,856,5,101,0,0,856,857,5,112,0,0,857, + 858,5,101,0,0,858,859,5,110,0,0,859,860,5,100,0,0,860,861,5,101, + 0,0,861,862,5,110,0,0,862,863,5,99,0,0,863,864,5,121,0,0,864,80, + 1,0,0,0,865,866,5,80,0,0,866,867,5,66,0,0,867,868,5,88,0,0,868,869, + 5,86,0,0,869,870,5,97,0,0,870,871,5,114,0,0,871,872,5,105,0,0,872, + 873,5,97,0,0,873,874,5,110,0,0,874,875,5,116,0,0,875,876,5,71,0, + 0,876,877,5,114,0,0,877,878,5,111,0,0,878,879,5,117,0,0,879,880, + 5,112,0,0,880,82,1,0,0,0,881,882,5,88,0,0,882,883,5,67,0,0,883,884, + 5,66,0,0,884,885,5,117,0,0,885,886,5,105,0,0,886,887,5,108,0,0,887, + 888,5,100,0,0,888,889,5,67,0,0,889,890,5,111,0,0,890,891,5,110,0, + 0,891,892,5,102,0,0,892,893,5,105,0,0,893,894,5,103,0,0,894,895, + 5,117,0,0,895,896,5,114,0,0,896,897,5,97,0,0,897,898,5,116,0,0,898, + 899,5,105,0,0,899,900,5,111,0,0,900,901,5,110,0,0,901,84,1,0,0,0, + 902,903,5,88,0,0,903,904,5,67,0,0,904,905,5,67,0,0,905,906,5,111, + 0,0,906,907,5,110,0,0,907,908,5,102,0,0,908,909,5,105,0,0,909,910, + 5,103,0,0,910,911,5,117,0,0,911,912,5,114,0,0,912,913,5,97,0,0,913, + 914,5,116,0,0,914,915,5,105,0,0,915,916,5,111,0,0,916,917,5,110, + 0,0,917,918,5,76,0,0,918,919,5,105,0,0,919,920,5,115,0,0,920,921, + 5,116,0,0,921,86,1,0,0,0,922,923,5,88,0,0,923,924,5,67,0,0,924,925, + 5,82,0,0,925,926,5,101,0,0,926,927,5,109,0,0,927,928,5,111,0,0,928, + 929,5,116,0,0,929,930,5,101,0,0,930,931,5,83,0,0,931,932,5,119,0, + 0,932,933,5,105,0,0,933,934,5,102,0,0,934,935,5,116,0,0,935,936, + 5,80,0,0,936,937,5,97,0,0,937,938,5,99,0,0,938,939,5,107,0,0,939, + 940,5,97,0,0,940,941,5,103,0,0,941,942,5,101,0,0,942,943,5,82,0, + 0,943,944,5,101,0,0,944,945,5,102,0,0,945,946,5,101,0,0,946,947, + 5,114,0,0,947,948,5,101,0,0,948,949,5,110,0,0,949,950,5,99,0,0,950, + 951,5,101,0,0,951,88,1,0,0,0,952,953,5,88,0,0,953,954,5,67,0,0,954, + 955,5,83,0,0,955,956,5,119,0,0,956,957,5,105,0,0,957,958,5,102,0, + 0,958,959,5,116,0,0,959,960,5,80,0,0,960,961,5,97,0,0,961,962,5, + 99,0,0,962,963,5,107,0,0,963,964,5,97,0,0,964,965,5,103,0,0,965, + 966,5,101,0,0,966,967,5,80,0,0,967,968,5,114,0,0,968,969,5,111,0, + 0,969,970,5,100,0,0,970,971,5,117,0,0,971,972,5,99,0,0,972,973,5, + 116,0,0,973,974,5,68,0,0,974,975,5,101,0,0,975,976,5,112,0,0,976, + 977,5,101,0,0,977,978,5,110,0,0,978,979,5,100,0,0,979,980,5,101, + 0,0,980,981,5,110,0,0,981,982,5,99,0,0,982,983,5,121,0,0,983,90, + 1,0,0,0,984,985,5,88,0,0,985,986,5,67,0,0,986,987,5,86,0,0,987,988, + 5,101,0,0,988,989,5,114,0,0,989,990,5,115,0,0,990,991,5,105,0,0, + 991,992,5,111,0,0,992,993,5,110,0,0,993,994,5,71,0,0,994,995,5,114, + 0,0,995,996,5,111,0,0,996,997,5,117,0,0,997,998,5,112,0,0,998,92, + 1,0,0,0,999,1000,5,97,0,0,1000,1001,5,108,0,0,1001,1002,5,119,0, + 0,1002,1003,5,97,0,0,1003,1004,5,121,0,0,1004,1005,5,115,0,0,1005, + 1006,5,79,0,0,1006,1007,5,117,0,0,1007,1008,5,116,0,0,1008,1009, + 5,79,0,0,1009,1010,5,102,0,0,1010,1011,5,68,0,0,1011,1012,5,97,0, + 0,1012,1013,5,116,0,0,1013,1014,5,101,0,0,1014,94,1,0,0,0,1015,1016, + 5,102,0,0,1016,1017,5,105,0,0,1017,1018,5,108,0,0,1018,1019,5,101, + 0,0,1019,1020,5,82,0,0,1020,1021,5,101,0,0,1021,1022,5,102,0,0,1022, + 96,1,0,0,0,1023,1024,5,112,0,0,1024,1025,5,114,0,0,1025,1026,5,111, + 0,0,1026,1027,5,100,0,0,1027,1028,5,117,0,0,1028,1029,5,99,0,0,1029, + 1030,5,116,0,0,1030,1031,5,82,0,0,1031,1032,5,101,0,0,1032,1033, + 5,102,0,0,1033,98,1,0,0,0,1034,1035,5,99,0,0,1035,1036,5,111,0,0, + 1036,1037,5,110,0,0,1037,1038,5,116,0,0,1038,1039,5,97,0,0,1039, + 1040,5,105,0,0,1040,1041,5,110,0,0,1041,1042,5,101,0,0,1042,1043, + 5,114,0,0,1043,1044,5,80,0,0,1044,1045,5,111,0,0,1045,1046,5,114, + 0,0,1046,1047,5,116,0,0,1047,1048,5,97,0,0,1048,1049,5,108,0,0,1049, + 100,1,0,0,0,1050,1051,5,112,0,0,1051,1052,5,114,0,0,1052,1053,5, + 111,0,0,1053,1054,5,120,0,0,1054,1055,5,121,0,0,1055,1056,5,84,0, + 0,1056,1057,5,121,0,0,1057,1058,5,112,0,0,1058,1059,5,101,0,0,1059, + 102,1,0,0,0,1060,1061,5,114,0,0,1061,1062,5,101,0,0,1062,1063,5, + 109,0,0,1063,1064,5,111,0,0,1064,1065,5,116,0,0,1065,1066,5,101, + 0,0,1066,1067,5,71,0,0,1067,1068,5,108,0,0,1068,1069,5,111,0,0,1069, + 1070,5,98,0,0,1070,1071,5,97,0,0,1071,1072,5,108,0,0,1072,1073,5, + 73,0,0,1073,1074,5,68,0,0,1074,1075,5,83,0,0,1075,1076,5,116,0,0, + 1076,1077,5,114,0,0,1077,1078,5,105,0,0,1078,1079,5,110,0,0,1079, + 1080,5,103,0,0,1080,104,1,0,0,0,1081,1082,5,114,0,0,1082,1083,5, + 101,0,0,1083,1084,5,109,0,0,1084,1085,5,111,0,0,1085,1086,5,116, + 0,0,1086,1087,5,101,0,0,1087,1088,5,73,0,0,1088,1089,5,110,0,0,1089, + 1090,5,102,0,0,1090,1091,5,111,0,0,1091,106,1,0,0,0,1092,1093,5, + 102,0,0,1093,1094,5,105,0,0,1094,1095,5,108,0,0,1095,1096,5,101, + 0,0,1096,1097,5,69,0,0,1097,1098,5,110,0,0,1098,1099,5,99,0,0,1099, + 1100,5,111,0,0,1100,1101,5,100,0,0,1101,1102,5,105,0,0,1102,1103, + 5,110,0,0,1103,1104,5,103,0,0,1104,108,1,0,0,0,1105,1106,5,99,0, + 0,1106,1107,5,111,0,0,1107,1108,5,109,0,0,1108,1109,5,109,0,0,1109, + 1110,5,101,0,0,1110,1111,5,110,0,0,1111,1112,5,116,0,0,1112,1113, + 5,115,0,0,1113,110,1,0,0,0,1114,1115,5,101,0,0,1115,1116,5,120,0, + 0,1116,1117,5,112,0,0,1117,1118,5,108,0,0,1118,1119,5,105,0,0,1119, + 1120,5,99,0,0,1120,1121,5,105,0,0,1121,1122,5,116,0,0,1122,1123, + 5,70,0,0,1123,1124,5,105,0,0,1124,1125,5,108,0,0,1125,1126,5,101, + 0,0,1126,1127,5,84,0,0,1127,1128,5,121,0,0,1128,1129,5,112,0,0,1129, + 1130,5,101,0,0,1130,112,1,0,0,0,1131,1132,5,101,0,0,1132,1133,5, + 120,0,0,1133,1134,5,112,0,0,1134,1135,5,108,0,0,1135,1136,5,105, + 0,0,1136,1137,5,99,0,0,1137,1138,5,105,0,0,1138,1139,5,116,0,0,1139, + 1140,5,70,0,0,1140,1141,5,105,0,0,1141,1142,5,108,0,0,1142,1143, + 5,101,0,0,1143,1144,5,84,0,0,1144,1145,5,121,0,0,1145,1146,5,112, + 0,0,1146,1147,5,101,0,0,1147,1148,5,115,0,0,1148,114,1,0,0,0,1149, + 1150,5,101,0,0,1150,1151,5,120,0,0,1151,1152,5,112,0,0,1152,1153, + 5,108,0,0,1153,1154,5,105,0,0,1154,1155,5,99,0,0,1155,1156,5,105, + 0,0,1156,1157,5,116,0,0,1157,1158,5,70,0,0,1158,1159,5,111,0,0,1159, + 1160,5,108,0,0,1160,1161,5,100,0,0,1161,1162,5,101,0,0,1162,1163, + 5,114,0,0,1163,1164,5,115,0,0,1164,116,1,0,0,0,1165,1166,5,108,0, + 0,1166,1167,5,97,0,0,1167,1168,5,115,0,0,1168,1169,5,116,0,0,1169, + 1170,5,75,0,0,1170,1171,5,110,0,0,1171,1172,5,111,0,0,1172,1173, + 5,119,0,0,1173,1174,5,110,0,0,1174,1175,5,70,0,0,1175,1176,5,105, + 0,0,1176,1177,5,108,0,0,1177,1178,5,101,0,0,1178,1179,5,84,0,0,1179, + 1180,5,121,0,0,1180,1181,5,112,0,0,1181,1182,5,101,0,0,1182,118, + 1,0,0,0,1183,1184,5,105,0,0,1184,1185,5,110,0,0,1185,1186,5,99,0, + 0,1186,1187,5,108,0,0,1187,1188,5,117,0,0,1188,1189,5,100,0,0,1189, + 1190,5,101,0,0,1190,1191,5,73,0,0,1191,1192,5,110,0,0,1192,1193, + 5,73,0,0,1193,1194,5,110,0,0,1194,1195,5,100,0,0,1195,1196,5,101, + 0,0,1196,1197,5,120,0,0,1197,120,1,0,0,0,1198,1199,5,105,0,0,1199, + 1200,5,110,0,0,1200,1201,5,100,0,0,1201,1202,5,101,0,0,1202,1203, + 5,110,0,0,1203,1204,5,116,0,0,1204,1205,5,87,0,0,1205,1206,5,105, + 0,0,1206,1207,5,100,0,0,1207,1208,5,116,0,0,1208,1209,5,104,0,0, + 1209,122,1,0,0,0,1210,1211,5,116,0,0,1211,1212,5,97,0,0,1212,1213, + 5,98,0,0,1213,1214,5,87,0,0,1214,1215,5,105,0,0,1215,1216,5,100, + 0,0,1216,1217,5,116,0,0,1217,1218,5,104,0,0,1218,124,1,0,0,0,1219, + 1220,5,117,0,0,1220,1221,5,115,0,0,1221,1222,5,101,0,0,1222,1223, + 5,115,0,0,1223,1224,5,84,0,0,1224,1225,5,97,0,0,1225,1226,5,98,0, + 0,1226,1227,5,115,0,0,1227,126,1,0,0,0,1228,1229,5,119,0,0,1229, + 1230,5,114,0,0,1230,1231,5,97,0,0,1231,1232,5,112,0,0,1232,1233, + 5,115,0,0,1233,1234,5,76,0,0,1234,1235,5,105,0,0,1235,1236,5,110, + 0,0,1236,1237,5,101,0,0,1237,1238,5,115,0,0,1238,128,1,0,0,0,1239, + 1240,5,112,0,0,1240,1241,5,108,0,0,1241,1242,5,97,0,0,1242,1243, + 5,116,0,0,1243,1244,5,102,0,0,1244,1245,5,111,0,0,1245,1246,5,114, + 0,0,1246,1247,5,109,0,0,1247,1248,5,70,0,0,1248,1249,5,105,0,0,1249, + 1250,5,108,0,0,1250,1251,5,116,0,0,1251,1252,5,101,0,0,1252,1253, + 5,114,0,0,1253,130,1,0,0,0,1254,1255,5,112,0,0,1255,1256,5,108,0, + 0,1256,1257,5,97,0,0,1257,1258,5,116,0,0,1258,1259,5,102,0,0,1259, + 1260,5,111,0,0,1260,1261,5,114,0,0,1261,1262,5,109,0,0,1262,1263, + 5,70,0,0,1263,1264,5,105,0,0,1264,1265,5,108,0,0,1265,1266,5,116, + 0,0,1266,1267,5,101,0,0,1267,1268,5,114,0,0,1268,1269,5,115,0,0, + 1269,132,1,0,0,0,1270,1271,5,99,0,0,1271,1272,5,104,0,0,1272,1273, + 5,105,0,0,1273,1274,5,108,0,0,1274,1275,5,100,0,0,1275,1276,5,114, + 0,0,1276,1277,5,101,0,0,1277,1278,5,110,0,0,1278,134,1,0,0,0,1279, + 1280,5,112,0,0,1280,1281,5,114,0,0,1281,1282,5,111,0,0,1282,1283, + 5,100,0,0,1283,1284,5,117,0,0,1284,1285,5,99,0,0,1285,1286,5,116, + 0,0,1286,1287,5,73,0,0,1287,1288,5,110,0,0,1288,1289,5,115,0,0,1289, + 1290,5,116,0,0,1290,1291,5,97,0,0,1291,1292,5,108,0,0,1292,1293, + 5,108,0,0,1293,1294,5,80,0,0,1294,1295,5,97,0,0,1295,1296,5,116, + 0,0,1296,1297,5,104,0,0,1297,136,1,0,0,0,1298,1299,5,114,0,0,1299, + 1300,5,101,0,0,1300,1301,5,112,0,0,1301,1302,5,111,0,0,1302,1303, + 5,115,0,0,1303,1304,5,105,0,0,1304,1305,5,116,0,0,1305,1306,5,111, + 0,0,1306,1307,5,114,0,0,1307,1308,5,121,0,0,1308,1309,5,85,0,0,1309, + 1310,5,82,0,0,1310,1311,5,76,0,0,1311,138,1,0,0,0,1312,1313,5,114, + 0,0,1313,1314,5,101,0,0,1314,1315,5,113,0,0,1315,1316,5,117,0,0, + 1316,1317,5,105,0,0,1317,1318,5,114,0,0,1318,1319,5,101,0,0,1319, + 1320,5,109,0,0,1320,1321,5,101,0,0,1321,1322,5,110,0,0,1322,1323, + 5,116,0,0,1323,140,1,0,0,0,1324,1325,5,112,0,0,1325,1326,5,97,0, + 0,1326,1327,5,99,0,0,1327,1328,5,107,0,0,1328,1329,5,97,0,0,1329, + 1330,5,103,0,0,1330,1331,5,101,0,0,1331,142,1,0,0,0,1332,1333,5, + 112,0,0,1333,1334,5,97,0,0,1334,1335,5,99,0,0,1335,1336,5,107,0, + 0,1336,1337,5,97,0,0,1337,1338,5,103,0,0,1338,1339,5,101,0,0,1339, + 1340,5,80,0,0,1340,1341,5,114,0,0,1341,1342,5,111,0,0,1342,1343, + 5,100,0,0,1343,1344,5,117,0,0,1344,1345,5,99,0,0,1345,1346,5,116, + 0,0,1346,1347,5,68,0,0,1347,1348,5,101,0,0,1348,1349,5,112,0,0,1349, + 1350,5,101,0,0,1350,1351,5,110,0,0,1351,1352,5,100,0,0,1352,1353, + 5,101,0,0,1353,1354,5,110,0,0,1354,1355,5,99,0,0,1355,1356,5,105, + 0,0,1356,1357,5,101,0,0,1357,1358,5,115,0,0,1358,144,1,0,0,0,1359, + 1360,5,110,0,0,1360,1361,5,97,0,0,1361,1362,5,109,0,0,1362,1363, + 5,101,0,0,1363,146,1,0,0,0,1364,1365,5,112,0,0,1365,1366,5,97,0, + 0,1366,1367,5,116,0,0,1367,1368,5,104,0,0,1368,148,1,0,0,0,1369, + 1370,5,115,0,0,1370,1371,5,111,0,0,1371,1372,5,117,0,0,1372,1373, + 5,114,0,0,1373,1374,5,99,0,0,1374,1375,5,101,0,0,1375,1376,5,84, + 0,0,1376,1377,5,114,0,0,1377,1378,5,101,0,0,1378,1379,5,101,0,0, + 1379,150,1,0,0,0,1380,1381,5,98,0,0,1381,1382,5,117,0,0,1382,1383, + 5,105,0,0,1383,1384,5,108,0,0,1384,1385,5,100,0,0,1385,1386,5,65, + 0,0,1386,1387,5,99,0,0,1387,1388,5,116,0,0,1388,1389,5,105,0,0,1389, + 1390,5,111,0,0,1390,1391,5,110,0,0,1391,1392,5,77,0,0,1392,1393, + 5,97,0,0,1393,1394,5,115,0,0,1394,1395,5,107,0,0,1395,152,1,0,0, + 0,1396,1397,5,102,0,0,1397,1398,5,105,0,0,1398,1399,5,108,0,0,1399, + 1400,5,101,0,0,1400,1401,5,115,0,0,1401,154,1,0,0,0,1402,1403,5, + 114,0,0,1403,1404,5,117,0,0,1404,1405,5,110,0,0,1405,1406,5,79,0, + 0,1406,1407,5,110,0,0,1407,1408,5,108,0,0,1408,1409,5,121,0,0,1409, + 1410,5,70,0,0,1410,1411,5,111,0,0,1411,1412,5,114,0,0,1412,1413, + 5,68,0,0,1413,1414,5,101,0,0,1414,1415,5,112,0,0,1415,1416,5,108, + 0,0,1416,1417,5,111,0,0,1417,1418,5,121,0,0,1418,1419,5,109,0,0, + 1419,1420,5,101,0,0,1420,1421,5,110,0,0,1421,1422,5,116,0,0,1422, + 1423,5,80,0,0,1423,1424,5,111,0,0,1424,1425,5,115,0,0,1425,1426, + 5,116,0,0,1426,1427,5,112,0,0,1427,1428,5,114,0,0,1428,1429,5,111, + 0,0,1429,1430,5,99,0,0,1430,1431,5,101,0,0,1431,1432,5,115,0,0,1432, + 1433,5,115,0,0,1433,1434,5,105,0,0,1434,1435,5,110,0,0,1435,1436, + 5,103,0,0,1436,156,1,0,0,0,1437,1438,5,98,0,0,1438,1439,5,117,0, + 0,1439,1440,5,105,0,0,1440,1441,5,108,0,0,1441,1442,5,100,0,0,1442, + 1443,5,67,0,0,1443,1444,5,111,0,0,1444,1445,5,110,0,0,1445,1446, + 5,102,0,0,1446,1447,5,105,0,0,1447,1448,5,103,0,0,1448,1449,5,117, + 0,0,1449,1450,5,114,0,0,1450,1451,5,97,0,0,1451,1452,5,116,0,0,1452, + 1453,5,105,0,0,1453,1454,5,111,0,0,1454,1455,5,110,0,0,1455,1456, + 5,76,0,0,1456,1457,5,105,0,0,1457,1458,5,115,0,0,1458,1459,5,116, + 0,0,1459,158,1,0,0,0,1460,1461,5,98,0,0,1461,1462,5,117,0,0,1462, + 1463,5,105,0,0,1463,1464,5,108,0,0,1464,1465,5,100,0,0,1465,1466, + 5,80,0,0,1466,1467,5,104,0,0,1467,1468,5,97,0,0,1468,1469,5,115, + 0,0,1469,1470,5,101,0,0,1470,1471,5,115,0,0,1471,160,1,0,0,0,1472, + 1473,5,98,0,0,1473,1474,5,117,0,0,1474,1475,5,105,0,0,1475,1476, + 5,108,0,0,1476,1477,5,100,0,0,1477,1478,5,82,0,0,1478,1479,5,117, + 0,0,1479,1480,5,108,0,0,1480,1481,5,101,0,0,1481,1482,5,115,0,0, + 1482,162,1,0,0,0,1483,1484,5,98,0,0,1484,1485,5,117,0,0,1485,1486, + 5,105,0,0,1486,1487,5,108,0,0,1487,1488,5,100,0,0,1488,1489,5,65, + 0,0,1489,1490,5,114,0,0,1490,1491,5,103,0,0,1491,1492,5,117,0,0, + 1492,1493,5,109,0,0,1493,1494,5,101,0,0,1494,1495,5,110,0,0,1495, + 1496,5,116,0,0,1496,1497,5,115,0,0,1497,1498,5,83,0,0,1498,1499, + 5,116,0,0,1499,1500,5,114,0,0,1500,1501,5,105,0,0,1501,1502,5,110, + 0,0,1502,1503,5,103,0,0,1503,164,1,0,0,0,1504,1505,5,98,0,0,1505, + 1506,5,117,0,0,1506,1507,5,105,0,0,1507,1508,5,108,0,0,1508,1509, + 5,100,0,0,1509,1510,5,84,0,0,1510,1511,5,111,0,0,1511,1512,5,111, + 0,0,1512,1513,5,108,0,0,1513,1514,5,80,0,0,1514,1515,5,97,0,0,1515, + 1516,5,116,0,0,1516,1517,5,104,0,0,1517,166,1,0,0,0,1518,1519,5, + 98,0,0,1519,1520,5,117,0,0,1520,1521,5,105,0,0,1521,1522,5,108,0, + 0,1522,1523,5,100,0,0,1523,1524,5,87,0,0,1524,1525,5,111,0,0,1525, + 1526,5,114,0,0,1526,1527,5,107,0,0,1527,1528,5,105,0,0,1528,1529, + 5,110,0,0,1529,1530,5,103,0,0,1530,1531,5,68,0,0,1531,1532,5,105, + 0,0,1532,1533,5,114,0,0,1533,1534,5,101,0,0,1534,1535,5,99,0,0,1535, + 1536,5,116,0,0,1536,1537,5,111,0,0,1537,1538,5,114,0,0,1538,1539, + 5,121,0,0,1539,168,1,0,0,0,1540,1541,5,112,0,0,1541,1542,5,97,0, + 0,1542,1543,5,115,0,0,1543,1544,5,115,0,0,1544,1545,5,66,0,0,1545, + 1546,5,117,0,0,1546,1547,5,105,0,0,1547,1548,5,108,0,0,1548,1549, + 5,100,0,0,1549,1550,5,83,0,0,1550,1551,5,101,0,0,1551,1552,5,116, + 0,0,1552,1553,5,116,0,0,1553,1554,5,105,0,0,1554,1555,5,110,0,0, + 1555,1556,5,103,0,0,1556,1557,5,115,0,0,1557,1558,5,73,0,0,1558, + 1559,5,110,0,0,1559,1560,5,69,0,0,1560,1561,5,110,0,0,1561,1562, + 5,118,0,0,1562,1563,5,105,0,0,1563,1564,5,114,0,0,1564,1565,5,111, + 0,0,1565,1566,5,110,0,0,1566,1567,5,109,0,0,1567,1568,5,101,0,0, + 1568,1569,5,110,0,0,1569,1570,5,116,0,0,1570,170,1,0,0,0,1571,1572, + 5,100,0,0,1572,1573,5,101,0,0,1573,1574,5,112,0,0,1574,1575,5,101, + 0,0,1575,1576,5,110,0,0,1576,1577,5,100,0,0,1577,1578,5,101,0,0, + 1578,1579,5,110,0,0,1579,1580,5,99,0,0,1580,1581,5,105,0,0,1581, + 1582,5,101,0,0,1582,1583,5,115,0,0,1583,172,1,0,0,0,1584,1585,5, + 112,0,0,1585,1586,5,114,0,0,1586,1587,5,111,0,0,1587,1588,5,100, + 0,0,1588,1589,5,117,0,0,1589,1590,5,99,0,0,1590,1591,5,116,0,0,1591, + 1592,5,78,0,0,1592,1593,5,97,0,0,1593,1594,5,109,0,0,1594,1595,5, + 101,0,0,1595,174,1,0,0,0,1596,1597,5,112,0,0,1597,1598,5,114,0,0, + 1598,1599,5,111,0,0,1599,1600,5,100,0,0,1600,1601,5,117,0,0,1601, + 1602,5,99,0,0,1602,1603,5,116,0,0,1603,1604,5,82,0,0,1604,1605,5, + 101,0,0,1605,1606,5,102,0,0,1606,1607,5,101,0,0,1607,1608,5,114, + 0,0,1608,1609,5,101,0,0,1609,1610,5,110,0,0,1610,1611,5,99,0,0,1611, + 1612,5,101,0,0,1612,176,1,0,0,0,1613,1614,5,112,0,0,1614,1615,5, + 114,0,0,1615,1616,5,111,0,0,1616,1617,5,100,0,0,1617,1618,5,117, + 0,0,1618,1619,5,99,0,0,1619,1620,5,116,0,0,1620,1621,5,84,0,0,1621, + 1622,5,121,0,0,1622,1623,5,112,0,0,1623,1624,5,101,0,0,1624,178, + 1,0,0,0,1625,1626,5,108,0,0,1626,1627,5,105,0,0,1627,1628,5,110, + 0,0,1628,1629,5,101,0,0,1629,1630,5,69,0,0,1630,1631,5,110,0,0,1631, + 1632,5,100,0,0,1632,1633,5,105,0,0,1633,1634,5,110,0,0,1634,1635, + 5,103,0,0,1635,180,1,0,0,0,1636,1637,5,120,0,0,1637,1638,5,99,0, + 0,1638,1639,5,76,0,0,1639,1640,5,97,0,0,1640,1641,5,110,0,0,1641, + 1642,5,103,0,0,1642,1643,5,117,0,0,1643,1644,5,97,0,0,1644,1645, + 5,103,0,0,1645,1646,5,101,0,0,1646,1647,5,83,0,0,1647,1648,5,112, + 0,0,1648,1649,5,101,0,0,1649,1650,5,99,0,0,1650,1651,5,105,0,0,1651, + 1652,5,102,0,0,1652,1653,5,105,0,0,1653,1654,5,99,0,0,1654,1655, + 5,97,0,0,1655,1656,5,116,0,0,1656,1657,5,105,0,0,1657,1658,5,111, + 0,0,1658,1659,5,110,0,0,1659,1660,5,73,0,0,1660,1661,5,100,0,0,1661, + 1662,5,101,0,0,1662,1663,5,110,0,0,1663,1664,5,116,0,0,1664,1665, + 5,105,0,0,1665,1666,5,102,0,0,1666,1667,5,105,0,0,1667,1668,5,101, + 0,0,1668,1669,5,114,0,0,1669,182,1,0,0,0,1670,1671,5,112,0,0,1671, + 1672,5,108,0,0,1672,1673,5,105,0,0,1673,1674,5,115,0,0,1674,1675, + 5,116,0,0,1675,1676,5,83,0,0,1676,1677,5,116,0,0,1677,1678,5,114, + 0,0,1678,1679,5,117,0,0,1679,1680,5,99,0,0,1680,1681,5,116,0,0,1681, + 1682,5,117,0,0,1682,1683,5,114,0,0,1683,1684,5,101,0,0,1684,1685, + 5,68,0,0,1685,1686,5,101,0,0,1686,1687,5,102,0,0,1687,1688,5,105, + 0,0,1688,1689,5,110,0,0,1689,1690,5,105,0,0,1690,1691,5,116,0,0, + 1691,1692,5,105,0,0,1692,1693,5,111,0,0,1693,1694,5,110,0,0,1694, + 1695,5,73,0,0,1695,1696,5,100,0,0,1696,1697,5,101,0,0,1697,1698, + 5,110,0,0,1698,1699,5,116,0,0,1699,1700,5,105,0,0,1700,1701,5,102, + 0,0,1701,1702,5,105,0,0,1702,1703,5,101,0,0,1703,1704,5,114,0,0, + 1704,184,1,0,0,0,1705,1706,5,114,0,0,1706,1707,5,101,0,0,1707,1708, + 5,102,0,0,1708,1709,5,84,0,0,1709,1710,5,121,0,0,1710,1711,5,112, + 0,0,1711,1712,5,101,0,0,1712,186,1,0,0,0,1713,1714,5,99,0,0,1714, + 1715,5,111,0,0,1715,1716,5,109,0,0,1716,1717,5,112,0,0,1717,1718, + 5,105,0,0,1718,1719,5,108,0,0,1719,1720,5,101,0,0,1720,1721,5,114, + 0,0,1721,1722,5,83,0,0,1722,1723,5,112,0,0,1723,1724,5,101,0,0,1724, + 1725,5,99,0,0,1725,188,1,0,0,0,1726,1727,5,102,0,0,1727,1728,5,105, + 0,0,1728,1729,5,108,0,0,1729,1730,5,101,0,0,1730,1731,5,80,0,0,1731, + 1732,5,97,0,0,1732,1733,5,116,0,0,1733,1734,5,116,0,0,1734,1735, + 5,101,0,0,1735,1736,5,114,0,0,1736,1737,5,110,0,0,1737,1738,5,115, + 0,0,1738,190,1,0,0,0,1739,1740,5,105,0,0,1740,1741,5,110,0,0,1741, + 1742,5,112,0,0,1742,1743,5,117,0,0,1743,1744,5,116,0,0,1744,1745, + 5,70,0,0,1745,1746,5,105,0,0,1746,1747,5,108,0,0,1747,1748,5,101, + 0,0,1748,1749,5,115,0,0,1749,192,1,0,0,0,1750,1751,5,105,0,0,1751, + 1752,5,115,0,0,1752,1753,5,69,0,0,1753,1754,5,100,0,0,1754,1755, + 5,105,0,0,1755,1756,5,116,0,0,1756,1757,5,97,0,0,1757,1758,5,98, + 0,0,1758,1759,5,108,0,0,1759,1760,5,101,0,0,1760,194,1,0,0,0,1761, + 1762,5,111,0,0,1762,1763,5,117,0,0,1763,1764,5,116,0,0,1764,1765, + 5,112,0,0,1765,1766,5,117,0,0,1766,1767,5,116,0,0,1767,1768,5,70, + 0,0,1768,1769,5,105,0,0,1769,1770,5,108,0,0,1770,1771,5,101,0,0, + 1771,1772,5,115,0,0,1772,196,1,0,0,0,1773,1774,5,114,0,0,1774,1775, + 5,117,0,0,1775,1776,5,110,0,0,1776,1777,5,79,0,0,1777,1778,5,110, + 0,0,1778,1779,5,99,0,0,1779,1780,5,101,0,0,1780,1781,5,80,0,0,1781, + 1782,5,101,0,0,1782,1783,5,114,0,0,1783,1784,5,65,0,0,1784,1785, + 5,114,0,0,1785,1786,5,99,0,0,1786,1787,5,104,0,0,1787,1788,5,105, + 0,0,1788,1789,5,116,0,0,1789,1790,5,101,0,0,1790,1791,5,99,0,0,1791, + 1792,5,116,0,0,1792,1793,5,117,0,0,1793,1794,5,114,0,0,1794,1795, + 5,101,0,0,1795,198,1,0,0,0,1796,1797,5,115,0,0,1797,1798,5,99,0, + 0,1798,1799,5,114,0,0,1799,1800,5,105,0,0,1800,1801,5,112,0,0,1801, + 1802,5,116,0,0,1802,200,1,0,0,0,1803,1804,5,97,0,0,1804,1805,5,116, + 0,0,1805,1806,5,116,0,0,1806,1807,5,114,0,0,1807,1808,5,105,0,0, + 1808,1809,5,98,0,0,1809,1810,5,117,0,0,1810,1811,5,116,0,0,1811, + 1812,5,101,0,0,1812,1813,5,115,0,0,1813,202,1,0,0,0,1814,1815,5, + 76,0,0,1815,1816,5,97,0,0,1816,1817,5,115,0,0,1817,1818,5,116,0, + 0,1818,1819,5,83,0,0,1819,1820,5,119,0,0,1820,1821,5,105,0,0,1821, + 1822,5,102,0,0,1822,1823,5,116,0,0,1823,1824,5,77,0,0,1824,1825, + 5,105,0,0,1825,1826,5,103,0,0,1826,1827,5,114,0,0,1827,1828,5,97, + 0,0,1828,1829,5,116,0,0,1829,1830,5,105,0,0,1830,1831,5,111,0,0, + 1831,1832,5,110,0,0,1832,204,1,0,0,0,1833,1834,5,68,0,0,1834,1835, + 5,101,0,0,1835,1836,5,102,0,0,1836,1837,5,97,0,0,1837,1838,5,117, + 0,0,1838,1839,5,108,0,0,1839,1840,5,116,0,0,1840,1841,5,66,0,0,1841, + 1842,5,117,0,0,1842,1843,5,105,0,0,1843,1844,5,108,0,0,1844,1845, + 5,100,0,0,1845,1846,5,83,0,0,1846,1847,5,121,0,0,1847,1848,5,115, + 0,0,1848,1849,5,116,0,0,1849,1850,5,101,0,0,1850,1851,5,109,0,0, + 1851,1852,5,84,0,0,1852,1853,5,121,0,0,1853,1854,5,112,0,0,1854, + 1855,5,101,0,0,1855,1856,5,70,0,0,1856,1857,5,111,0,0,1857,1858, + 5,114,0,0,1858,1859,5,87,0,0,1859,1860,5,111,0,0,1860,1861,5,114, + 0,0,1861,1862,5,107,0,0,1862,1863,5,115,0,0,1863,1864,5,112,0,0, + 1864,1865,5,97,0,0,1865,1866,5,99,0,0,1866,1867,5,101,0,0,1867,206, + 1,0,0,0,1868,1869,5,76,0,0,1869,1870,5,97,0,0,1870,1871,5,115,0, + 0,1871,1872,5,116,0,0,1872,1873,5,83,0,0,1873,1874,5,119,0,0,1874, + 1875,5,105,0,0,1875,1876,5,102,0,0,1876,1877,5,116,0,0,1877,1878, + 5,85,0,0,1878,1879,5,112,0,0,1879,1880,5,100,0,0,1880,1881,5,97, + 0,0,1881,1882,5,116,0,0,1882,1883,5,101,0,0,1883,1884,5,67,0,0,1884, + 1885,5,104,0,0,1885,1886,5,101,0,0,1886,1887,5,99,0,0,1887,1888, + 5,107,0,0,1888,208,1,0,0,0,1889,1890,5,66,0,0,1890,1891,5,117,0, + 0,1891,1892,5,105,0,0,1892,1893,5,108,0,0,1893,1894,5,100,0,0,1894, + 1895,5,73,0,0,1895,1896,5,110,0,0,1896,1897,5,100,0,0,1897,1898, + 5,101,0,0,1898,1899,5,112,0,0,1899,1900,5,101,0,0,1900,1901,5,110, + 0,0,1901,1902,5,100,0,0,1902,1903,5,101,0,0,1903,1904,5,110,0,0, + 1904,1905,5,116,0,0,1905,1906,5,84,0,0,1906,1907,5,97,0,0,1907,1908, + 5,114,0,0,1908,1909,5,103,0,0,1909,1910,5,101,0,0,1910,1911,5,116, + 0,0,1911,1912,5,115,0,0,1912,1913,5,73,0,0,1913,1914,5,110,0,0,1914, + 1915,5,80,0,0,1915,1916,5,97,0,0,1916,1917,5,114,0,0,1917,1918,5, + 97,0,0,1918,1919,5,108,0,0,1919,1920,5,108,0,0,1920,1921,5,101,0, + 0,1921,1922,5,108,0,0,1922,210,1,0,0,0,1923,1924,5,76,0,0,1924,1925, + 5,97,0,0,1925,1926,5,115,0,0,1926,1927,5,116,0,0,1927,1928,5,84, + 0,0,1928,1929,5,101,0,0,1929,1930,5,115,0,0,1930,1931,5,116,0,0, + 1931,1932,5,105,0,0,1932,1933,5,110,0,0,1933,1934,5,103,0,0,1934, + 1935,5,85,0,0,1935,1936,5,112,0,0,1936,1937,5,103,0,0,1937,1938, + 5,114,0,0,1938,1939,5,97,0,0,1939,1940,5,100,0,0,1940,1941,5,101, + 0,0,1941,1942,5,67,0,0,1942,1943,5,104,0,0,1943,1944,5,101,0,0,1944, + 1945,5,99,0,0,1945,1946,5,107,0,0,1946,212,1,0,0,0,1947,1948,5,76, + 0,0,1948,1949,5,97,0,0,1949,1950,5,115,0,0,1950,1951,5,116,0,0,1951, + 1952,5,85,0,0,1952,1953,5,112,0,0,1953,1954,5,103,0,0,1954,1955, + 5,114,0,0,1955,1956,5,97,0,0,1956,1957,5,100,0,0,1957,1958,5,101, + 0,0,1958,1959,5,67,0,0,1959,1960,5,104,0,0,1960,1961,5,101,0,0,1961, + 1962,5,99,0,0,1962,1963,5,107,0,0,1963,214,1,0,0,0,1964,1965,5,79, + 0,0,1965,1966,5,82,0,0,1966,1967,5,71,0,0,1967,1968,5,65,0,0,1968, + 1969,5,78,0,0,1969,1970,5,73,0,0,1970,1971,5,90,0,0,1971,1972,5, + 65,0,0,1972,1973,5,84,0,0,1973,1974,5,73,0,0,1974,1975,5,79,0,0, + 1975,1976,5,78,0,0,1976,1977,5,78,0,0,1977,1978,5,65,0,0,1978,1979, + 5,77,0,0,1979,1980,5,69,0,0,1980,216,1,0,0,0,1981,1982,5,84,0,0, + 1982,1983,5,97,0,0,1983,1984,5,114,0,0,1984,1985,5,103,0,0,1985, + 1986,5,101,0,0,1986,1987,5,116,0,0,1987,1988,5,65,0,0,1988,1989, + 5,116,0,0,1989,1990,5,116,0,0,1990,1991,5,114,0,0,1991,1992,5,105, + 0,0,1992,1993,5,98,0,0,1993,1994,5,117,0,0,1994,1995,5,116,0,0,1995, + 1996,5,101,0,0,1996,1997,5,115,0,0,1997,218,1,0,0,0,1998,1999,5, + 67,0,0,1999,2000,5,114,0,0,2000,2001,5,101,0,0,2001,2002,5,97,0, + 0,2002,2003,5,116,0,0,2003,2004,5,101,0,0,2004,2005,5,100,0,0,2005, + 2006,5,79,0,0,2006,2007,5,110,0,0,2007,2008,5,84,0,0,2008,2009,5, + 111,0,0,2009,2010,5,111,0,0,2010,2011,5,108,0,0,2011,2012,5,115, + 0,0,2012,2013,5,86,0,0,2013,2014,5,101,0,0,2014,2015,5,114,0,0,2015, + 2016,5,115,0,0,2016,2017,5,105,0,0,2017,2018,5,111,0,0,2018,2019, + 5,110,0,0,2019,220,1,0,0,0,2020,2021,5,84,0,0,2021,2022,5,101,0, + 0,2022,2023,5,115,0,0,2023,2024,5,116,0,0,2024,2025,5,84,0,0,2025, + 2026,5,97,0,0,2026,2027,5,114,0,0,2027,2028,5,103,0,0,2028,2029, + 5,101,0,0,2029,2030,5,116,0,0,2030,2031,5,73,0,0,2031,2032,5,68, + 0,0,2032,222,1,0,0,0,2033,2034,5,68,0,0,2034,2035,5,101,0,0,2035, + 2036,5,118,0,0,2036,2037,5,101,0,0,2037,2038,5,108,0,0,2038,2039, + 5,111,0,0,2039,2040,5,112,0,0,2040,2041,5,109,0,0,2041,2042,5,101, + 0,0,2042,2043,5,110,0,0,2043,2044,5,116,0,0,2044,2045,5,84,0,0,2045, + 2046,5,101,0,0,2046,2047,5,97,0,0,2047,2048,5,109,0,0,2048,224,1, + 0,0,0,2049,2050,5,68,0,0,2050,2051,5,101,0,0,2051,2052,5,118,0,0, + 2052,2053,5,101,0,0,2053,2054,5,108,0,0,2054,2055,5,111,0,0,2055, + 2056,5,112,0,0,2056,2057,5,109,0,0,2057,2058,5,101,0,0,2058,2059, + 5,110,0,0,2059,2060,5,116,0,0,2060,2061,5,84,0,0,2061,2062,5,101, + 0,0,2062,2063,5,97,0,0,2063,2064,5,109,0,0,2064,2065,5,78,0,0,2065, + 2066,5,97,0,0,2066,2067,5,109,0,0,2067,2068,5,101,0,0,2068,226,1, + 0,0,0,2069,2070,5,80,0,0,2070,2071,5,114,0,0,2071,2072,5,111,0,0, + 2072,2073,5,118,0,0,2073,2074,5,105,0,0,2074,2075,5,115,0,0,2075, + 2076,5,105,0,0,2076,2077,5,111,0,0,2077,2078,5,110,0,0,2078,2079, + 5,105,0,0,2079,2080,5,110,0,0,2080,2081,5,103,0,0,2081,2082,5,83, + 0,0,2082,2083,5,116,0,0,2083,2084,5,121,0,0,2084,2085,5,108,0,0, + 2085,2086,5,101,0,0,2086,228,1,0,0,0,2087,2088,5,99,0,0,2088,2089, + 5,111,0,0,2089,2090,5,109,0,0,2090,2091,5,112,0,0,2091,2092,5,97, + 0,0,2092,2093,5,116,0,0,2093,2094,5,105,0,0,2094,2095,5,98,0,0,2095, + 2096,5,105,0,0,2096,2097,5,108,0,0,2097,2098,5,105,0,0,2098,2099, + 5,116,0,0,2099,2100,5,121,0,0,2100,2101,5,86,0,0,2101,2102,5,101, + 0,0,2102,2103,5,114,0,0,2103,2104,5,115,0,0,2104,2105,5,105,0,0, + 2105,2106,5,111,0,0,2106,2107,5,110,0,0,2107,230,1,0,0,0,2108,2109, + 5,100,0,0,2109,2110,5,101,0,0,2110,2111,5,118,0,0,2111,2112,5,101, + 0,0,2112,2113,5,108,0,0,2113,2114,5,111,0,0,2114,2115,5,112,0,0, + 2115,2116,5,109,0,0,2116,2117,5,101,0,0,2117,2118,5,110,0,0,2118, + 2119,5,116,0,0,2119,2120,5,82,0,0,2120,2121,5,101,0,0,2121,2122, + 5,103,0,0,2122,2123,5,105,0,0,2123,2124,5,111,0,0,2124,2125,5,110, + 0,0,2125,232,1,0,0,0,2126,2127,5,104,0,0,2127,2128,5,97,0,0,2128, + 2129,5,115,0,0,2129,2130,5,83,0,0,2130,2131,5,99,0,0,2131,2132,5, + 97,0,0,2132,2133,5,110,0,0,2133,2134,5,110,0,0,2134,2135,5,101,0, + 0,2135,2136,5,100,0,0,2136,2137,5,70,0,0,2137,2138,5,111,0,0,2138, + 2139,5,114,0,0,2139,2140,5,69,0,0,2140,2141,5,110,0,0,2141,2142, + 5,99,0,0,2142,2143,5,111,0,0,2143,2144,5,100,0,0,2144,2145,5,105, + 0,0,2145,2146,5,110,0,0,2146,2147,5,103,0,0,2147,2148,5,115,0,0, + 2148,234,1,0,0,0,2149,2150,5,107,0,0,2150,2151,5,110,0,0,2151,2152, + 5,111,0,0,2152,2153,5,119,0,0,2153,2154,5,110,0,0,2154,2155,5,82, + 0,0,2155,2156,5,101,0,0,2156,2157,5,103,0,0,2157,2158,5,105,0,0, + 2158,2159,5,111,0,0,2159,2160,5,110,0,0,2160,2161,5,115,0,0,2161, + 236,1,0,0,0,2162,2163,5,109,0,0,2163,2164,5,97,0,0,2164,2165,5,105, + 0,0,2165,2166,5,110,0,0,2166,2167,5,71,0,0,2167,2168,5,114,0,0,2168, + 2169,5,111,0,0,2169,2170,5,117,0,0,2170,2171,5,112,0,0,2171,238, + 1,0,0,0,2172,2173,5,112,0,0,2173,2174,5,114,0,0,2174,2175,5,111, + 0,0,2175,2176,5,100,0,0,2176,2177,5,117,0,0,2177,2178,5,99,0,0,2178, + 2179,5,116,0,0,2179,2180,5,82,0,0,2180,2181,5,101,0,0,2181,2182, + 5,102,0,0,2182,2183,5,71,0,0,2183,2184,5,114,0,0,2184,2185,5,111, + 0,0,2185,2186,5,117,0,0,2186,2187,5,112,0,0,2187,240,1,0,0,0,2188, + 2189,5,112,0,0,2189,2190,5,97,0,0,2190,2191,5,99,0,0,2191,2192,5, + 107,0,0,2192,2193,5,97,0,0,2193,2194,5,103,0,0,2194,2195,5,101,0, + 0,2195,2196,5,82,0,0,2196,2197,5,101,0,0,2197,2198,5,102,0,0,2198, + 2199,5,101,0,0,2199,2200,5,114,0,0,2200,2201,5,101,0,0,2201,2202, + 5,110,0,0,2202,2203,5,99,0,0,2203,2204,5,101,0,0,2204,2205,5,115, + 0,0,2205,242,1,0,0,0,2206,2207,5,112,0,0,2207,2208,5,114,0,0,2208, + 2209,5,101,0,0,2209,2210,5,102,0,0,2210,2211,5,101,0,0,2211,2212, + 5,114,0,0,2212,2213,5,114,0,0,2213,2214,5,101,0,0,2214,2215,5,100, + 0,0,2215,2216,5,80,0,0,2216,2217,5,114,0,0,2217,2218,5,111,0,0,2218, + 2219,5,106,0,0,2219,2220,5,101,0,0,2220,2221,5,99,0,0,2221,2222, + 5,116,0,0,2222,2223,5,79,0,0,2223,2224,5,98,0,0,2224,2225,5,106, + 0,0,2225,2226,5,101,0,0,2226,2227,5,99,0,0,2227,2228,5,116,0,0,2228, + 2229,5,86,0,0,2229,2230,5,101,0,0,2230,2231,5,114,0,0,2231,2232, + 5,115,0,0,2232,2233,5,105,0,0,2233,2234,5,111,0,0,2234,2235,5,110, + 0,0,2235,244,1,0,0,0,2236,2237,5,112,0,0,2237,2238,5,114,0,0,2238, + 2239,5,111,0,0,2239,2240,5,106,0,0,2240,2241,5,101,0,0,2241,2242, + 5,99,0,0,2242,2243,5,116,0,0,2243,2244,5,68,0,0,2244,2245,5,105, + 0,0,2245,2246,5,114,0,0,2246,2247,5,80,0,0,2247,2248,5,97,0,0,2248, + 2249,5,116,0,0,2249,2250,5,104,0,0,2250,246,1,0,0,0,2251,2252,5, + 112,0,0,2252,2253,5,114,0,0,2253,2254,5,111,0,0,2254,2255,5,106, + 0,0,2255,2256,5,101,0,0,2256,2257,5,99,0,0,2257,2258,5,116,0,0,2258, + 2259,5,82,0,0,2259,2260,5,101,0,0,2260,2261,5,102,0,0,2261,2262, + 5,101,0,0,2262,2263,5,114,0,0,2263,2264,5,101,0,0,2264,2265,5,110, + 0,0,2265,2266,5,99,0,0,2266,2267,5,101,0,0,2267,2268,5,115,0,0,2268, + 248,1,0,0,0,2269,2270,5,112,0,0,2270,2271,5,114,0,0,2271,2272,5, + 111,0,0,2272,2273,5,106,0,0,2273,2274,5,101,0,0,2274,2275,5,99,0, + 0,2275,2276,5,116,0,0,2276,2277,5,82,0,0,2277,2278,5,111,0,0,2278, + 2279,5,111,0,0,2279,2280,5,116,0,0,2280,250,1,0,0,0,2281,2282,5, + 116,0,0,2282,2283,5,97,0,0,2283,2284,5,114,0,0,2284,2285,5,103,0, + 0,2285,2286,5,101,0,0,2286,2287,5,116,0,0,2287,2288,5,115,0,0,2288, + 252,1,0,0,0,2289,2290,5,105,0,0,2290,2291,5,110,0,0,2291,2292,5, + 112,0,0,2292,2293,5,117,0,0,2293,2294,5,116,0,0,2294,2295,5,70,0, + 0,2295,2296,5,105,0,0,2296,2297,5,108,0,0,2297,2298,5,101,0,0,2298, + 2299,5,76,0,0,2299,2300,5,105,0,0,2300,2301,5,115,0,0,2301,2302, + 5,116,0,0,2302,2303,5,80,0,0,2303,2304,5,97,0,0,2304,2305,5,116, + 0,0,2305,2306,5,104,0,0,2306,2307,5,115,0,0,2307,254,1,0,0,0,2308, + 2309,5,105,0,0,2309,2310,5,110,0,0,2310,2311,5,112,0,0,2311,2312, + 5,117,0,0,2312,2313,5,116,0,0,2313,2314,5,80,0,0,2314,2315,5,97, + 0,0,2315,2316,5,116,0,0,2316,2317,5,104,0,0,2317,2318,5,115,0,0, + 2318,256,1,0,0,0,2319,2320,5,111,0,0,2320,2321,5,117,0,0,2321,2322, + 5,116,0,0,2322,2323,5,112,0,0,2323,2324,5,117,0,0,2324,2325,5,116, + 0,0,2325,2326,5,70,0,0,2326,2327,5,105,0,0,2327,2328,5,108,0,0,2328, + 2329,5,101,0,0,2329,2330,5,76,0,0,2330,2331,5,105,0,0,2331,2332, + 5,115,0,0,2332,2333,5,116,0,0,2333,2334,5,80,0,0,2334,2335,5,97, + 0,0,2335,2336,5,116,0,0,2336,2337,5,104,0,0,2337,2338,5,115,0,0, + 2338,258,1,0,0,0,2339,2340,5,111,0,0,2340,2341,5,117,0,0,2341,2342, + 5,116,0,0,2342,2343,5,112,0,0,2343,2344,5,117,0,0,2344,2345,5,116, + 0,0,2345,2346,5,80,0,0,2346,2347,5,97,0,0,2347,2348,5,116,0,0,2348, + 2349,5,104,0,0,2349,2350,5,115,0,0,2350,260,1,0,0,0,2351,2352,5, + 115,0,0,2352,2353,5,104,0,0,2353,2354,5,101,0,0,2354,2355,5,108, + 0,0,2355,2356,5,108,0,0,2356,2357,5,80,0,0,2357,2358,5,97,0,0,2358, + 2359,5,116,0,0,2359,2360,5,104,0,0,2360,262,1,0,0,0,2361,2362,5, + 115,0,0,2362,2363,5,104,0,0,2363,2364,5,101,0,0,2364,2365,5,108, + 0,0,2365,2366,5,108,0,0,2366,264,1,0,0,0,2367,2368,5,115,0,0,2368, + 2369,5,104,0,0,2369,2370,5,101,0,0,2370,2371,5,108,0,0,2371,2372, + 5,108,0,0,2372,2373,5,83,0,0,2373,2374,5,99,0,0,2374,2375,5,114, + 0,0,2375,2376,5,105,0,0,2376,2377,5,112,0,0,2377,2378,5,116,0,0, + 2378,266,1,0,0,0,2379,2380,5,115,0,0,2380,2381,5,104,0,0,2381,2382, + 5,111,0,0,2382,2383,5,119,0,0,2383,2384,5,69,0,0,2384,2385,5,110, + 0,0,2385,2386,5,118,0,0,2386,2387,5,86,0,0,2387,2388,5,97,0,0,2388, + 2389,5,114,0,0,2389,2390,5,115,0,0,2390,2391,5,73,0,0,2391,2392, + 5,110,0,0,2392,2393,5,76,0,0,2393,2394,5,111,0,0,2394,2395,5,103, + 0,0,2395,268,1,0,0,0,2396,2397,5,116,0,0,2397,2398,5,97,0,0,2398, + 2399,5,114,0,0,2399,2400,5,103,0,0,2400,2401,5,101,0,0,2401,2402, + 5,116,0,0,2402,270,1,0,0,0,2403,2404,5,116,0,0,2404,2405,5,97,0, + 0,2405,2406,5,114,0,0,2406,2407,5,103,0,0,2407,2408,5,101,0,0,2408, + 2409,5,116,0,0,2409,2410,5,80,0,0,2410,2411,5,114,0,0,2411,2412, + 5,111,0,0,2412,2413,5,120,0,0,2413,2414,5,121,0,0,2414,272,1,0,0, + 0,2415,2416,5,102,0,0,2416,2417,5,105,0,0,2417,2418,5,108,0,0,2418, + 2419,5,101,0,0,2419,2420,5,84,0,0,2420,2421,5,121,0,0,2421,2422, + 5,112,0,0,2422,2423,5,101,0,0,2423,274,1,0,0,0,2424,2425,5,114,0, + 0,2425,2426,5,101,0,0,2426,2427,5,109,0,0,2427,2428,5,111,0,0,2428, + 2429,5,116,0,0,2429,2430,5,101,0,0,2430,2431,5,82,0,0,2431,2432, + 5,101,0,0,2432,2433,5,102,0,0,2433,276,1,0,0,0,2434,2435,5,98,0, + 0,2435,2436,5,97,0,0,2436,2437,5,115,0,0,2437,2438,5,101,0,0,2438, + 2439,5,67,0,0,2439,2440,5,111,0,0,2440,2441,5,110,0,0,2441,2442, + 5,102,0,0,2442,2443,5,105,0,0,2443,2444,5,103,0,0,2444,2445,5,117, + 0,0,2445,2446,5,114,0,0,2446,2447,5,97,0,0,2447,2448,5,116,0,0,2448, + 2449,5,105,0,0,2449,2450,5,111,0,0,2450,2451,5,110,0,0,2451,2452, + 5,82,0,0,2452,2453,5,101,0,0,2453,2454,5,102,0,0,2454,2455,5,101, + 0,0,2455,2456,5,114,0,0,2456,2457,5,101,0,0,2457,2458,5,110,0,0, + 2458,2459,5,99,0,0,2459,2460,5,101,0,0,2460,278,1,0,0,0,2461,2462, + 5,98,0,0,2462,2463,5,117,0,0,2463,2464,5,105,0,0,2464,2465,5,108, + 0,0,2465,2466,5,100,0,0,2466,2467,5,83,0,0,2467,2468,5,101,0,0,2468, + 2469,5,116,0,0,2469,2470,5,116,0,0,2470,2471,5,105,0,0,2471,2472, + 5,110,0,0,2472,2473,5,103,0,0,2473,2474,5,115,0,0,2474,280,1,0,0, + 0,2475,2476,5,98,0,0,2476,2477,5,117,0,0,2477,2478,5,105,0,0,2478, + 2479,5,108,0,0,2479,2480,5,100,0,0,2480,2481,5,83,0,0,2481,2482, + 5,116,0,0,2482,2483,5,121,0,0,2483,2484,5,108,0,0,2484,2485,5,101, + 0,0,2485,2486,5,115,0,0,2486,282,1,0,0,0,2487,2488,5,100,0,0,2488, + 2489,5,115,0,0,2489,2490,5,116,0,0,2490,2491,5,80,0,0,2491,2492, + 5,97,0,0,2492,2493,5,116,0,0,2493,2494,5,104,0,0,2494,284,1,0,0, + 0,2495,2496,5,100,0,0,2496,2497,5,115,0,0,2497,2498,5,116,0,0,2498, + 2499,5,83,0,0,2499,2500,5,117,0,0,2500,2501,5,98,0,0,2501,2502,5, + 102,0,0,2502,2503,5,111,0,0,2503,2504,5,108,0,0,2504,2505,5,100, + 0,0,2505,2506,5,101,0,0,2506,2507,5,114,0,0,2507,2508,5,83,0,0,2508, + 2509,5,112,0,0,2509,2510,5,101,0,0,2510,2511,5,99,0,0,2511,286,1, + 0,0,0,2512,2513,5,80,0,0,2513,2514,5,114,0,0,2514,2515,5,111,0,0, + 2515,2516,5,100,0,0,2516,2517,5,117,0,0,2517,2518,5,99,0,0,2518, + 2519,5,116,0,0,2519,2520,5,71,0,0,2520,2521,5,114,0,0,2521,2522, + 5,111,0,0,2522,2523,5,117,0,0,2523,2524,5,112,0,0,2524,288,1,0,0, + 0,2525,2526,5,80,0,0,2526,2527,5,114,0,0,2527,2528,5,111,0,0,2528, + 2529,5,106,0,0,2529,2530,5,101,0,0,2530,2531,5,99,0,0,2531,2532, + 5,116,0,0,2532,2533,5,82,0,0,2533,2534,5,101,0,0,2534,2535,5,102, + 0,0,2535,290,1,0,0,0,2536,2537,5,98,0,0,2537,2538,5,117,0,0,2538, + 2539,5,105,0,0,2539,2540,5,108,0,0,2540,2541,5,100,0,0,2541,2542, + 5,67,0,0,2542,2543,5,111,0,0,2543,2544,5,110,0,0,2544,2545,5,102, + 0,0,2545,2546,5,105,0,0,2546,2547,5,103,0,0,2547,2548,5,117,0,0, + 2548,2549,5,114,0,0,2549,2550,5,97,0,0,2550,2551,5,116,0,0,2551, + 2552,5,105,0,0,2552,2553,5,111,0,0,2553,2554,5,110,0,0,2554,2555, + 5,115,0,0,2555,292,1,0,0,0,2556,2557,5,100,0,0,2557,2558,5,101,0, + 0,2558,2559,5,102,0,0,2559,2560,5,97,0,0,2560,2561,5,117,0,0,2561, + 2562,5,108,0,0,2562,2563,5,116,0,0,2563,2564,5,67,0,0,2564,2565, + 5,111,0,0,2565,2566,5,110,0,0,2566,2567,5,102,0,0,2567,2568,5,105, + 0,0,2568,2569,5,103,0,0,2569,2570,5,117,0,0,2570,2571,5,114,0,0, + 2571,2572,5,97,0,0,2572,2573,5,116,0,0,2573,2574,5,105,0,0,2574, + 2575,5,111,0,0,2575,2576,5,110,0,0,2576,2577,5,73,0,0,2577,2578, + 5,115,0,0,2578,2579,5,86,0,0,2579,2580,5,105,0,0,2580,2581,5,115, + 0,0,2581,2582,5,105,0,0,2582,2583,5,98,0,0,2583,2584,5,108,0,0,2584, + 2585,5,101,0,0,2585,294,1,0,0,0,2586,2587,5,100,0,0,2587,2588,5, + 101,0,0,2588,2589,5,102,0,0,2589,2590,5,97,0,0,2590,2591,5,117,0, + 0,2591,2592,5,108,0,0,2592,2593,5,116,0,0,2593,2594,5,67,0,0,2594, + 2595,5,111,0,0,2595,2596,5,110,0,0,2596,2597,5,102,0,0,2597,2598, + 5,105,0,0,2598,2599,5,103,0,0,2599,2600,5,117,0,0,2600,2601,5,114, + 0,0,2601,2602,5,97,0,0,2602,2603,5,116,0,0,2603,2604,5,105,0,0,2604, + 2605,5,111,0,0,2605,2606,5,110,0,0,2606,2607,5,78,0,0,2607,2608, + 5,97,0,0,2608,2609,5,109,0,0,2609,2610,5,101,0,0,2610,296,1,0,0, + 0,2611,2612,5,115,0,0,2612,2613,5,101,0,0,2613,2614,5,116,0,0,2614, + 2615,5,116,0,0,2615,2616,5,105,0,0,2616,2617,5,110,0,0,2617,2618, + 5,103,0,0,2618,2619,5,115,0,0,2619,298,1,0,0,0,2620,2621,5,83,0, + 0,2621,2622,5,121,0,0,2622,2623,5,115,0,0,2623,2624,5,116,0,0,2624, + 2625,5,101,0,0,2625,2626,5,109,0,0,2626,2627,5,67,0,0,2627,2628, + 5,97,0,0,2628,2629,5,112,0,0,2629,2630,5,97,0,0,2630,2631,5,98,0, + 0,2631,2632,5,105,0,0,2632,2633,5,108,0,0,2633,2634,5,105,0,0,2634, + 2635,5,116,0,0,2635,2636,5,105,0,0,2636,2637,5,101,0,0,2637,2638, + 5,115,0,0,2638,300,1,0,0,0,2639,2640,5,99,0,0,2640,2641,5,117,0, + 0,2641,2642,5,114,0,0,2642,2643,5,114,0,0,2643,2644,5,101,0,0,2644, + 2645,5,110,0,0,2645,2646,5,116,0,0,2646,2647,5,86,0,0,2647,2648, + 5,101,0,0,2648,2649,5,114,0,0,2649,2650,5,115,0,0,2650,2651,5,105, + 0,0,2651,2652,5,111,0,0,2652,2653,5,110,0,0,2653,302,1,0,0,0,2654, + 2655,5,118,0,0,2655,2656,5,101,0,0,2656,2657,5,114,0,0,2657,2658, + 5,115,0,0,2658,2659,5,105,0,0,2659,2660,5,111,0,0,2660,2661,5,110, + 0,0,2661,2662,5,71,0,0,2662,2663,5,114,0,0,2663,2664,5,111,0,0,2664, + 2665,5,117,0,0,2665,2666,5,112,0,0,2666,2667,5,84,0,0,2667,2668, + 5,121,0,0,2668,2669,5,112,0,0,2669,2670,5,101,0,0,2670,304,1,0,0, + 0,2671,2672,5,109,0,0,2672,2673,5,101,0,0,2673,2674,5,109,0,0,2674, + 2675,5,98,0,0,2675,2676,5,101,0,0,2676,2677,5,114,0,0,2677,2678, + 5,115,0,0,2678,2679,5,104,0,0,2679,2680,5,105,0,0,2680,2681,5,112, + 0,0,2681,2682,5,69,0,0,2682,2683,5,120,0,0,2683,2684,5,99,0,0,2684, + 2685,5,101,0,0,2685,2686,5,112,0,0,2686,2687,5,116,0,0,2687,2688, + 5,105,0,0,2688,2689,5,111,0,0,2689,2690,5,110,0,0,2690,2691,5,115, + 0,0,2691,306,1,0,0,0,2692,2693,5,101,0,0,2693,2694,5,120,0,0,2694, + 2695,5,99,0,0,2695,2696,5,101,0,0,2696,2697,5,112,0,0,2697,2698, + 5,116,0,0,2698,2699,5,105,0,0,2699,2700,5,111,0,0,2700,2701,5,110, + 0,0,2701,2702,5,115,0,0,2702,308,1,0,0,0,2703,2704,5,67,0,0,2704, + 2705,5,76,0,0,2705,2706,5,65,0,0,2706,2707,5,83,0,0,2707,2708,5, + 83,0,0,2708,2709,5,80,0,0,2709,2710,5,82,0,0,2710,2711,5,69,0,0, + 2711,2712,5,70,0,0,2712,2713,5,73,0,0,2713,2714,5,88,0,0,2714,310, + 1,0,0,0,2715,2716,3,323,161,0,2716,2717,3,323,161,0,2717,2718,3, + 323,161,0,2718,2719,3,323,161,0,2719,2720,3,323,161,0,2720,2721, + 3,323,161,0,2721,2722,3,323,161,0,2722,2723,3,323,161,0,2723,2724, + 3,323,161,0,2724,2725,3,323,161,0,2725,2726,3,323,161,0,2726,2727, + 3,323,161,0,2727,2728,3,323,161,0,2728,2729,3,323,161,0,2729,2730, + 3,323,161,0,2730,2731,3,323,161,0,2731,2732,3,323,161,0,2732,2733, + 3,323,161,0,2733,2734,3,323,161,0,2734,2735,3,323,161,0,2735,2736, + 3,323,161,0,2736,2737,3,323,161,0,2737,2738,3,323,161,0,2738,2740, + 3,323,161,0,2739,2741,3,323,161,0,2740,2739,1,0,0,0,2740,2741,1, + 0,0,0,2741,2743,1,0,0,0,2742,2744,3,323,161,0,2743,2742,1,0,0,0, + 2743,2744,1,0,0,0,2744,2746,1,0,0,0,2745,2747,3,323,161,0,2746,2745, + 1,0,0,0,2746,2747,1,0,0,0,2747,2749,1,0,0,0,2748,2750,3,323,161, + 0,2749,2748,1,0,0,0,2749,2750,1,0,0,0,2750,2752,1,0,0,0,2751,2753, + 3,323,161,0,2752,2751,1,0,0,0,2752,2753,1,0,0,0,2753,2755,1,0,0, + 0,2754,2756,3,323,161,0,2755,2754,1,0,0,0,2755,2756,1,0,0,0,2756, + 2758,1,0,0,0,2757,2759,3,323,161,0,2758,2757,1,0,0,0,2758,2759,1, + 0,0,0,2759,2761,1,0,0,0,2760,2762,3,323,161,0,2761,2760,1,0,0,0, + 2761,2762,1,0,0,0,2762,2827,1,0,0,0,2763,2764,5,70,0,0,2764,2765, + 5,82,0,0,2765,2769,5,95,0,0,2766,2767,5,71,0,0,2767,2769,5,95,0, + 0,2768,2763,1,0,0,0,2768,2766,1,0,0,0,2769,2771,1,0,0,0,2770,2772, + 3,323,161,0,2771,2770,1,0,0,0,2772,2773,1,0,0,0,2773,2771,1,0,0, + 0,2773,2774,1,0,0,0,2774,2827,1,0,0,0,2775,2776,3,321,160,0,2776, + 2777,3,321,160,0,2777,2778,3,321,160,0,2778,2779,3,321,160,0,2779, + 2780,3,321,160,0,2780,2781,3,321,160,0,2781,2782,3,321,160,0,2782, + 2783,3,321,160,0,2783,2784,3,321,160,0,2784,2785,3,321,160,0,2785, + 2786,3,321,160,0,2786,2787,3,321,160,0,2787,2788,3,321,160,0,2788, + 2789,3,321,160,0,2789,2790,3,321,160,0,2790,2791,3,321,160,0,2791, + 2792,3,321,160,0,2792,2793,3,321,160,0,2793,2794,3,321,160,0,2794, + 2795,3,321,160,0,2795,2796,3,321,160,0,2796,2797,3,321,160,0,2797, + 2798,3,321,160,0,2798,2799,3,321,160,0,2799,2827,1,0,0,0,2800,2801, + 5,79,0,0,2801,2802,5,66,0,0,2802,2803,5,74,0,0,2803,2804,5,95,0, + 0,2804,2805,1,0,0,0,2805,2827,3,25,12,0,2806,2808,5,34,0,0,2807, + 2809,3,315,157,0,2808,2807,1,0,0,0,2809,2810,1,0,0,0,2810,2808,1, + 0,0,0,2810,2811,1,0,0,0,2811,2820,1,0,0,0,2812,2813,5,58,0,0,2813, + 2814,5,58,0,0,2814,2816,1,0,0,0,2815,2817,3,315,157,0,2816,2815, + 1,0,0,0,2817,2818,1,0,0,0,2818,2816,1,0,0,0,2818,2819,1,0,0,0,2819, + 2821,1,0,0,0,2820,2812,1,0,0,0,2821,2822,1,0,0,0,2822,2820,1,0,0, + 0,2822,2823,1,0,0,0,2823,2824,1,0,0,0,2824,2825,5,34,0,0,2825,2827, + 1,0,0,0,2826,2715,1,0,0,0,2826,2768,1,0,0,0,2826,2775,1,0,0,0,2826, + 2800,1,0,0,0,2826,2806,1,0,0,0,2827,312,1,0,0,0,2828,2830,5,34,0, + 0,2829,2831,3,325,162,0,2830,2829,1,0,0,0,2831,2832,1,0,0,0,2832, + 2830,1,0,0,0,2832,2833,1,0,0,0,2833,2834,1,0,0,0,2834,2835,5,34, + 0,0,2835,2839,1,0,0,0,2836,2837,5,34,0,0,2837,2839,5,34,0,0,2838, + 2828,1,0,0,0,2838,2836,1,0,0,0,2839,314,1,0,0,0,2840,2847,3,319, + 159,0,2841,2847,3,35,17,0,2842,2847,3,19,9,0,2843,2847,3,33,16,0, + 2844,2847,3,21,10,0,2845,2847,3,37,18,0,2846,2840,1,0,0,0,2846,2841, + 1,0,0,0,2846,2842,1,0,0,0,2846,2843,1,0,0,0,2846,2844,1,0,0,0,2846, + 2845,1,0,0,0,2847,2848,1,0,0,0,2848,2846,1,0,0,0,2848,2849,1,0,0, + 0,2849,316,1,0,0,0,2850,2851,5,36,0,0,2851,2853,3,315,157,0,2852, + 2850,1,0,0,0,2853,2854,1,0,0,0,2854,2852,1,0,0,0,2854,2855,1,0,0, + 0,2855,2857,1,0,0,0,2856,2858,3,33,16,0,2857,2856,1,0,0,0,2857,2858, + 1,0,0,0,2858,318,1,0,0,0,2859,2860,7,1,0,0,2860,320,1,0,0,0,2861, + 2862,7,2,0,0,2862,322,1,0,0,0,2863,2864,7,3,0,0,2864,324,1,0,0,0, + 2865,2869,8,4,0,0,2866,2867,5,92,0,0,2867,2869,5,34,0,0,2868,2865, + 1,0,0,0,2868,2866,1,0,0,0,2869,326,1,0,0,0,2870,2872,7,5,0,0,2871, + 2870,1,0,0,0,2872,2873,1,0,0,0,2873,2871,1,0,0,0,2873,2874,1,0,0, + 0,2874,2875,1,0,0,0,2875,2876,6,163,0,0,2876,328,1,0,0,0,2877,2878, + 5,47,0,0,2878,2879,5,42,0,0,2879,2883,1,0,0,0,2880,2882,9,0,0,0, + 2881,2880,1,0,0,0,2882,2885,1,0,0,0,2883,2884,1,0,0,0,2883,2881, + 1,0,0,0,2884,2886,1,0,0,0,2885,2883,1,0,0,0,2886,2887,5,42,0,0,2887, + 2888,5,47,0,0,2888,2889,1,0,0,0,2889,2890,6,164,0,0,2890,330,1,0, + 0,0,2891,2892,5,47,0,0,2892,2893,5,47,0,0,2893,2897,1,0,0,0,2894, + 2896,8,6,0,0,2895,2894,1,0,0,0,2896,2899,1,0,0,0,2897,2895,1,0,0, + 0,2897,2898,1,0,0,0,2898,2900,1,0,0,0,2899,2897,1,0,0,0,2900,2901, + 6,165,0,0,2901,332,1,0,0,0,27,0,381,778,2740,2743,2746,2749,2752, + 2755,2758,2761,2768,2773,2810,2818,2822,2826,2832,2838,2846,2848, + 2854,2857,2868,2873,2883,2897,1,6,0,0 ] class PBXProjLexer(Lexer): @@ -1068,137 +1143,144 @@ class PBXProjLexer(Lexer): PBX_CONTAINER_ITEM_PROXY = 24 PBX_COPY_FILES_BUILD_PHASE = 25 PBX_FILE_REFERENCE = 26 - PBX_FRAMEWORKS_BUILD_PHASE = 27 - PBX_GROUP = 28 - PBX_HEADERS_BUILD_PHASE = 29 - PBX_NATIVE_TARGET = 30 - PBX_LEGACY_TARGET = 31 - PBX_PROJECT = 32 - PBX_REFERENCE_PROXY = 33 - PBX_RESOURCES_BUILD_PHASE = 34 - PBX_SHELL_SCRIPT_BUILD_PHASE = 35 - PBX_SHELL_BUILD_PHASE = 36 - PBX_SOURCES_BUILD_PHASE = 37 - PBX_TARGET_DEPENDENCY = 38 - PBX_VARIANT_GROUP = 39 - XC_BUILD_CONFIGURATION = 40 - XC_CONFIGURATION_LIST = 41 - XC_REMOTE_SWIFT_PACKAGE_REFERENCE = 42 - XC_SWIFT_PACKAGE_PRODUCT_DEPENDENCY = 43 - XC_VERSION_GROUP = 44 - ALWAYS_OUT_OF_DATE = 45 - FILE_REF = 46 - PRODUCT_REF = 47 - CONTAINER_PORTAL = 48 - PROXY_TYPE = 49 - REMOTE_GLOBAL_ID_STRING = 50 - REMOTE_INFO = 51 - FILE_ENCODING = 52 - COMMENTS = 53 - EXPLICIT_FILE_TYPE = 54 - LAST_KNOWN_FILE_TYPE = 55 - INCLUDE_IN_INDEX = 56 - INDENT_WIDTH = 57 - TAB_WIDTH = 58 - USES_TABS = 59 - WRAPS_LINES = 60 - PLATFORM_FILTER = 61 - PLATFORM_FILTERS = 62 - CHILDREN = 63 - PRODUCT_INSTALL_PATH = 64 - REPOSITORY_URL = 65 - REQUIREMENT = 66 - PACKAGE = 67 - PACKAGE_PRODUCT_DEPENDENCIES = 68 - NAME = 69 - PATH = 70 - SOURCE_TREE = 71 - BUILD_ACTION_MASK = 72 - FILES = 73 - RUN_ONLY_FOR_DEPLOYMENT_POSTPROCESSING = 74 - BUILD_CONFIGURATION_LIST = 75 - BUILD_PHASES = 76 - BUILD_RULES = 77 - BUILD_ARGUMENTS_STRING = 78 - BUILD_TOOL_PATH = 79 - BUILD_WORKING_DIRECTORY = 80 - PASS_BUILD_SETTINGS_IN_ENVIRONMENT = 81 - DEPENDENCIES = 82 - PRODUCT_NAME = 83 - PRODUCT_REFERENCE = 84 - PRODUCT_TYPE = 85 - LINE_ENDING = 86 - XC_LANGUAGE_SPECIFICATION_IDENTIFIER = 87 - PLIST_STRUCTURE_DEFINITION_IDENTIFIER = 88 - REF_TYPE = 89 - COMPILER_SPEC = 90 - FILE_PATTERNS = 91 - INPUT_FILES = 92 - IS_EDITABLE = 93 - OUTPUT_FILES = 94 - RUN_ONCE_PER_ARCH = 95 - SCRIPT = 96 - ATTRIBUTES = 97 - LAST_SWIFT_MIGRATION = 98 - DEFAULT_BUILD_SYSTEM_TYPE_FOR_WORKSPACE = 99 - LAST_SWIFT_UPDATE_CHECK = 100 - BUILD_INDEPENDENT_TARGETS_IN_PARALLEL = 101 - LAST_TESTING_UPGRADE_CHECK = 102 - LAST_UPGRADE_CHECK = 103 - ORGANIZATION_NAME = 104 - TARGET_ATTRIBUTES = 105 - CREATED_ON_TOOLS_VERSION = 106 - TEST_TARGET_ID = 107 - DEVELOPMENT_TEAM = 108 - DEVELOPMENT_TEAM_NAME = 109 - PROVISIONING_STYLE = 110 - COMPATIBILITY_VERSION = 111 - DEVELOPMENT_REGION = 112 - HAS_SCANNED_FOR_ENCODINGS = 113 - KNOWN_REGIONS = 114 - MAIN_GROUP = 115 - PRODUCT_REF_GROUP = 116 - PACKAGE_REFERENCES = 117 - PRODUCT_DIR_PATH = 118 - PROJECT_REFERENCES = 119 - PROJECT_ROOT = 120 - TARGETS = 121 - INPUT_FILE_LIST_PATHS = 122 - INPUT_PATHS = 123 - OUTPUT_FILE_LIST_PATHS = 124 - OUTPUT_PATHS = 125 - SHELL_PATH = 126 - SHELL = 127 - SHELL_SCRIPT = 128 - SHOW_ENV_VARS_IN_LOG = 129 - TARGET = 130 - TARGET_PROXY = 131 - FILE_TYPE = 132 - REMOTE_REF = 133 - BASE_CONFIGURATION_REFERENCE = 134 - BUILD_SETTINGS = 135 - BUILD_STYLES = 136 - DST_PATH = 137 - DST_SUBFOLDER_SPEC = 138 - PRODUCT_GROUP = 139 - PROJECT_REF = 140 - BUILD_CONFIGURATIONS = 141 - DEFAULT_CONFIGURATION_IS_VISIBLE = 142 - DEFAULT_CONFIGURATION_NAME = 143 - SETTINGS = 144 - SYSTEM_CAPABILITIES = 145 - CURRENT_VERSION = 146 - VERSION_GROUP_TYPE = 147 - CLASSPREFIX = 148 - REFERENCE = 149 - QUOTED_STRING = 150 - NON_QUOTED_STRING = 151 - VARIABLE = 152 - ALPHA_NUMERIC = 153 - ALPHA_NUMERIC_CAP = 154 - WS = 155 - COMMENT = 156 - LINE_COMMENT = 157 + PBX_FILE_SYSTEM_SYNCHRONIZED_BUILD_FILE_EXCEPTION_SET = 27 + PBX_FILE_SYSTEM_SYNCHRONIZED_ROOT_GROUP = 28 + PBX_FRAMEWORKS_BUILD_PHASE = 29 + PBX_GROUP = 30 + PBX_HEADERS_BUILD_PHASE = 31 + PBX_NATIVE_TARGET = 32 + PBX_LEGACY_TARGET = 33 + PBX_PROJECT = 34 + PBX_REFERENCE_PROXY = 35 + PBX_RESOURCES_BUILD_PHASE = 36 + PBX_SHELL_SCRIPT_BUILD_PHASE = 37 + PBX_SHELL_BUILD_PHASE = 38 + PBX_SOURCES_BUILD_PHASE = 39 + PBX_TARGET_DEPENDENCY = 40 + PBX_VARIANT_GROUP = 41 + XC_BUILD_CONFIGURATION = 42 + XC_CONFIGURATION_LIST = 43 + XC_REMOTE_SWIFT_PACKAGE_REFERENCE = 44 + XC_SWIFT_PACKAGE_PRODUCT_DEPENDENCY = 45 + XC_VERSION_GROUP = 46 + ALWAYS_OUT_OF_DATE = 47 + FILE_REF = 48 + PRODUCT_REF = 49 + CONTAINER_PORTAL = 50 + PROXY_TYPE = 51 + REMOTE_GLOBAL_ID_STRING = 52 + REMOTE_INFO = 53 + FILE_ENCODING = 54 + COMMENTS = 55 + EXPLICIT_FILE_TYPE = 56 + EXPLICIT_FILE_TYPES = 57 + EXPLICIT_FOLDERS = 58 + LAST_KNOWN_FILE_TYPE = 59 + INCLUDE_IN_INDEX = 60 + INDENT_WIDTH = 61 + TAB_WIDTH = 62 + USES_TABS = 63 + WRAPS_LINES = 64 + PLATFORM_FILTER = 65 + PLATFORM_FILTERS = 66 + CHILDREN = 67 + PRODUCT_INSTALL_PATH = 68 + REPOSITORY_URL = 69 + REQUIREMENT = 70 + PACKAGE = 71 + PACKAGE_PRODUCT_DEPENDENCIES = 72 + NAME = 73 + PATH = 74 + SOURCE_TREE = 75 + BUILD_ACTION_MASK = 76 + FILES = 77 + RUN_ONLY_FOR_DEPLOYMENT_POSTPROCESSING = 78 + BUILD_CONFIGURATION_LIST = 79 + BUILD_PHASES = 80 + BUILD_RULES = 81 + BUILD_ARGUMENTS_STRING = 82 + BUILD_TOOL_PATH = 83 + BUILD_WORKING_DIRECTORY = 84 + PASS_BUILD_SETTINGS_IN_ENVIRONMENT = 85 + DEPENDENCIES = 86 + PRODUCT_NAME = 87 + PRODUCT_REFERENCE = 88 + PRODUCT_TYPE = 89 + LINE_ENDING = 90 + XC_LANGUAGE_SPECIFICATION_IDENTIFIER = 91 + PLIST_STRUCTURE_DEFINITION_IDENTIFIER = 92 + REF_TYPE = 93 + COMPILER_SPEC = 94 + FILE_PATTERNS = 95 + INPUT_FILES = 96 + IS_EDITABLE = 97 + OUTPUT_FILES = 98 + RUN_ONCE_PER_ARCH = 99 + SCRIPT = 100 + ATTRIBUTES = 101 + LAST_SWIFT_MIGRATION = 102 + DEFAULT_BUILD_SYSTEM_TYPE_FOR_WORKSPACE = 103 + LAST_SWIFT_UPDATE_CHECK = 104 + BUILD_INDEPENDENT_TARGETS_IN_PARALLEL = 105 + LAST_TESTING_UPGRADE_CHECK = 106 + LAST_UPGRADE_CHECK = 107 + ORGANIZATION_NAME = 108 + TARGET_ATTRIBUTES = 109 + CREATED_ON_TOOLS_VERSION = 110 + TEST_TARGET_ID = 111 + DEVELOPMENT_TEAM = 112 + DEVELOPMENT_TEAM_NAME = 113 + PROVISIONING_STYLE = 114 + COMPATIBILITY_VERSION = 115 + DEVELOPMENT_REGION = 116 + HAS_SCANNED_FOR_ENCODINGS = 117 + KNOWN_REGIONS = 118 + MAIN_GROUP = 119 + PRODUCT_REF_GROUP = 120 + PACKAGE_REFERENCES = 121 + PREFERRED_PROJECT_OBJECT_VERSION = 122 + PRODUCT_DIR_PATH = 123 + PROJECT_REFERENCES = 124 + PROJECT_ROOT = 125 + TARGETS = 126 + INPUT_FILE_LIST_PATHS = 127 + INPUT_PATHS = 128 + OUTPUT_FILE_LIST_PATHS = 129 + OUTPUT_PATHS = 130 + SHELL_PATH = 131 + SHELL = 132 + SHELL_SCRIPT = 133 + SHOW_ENV_VARS_IN_LOG = 134 + TARGET = 135 + TARGET_PROXY = 136 + FILE_TYPE = 137 + REMOTE_REF = 138 + BASE_CONFIGURATION_REFERENCE = 139 + BUILD_SETTINGS = 140 + BUILD_STYLES = 141 + DST_PATH = 142 + DST_SUBFOLDER_SPEC = 143 + PRODUCT_GROUP = 144 + PROJECT_REF = 145 + BUILD_CONFIGURATIONS = 146 + DEFAULT_CONFIGURATION_IS_VISIBLE = 147 + DEFAULT_CONFIGURATION_NAME = 148 + SETTINGS = 149 + SYSTEM_CAPABILITIES = 150 + CURRENT_VERSION = 151 + VERSION_GROUP_TYPE = 152 + MEMBERSHIP_EXCEPTIONS = 153 + EXCEPTIONS = 154 + CLASSPREFIX = 155 + REFERENCE = 156 + QUOTED_STRING = 157 + NON_QUOTED_STRING = 158 + VARIABLE = 159 + ALPHA_NUMERIC = 160 + ALPHA_NUMERIC_CAP = 161 + WS = 162 + COMMENT = 163 + LINE_COMMENT = 164 channelNames = [ u"DEFAULT_TOKEN_CHANNEL", u"HIDDEN" ] @@ -1209,7 +1291,8 @@ class PBXProjLexer(Lexer): "'classes'", "'-'", "'.'", "'isa'", "'objectVersion'", "'objects'", "'rootObject'", "'/'", "'_'", "'$'", "'PBXAggregateTarget'", "'PBXBuildFile'", "'PBXBuildRule'", "'PBXBuildStyle'", "'PBXContainerItemProxy'", - "'PBXCopyFilesBuildPhase'", "'PBXFileReference'", "'PBXFrameworksBuildPhase'", + "'PBXCopyFilesBuildPhase'", "'PBXFileReference'", "'PBXFileSystemSynchronizedBuildFileExceptionSet'", + "'PBXFileSystemSynchronizedRootGroup'", "'PBXFrameworksBuildPhase'", "'PBXGroup'", "'PBXHeadersBuildPhase'", "'PBXNativeTarget'", "'PBXLegacyTarget'", "'PBXProject'", "'PBXReferenceProxy'", "'PBXShellScriptBuildPhase'", "'PBXShellBuildPhase'", "'PBXSourcesBuildPhase'", @@ -1218,10 +1301,11 @@ class PBXProjLexer(Lexer): "'XCSwiftPackageProductDependency'", "'XCVersionGroup'", "'alwaysOutOfDate'", "'fileRef'", "'productRef'", "'containerPortal'", "'proxyType'", "'remoteGlobalIDString'", "'remoteInfo'", "'fileEncoding'", - "'comments'", "'explicitFileType'", "'lastKnownFileType'", "'includeInIndex'", - "'indentWidth'", "'tabWidth'", "'usesTabs'", "'wrapsLines'", - "'platformFilter'", "'platformFilters'", "'children'", "'productInstallPath'", - "'repositoryURL'", "'requirement'", "'package'", "'packageProductDependencies'", + "'comments'", "'explicitFileType'", "'explicitFileTypes'", "'explicitFolders'", + "'lastKnownFileType'", "'includeInIndex'", "'indentWidth'", + "'tabWidth'", "'usesTabs'", "'wrapsLines'", "'platformFilter'", + "'platformFilters'", "'children'", "'productInstallPath'", "'repositoryURL'", + "'requirement'", "'package'", "'packageProductDependencies'", "'name'", "'path'", "'sourceTree'", "'buildActionMask'", "'files'", "'runOnlyForDeploymentPostprocessing'", "'buildConfigurationList'", "'buildPhases'", "'buildRules'", "'buildArgumentsString'", "'buildToolPath'", @@ -1237,32 +1321,35 @@ class PBXProjLexer(Lexer): "'DevelopmentTeam'", "'DevelopmentTeamName'", "'ProvisioningStyle'", "'compatibilityVersion'", "'developmentRegion'", "'hasScannedForEncodings'", "'knownRegions'", "'mainGroup'", "'productRefGroup'", "'packageReferences'", - "'projectDirPath'", "'projectReferences'", "'projectRoot'", - "'targets'", "'inputFileListPaths'", "'inputPaths'", "'outputFileListPaths'", - "'outputPaths'", "'shellPath'", "'shell'", "'shellScript'", - "'showEnvVarsInLog'", "'target'", "'targetProxy'", "'fileType'", - "'remoteRef'", "'baseConfigurationReference'", "'buildSettings'", - "'buildStyles'", "'dstPath'", "'dstSubfolderSpec'", "'ProductGroup'", - "'ProjectRef'", "'buildConfigurations'", "'defaultConfigurationIsVisible'", + "'preferredProjectObjectVersion'", "'projectDirPath'", "'projectReferences'", + "'projectRoot'", "'targets'", "'inputFileListPaths'", "'inputPaths'", + "'outputFileListPaths'", "'outputPaths'", "'shellPath'", "'shell'", + "'shellScript'", "'showEnvVarsInLog'", "'target'", "'targetProxy'", + "'fileType'", "'remoteRef'", "'baseConfigurationReference'", + "'buildSettings'", "'buildStyles'", "'dstPath'", "'dstSubfolderSpec'", + "'ProductGroup'", "'ProjectRef'", "'buildConfigurations'", "'defaultConfigurationIsVisible'", "'defaultConfigurationName'", "'settings'", "'SystemCapabilities'", - "'currentVersion'", "'versionGroupType'", "'CLASSPREFIX'" ] + "'currentVersion'", "'versionGroupType'", "'membershipExceptions'", + "'exceptions'", "'CLASSPREFIX'" ] symbolicNames = [ "", "ARCHIVE_VERSION", "CLASSES", "DASH", "DOT", "ISA", "NUMBER", "OBJECT_VERSION", "OBJECTS", "ROOT_OBJECT", "SLASH", "UNDERSCORE", "DOLLAR", "PBX_AGGREGATE_TARGET", "PBX_BUILD_FILE", "PBX_BUILD_RULE", "PBX_BUILD_STYLE", "PBX_CONTAINER_ITEM_PROXY", "PBX_COPY_FILES_BUILD_PHASE", - "PBX_FILE_REFERENCE", "PBX_FRAMEWORKS_BUILD_PHASE", "PBX_GROUP", - "PBX_HEADERS_BUILD_PHASE", "PBX_NATIVE_TARGET", "PBX_LEGACY_TARGET", - "PBX_PROJECT", "PBX_REFERENCE_PROXY", "PBX_RESOURCES_BUILD_PHASE", + "PBX_FILE_REFERENCE", "PBX_FILE_SYSTEM_SYNCHRONIZED_BUILD_FILE_EXCEPTION_SET", + "PBX_FILE_SYSTEM_SYNCHRONIZED_ROOT_GROUP", "PBX_FRAMEWORKS_BUILD_PHASE", + "PBX_GROUP", "PBX_HEADERS_BUILD_PHASE", "PBX_NATIVE_TARGET", + "PBX_LEGACY_TARGET", "PBX_PROJECT", "PBX_REFERENCE_PROXY", "PBX_RESOURCES_BUILD_PHASE", "PBX_SHELL_SCRIPT_BUILD_PHASE", "PBX_SHELL_BUILD_PHASE", "PBX_SOURCES_BUILD_PHASE", "PBX_TARGET_DEPENDENCY", "PBX_VARIANT_GROUP", "XC_BUILD_CONFIGURATION", "XC_CONFIGURATION_LIST", "XC_REMOTE_SWIFT_PACKAGE_REFERENCE", "XC_SWIFT_PACKAGE_PRODUCT_DEPENDENCY", "XC_VERSION_GROUP", "ALWAYS_OUT_OF_DATE", "FILE_REF", "PRODUCT_REF", "CONTAINER_PORTAL", "PROXY_TYPE", "REMOTE_GLOBAL_ID_STRING", "REMOTE_INFO", "FILE_ENCODING", "COMMENTS", - "EXPLICIT_FILE_TYPE", "LAST_KNOWN_FILE_TYPE", "INCLUDE_IN_INDEX", - "INDENT_WIDTH", "TAB_WIDTH", "USES_TABS", "WRAPS_LINES", "PLATFORM_FILTER", + "EXPLICIT_FILE_TYPE", "EXPLICIT_FILE_TYPES", "EXPLICIT_FOLDERS", + "LAST_KNOWN_FILE_TYPE", "INCLUDE_IN_INDEX", "INDENT_WIDTH", + "TAB_WIDTH", "USES_TABS", "WRAPS_LINES", "PLATFORM_FILTER", "PLATFORM_FILTERS", "CHILDREN", "PRODUCT_INSTALL_PATH", "REPOSITORY_URL", "REQUIREMENT", "PACKAGE", "PACKAGE_PRODUCT_DEPENDENCIES", "NAME", "PATH", "SOURCE_TREE", "BUILD_ACTION_MASK", "FILES", "RUN_ONLY_FOR_DEPLOYMENT_POSTPROCESSING", @@ -1279,32 +1366,36 @@ class PBXProjLexer(Lexer): "DEVELOPMENT_TEAM", "DEVELOPMENT_TEAM_NAME", "PROVISIONING_STYLE", "COMPATIBILITY_VERSION", "DEVELOPMENT_REGION", "HAS_SCANNED_FOR_ENCODINGS", "KNOWN_REGIONS", "MAIN_GROUP", "PRODUCT_REF_GROUP", "PACKAGE_REFERENCES", - "PRODUCT_DIR_PATH", "PROJECT_REFERENCES", "PROJECT_ROOT", "TARGETS", - "INPUT_FILE_LIST_PATHS", "INPUT_PATHS", "OUTPUT_FILE_LIST_PATHS", - "OUTPUT_PATHS", "SHELL_PATH", "SHELL", "SHELL_SCRIPT", "SHOW_ENV_VARS_IN_LOG", - "TARGET", "TARGET_PROXY", "FILE_TYPE", "REMOTE_REF", "BASE_CONFIGURATION_REFERENCE", - "BUILD_SETTINGS", "BUILD_STYLES", "DST_PATH", "DST_SUBFOLDER_SPEC", - "PRODUCT_GROUP", "PROJECT_REF", "BUILD_CONFIGURATIONS", "DEFAULT_CONFIGURATION_IS_VISIBLE", + "PREFERRED_PROJECT_OBJECT_VERSION", "PRODUCT_DIR_PATH", "PROJECT_REFERENCES", + "PROJECT_ROOT", "TARGETS", "INPUT_FILE_LIST_PATHS", "INPUT_PATHS", + "OUTPUT_FILE_LIST_PATHS", "OUTPUT_PATHS", "SHELL_PATH", "SHELL", + "SHELL_SCRIPT", "SHOW_ENV_VARS_IN_LOG", "TARGET", "TARGET_PROXY", + "FILE_TYPE", "REMOTE_REF", "BASE_CONFIGURATION_REFERENCE", "BUILD_SETTINGS", + "BUILD_STYLES", "DST_PATH", "DST_SUBFOLDER_SPEC", "PRODUCT_GROUP", + "PROJECT_REF", "BUILD_CONFIGURATIONS", "DEFAULT_CONFIGURATION_IS_VISIBLE", "DEFAULT_CONFIGURATION_NAME", "SETTINGS", "SYSTEM_CAPABILITIES", - "CURRENT_VERSION", "VERSION_GROUP_TYPE", "CLASSPREFIX", "REFERENCE", - "QUOTED_STRING", "NON_QUOTED_STRING", "VARIABLE", "ALPHA_NUMERIC", - "ALPHA_NUMERIC_CAP", "WS", "COMMENT", "LINE_COMMENT" ] + "CURRENT_VERSION", "VERSION_GROUP_TYPE", "MEMBERSHIP_EXCEPTIONS", + "EXCEPTIONS", "CLASSPREFIX", "REFERENCE", "QUOTED_STRING", "NON_QUOTED_STRING", + "VARIABLE", "ALPHA_NUMERIC", "ALPHA_NUMERIC_CAP", "WS", "COMMENT", + "LINE_COMMENT" ] ruleNames = [ "T__0", "T__1", "T__2", "T__3", "T__4", "T__5", "T__6", "ARCHIVE_VERSION", "CLASSES", "DASH", "DOT", "ISA", "NUMBER", "OBJECT_VERSION", "OBJECTS", "ROOT_OBJECT", "SLASH", "UNDERSCORE", "DOLLAR", "PBX_AGGREGATE_TARGET", "PBX_BUILD_FILE", "PBX_BUILD_RULE", "PBX_BUILD_STYLE", "PBX_CONTAINER_ITEM_PROXY", "PBX_COPY_FILES_BUILD_PHASE", - "PBX_FILE_REFERENCE", "PBX_FRAMEWORKS_BUILD_PHASE", "PBX_GROUP", - "PBX_HEADERS_BUILD_PHASE", "PBX_NATIVE_TARGET", "PBX_LEGACY_TARGET", - "PBX_PROJECT", "PBX_REFERENCE_PROXY", "PBX_RESOURCES_BUILD_PHASE", - "PBX_SHELL_SCRIPT_BUILD_PHASE", "PBX_SHELL_BUILD_PHASE", - "PBX_SOURCES_BUILD_PHASE", "PBX_TARGET_DEPENDENCY", "PBX_VARIANT_GROUP", - "XC_BUILD_CONFIGURATION", "XC_CONFIGURATION_LIST", "XC_REMOTE_SWIFT_PACKAGE_REFERENCE", - "XC_SWIFT_PACKAGE_PRODUCT_DEPENDENCY", "XC_VERSION_GROUP", - "ALWAYS_OUT_OF_DATE", "FILE_REF", "PRODUCT_REF", "CONTAINER_PORTAL", - "PROXY_TYPE", "REMOTE_GLOBAL_ID_STRING", "REMOTE_INFO", - "FILE_ENCODING", "COMMENTS", "EXPLICIT_FILE_TYPE", "LAST_KNOWN_FILE_TYPE", + "PBX_FILE_REFERENCE", "PBX_FILE_SYSTEM_SYNCHRONIZED_BUILD_FILE_EXCEPTION_SET", + "PBX_FILE_SYSTEM_SYNCHRONIZED_ROOT_GROUP", "PBX_FRAMEWORKS_BUILD_PHASE", + "PBX_GROUP", "PBX_HEADERS_BUILD_PHASE", "PBX_NATIVE_TARGET", + "PBX_LEGACY_TARGET", "PBX_PROJECT", "PBX_REFERENCE_PROXY", + "PBX_RESOURCES_BUILD_PHASE", "PBX_SHELL_SCRIPT_BUILD_PHASE", + "PBX_SHELL_BUILD_PHASE", "PBX_SOURCES_BUILD_PHASE", "PBX_TARGET_DEPENDENCY", + "PBX_VARIANT_GROUP", "XC_BUILD_CONFIGURATION", "XC_CONFIGURATION_LIST", + "XC_REMOTE_SWIFT_PACKAGE_REFERENCE", "XC_SWIFT_PACKAGE_PRODUCT_DEPENDENCY", + "XC_VERSION_GROUP", "ALWAYS_OUT_OF_DATE", "FILE_REF", + "PRODUCT_REF", "CONTAINER_PORTAL", "PROXY_TYPE", "REMOTE_GLOBAL_ID_STRING", + "REMOTE_INFO", "FILE_ENCODING", "COMMENTS", "EXPLICIT_FILE_TYPE", + "EXPLICIT_FILE_TYPES", "EXPLICIT_FOLDERS", "LAST_KNOWN_FILE_TYPE", "INCLUDE_IN_INDEX", "INDENT_WIDTH", "TAB_WIDTH", "USES_TABS", "WRAPS_LINES", "PLATFORM_FILTER", "PLATFORM_FILTERS", "CHILDREN", "PRODUCT_INSTALL_PATH", "REPOSITORY_URL", @@ -1325,24 +1416,25 @@ class PBXProjLexer(Lexer): "DEVELOPMENT_TEAM_NAME", "PROVISIONING_STYLE", "COMPATIBILITY_VERSION", "DEVELOPMENT_REGION", "HAS_SCANNED_FOR_ENCODINGS", "KNOWN_REGIONS", "MAIN_GROUP", "PRODUCT_REF_GROUP", "PACKAGE_REFERENCES", - "PRODUCT_DIR_PATH", "PROJECT_REFERENCES", "PROJECT_ROOT", - "TARGETS", "INPUT_FILE_LIST_PATHS", "INPUT_PATHS", "OUTPUT_FILE_LIST_PATHS", - "OUTPUT_PATHS", "SHELL_PATH", "SHELL", "SHELL_SCRIPT", - "SHOW_ENV_VARS_IN_LOG", "TARGET", "TARGET_PROXY", "FILE_TYPE", - "REMOTE_REF", "BASE_CONFIGURATION_REFERENCE", "BUILD_SETTINGS", - "BUILD_STYLES", "DST_PATH", "DST_SUBFOLDER_SPEC", "PRODUCT_GROUP", - "PROJECT_REF", "BUILD_CONFIGURATIONS", "DEFAULT_CONFIGURATION_IS_VISIBLE", - "DEFAULT_CONFIGURATION_NAME", "SETTINGS", "SYSTEM_CAPABILITIES", - "CURRENT_VERSION", "VERSION_GROUP_TYPE", "CLASSPREFIX", - "REFERENCE", "QUOTED_STRING", "NON_QUOTED_STRING", "VARIABLE", - "ALPHA_NUMERIC", "ALPHA_NUMERIC_CAP", "HEX", "QUOTED_STRING_CHARACTER", - "WS", "COMMENT", "LINE_COMMENT" ] + "PREFERRED_PROJECT_OBJECT_VERSION", "PRODUCT_DIR_PATH", + "PROJECT_REFERENCES", "PROJECT_ROOT", "TARGETS", "INPUT_FILE_LIST_PATHS", + "INPUT_PATHS", "OUTPUT_FILE_LIST_PATHS", "OUTPUT_PATHS", + "SHELL_PATH", "SHELL", "SHELL_SCRIPT", "SHOW_ENV_VARS_IN_LOG", + "TARGET", "TARGET_PROXY", "FILE_TYPE", "REMOTE_REF", "BASE_CONFIGURATION_REFERENCE", + "BUILD_SETTINGS", "BUILD_STYLES", "DST_PATH", "DST_SUBFOLDER_SPEC", + "PRODUCT_GROUP", "PROJECT_REF", "BUILD_CONFIGURATIONS", + "DEFAULT_CONFIGURATION_IS_VISIBLE", "DEFAULT_CONFIGURATION_NAME", + "SETTINGS", "SYSTEM_CAPABILITIES", "CURRENT_VERSION", + "VERSION_GROUP_TYPE", "MEMBERSHIP_EXCEPTIONS", "EXCEPTIONS", + "CLASSPREFIX", "REFERENCE", "QUOTED_STRING", "NON_QUOTED_STRING", + "VARIABLE", "ALPHA_NUMERIC", "ALPHA_NUMERIC_CAP", "HEX", + "QUOTED_STRING_CHARACTER", "WS", "COMMENT", "LINE_COMMENT" ] grammarFileName = "PBXProj.g4" def __init__(self, input=None, output:TextIO = sys.stdout): super().__init__(input, output) - self.checkVersion("4.13.1") + self.checkVersion("4.13.2") self._interp = LexerATNSimulator(self, self.atn, self.decisionsToDFA, PredictionContextCache()) self._actions = None self._predicates = None diff --git a/kin/grammar/PBXProjLexer.tokens b/kin/grammar/PBXProjLexer.tokens index 3acb76b..ed58b2a 100644 --- a/kin/grammar/PBXProjLexer.tokens +++ b/kin/grammar/PBXProjLexer.tokens @@ -24,137 +24,144 @@ PBX_BUILD_STYLE=23 PBX_CONTAINER_ITEM_PROXY=24 PBX_COPY_FILES_BUILD_PHASE=25 PBX_FILE_REFERENCE=26 -PBX_FRAMEWORKS_BUILD_PHASE=27 -PBX_GROUP=28 -PBX_HEADERS_BUILD_PHASE=29 -PBX_NATIVE_TARGET=30 -PBX_LEGACY_TARGET=31 -PBX_PROJECT=32 -PBX_REFERENCE_PROXY=33 -PBX_RESOURCES_BUILD_PHASE=34 -PBX_SHELL_SCRIPT_BUILD_PHASE=35 -PBX_SHELL_BUILD_PHASE=36 -PBX_SOURCES_BUILD_PHASE=37 -PBX_TARGET_DEPENDENCY=38 -PBX_VARIANT_GROUP=39 -XC_BUILD_CONFIGURATION=40 -XC_CONFIGURATION_LIST=41 -XC_REMOTE_SWIFT_PACKAGE_REFERENCE=42 -XC_SWIFT_PACKAGE_PRODUCT_DEPENDENCY=43 -XC_VERSION_GROUP=44 -ALWAYS_OUT_OF_DATE=45 -FILE_REF=46 -PRODUCT_REF=47 -CONTAINER_PORTAL=48 -PROXY_TYPE=49 -REMOTE_GLOBAL_ID_STRING=50 -REMOTE_INFO=51 -FILE_ENCODING=52 -COMMENTS=53 -EXPLICIT_FILE_TYPE=54 -LAST_KNOWN_FILE_TYPE=55 -INCLUDE_IN_INDEX=56 -INDENT_WIDTH=57 -TAB_WIDTH=58 -USES_TABS=59 -WRAPS_LINES=60 -PLATFORM_FILTER=61 -PLATFORM_FILTERS=62 -CHILDREN=63 -PRODUCT_INSTALL_PATH=64 -REPOSITORY_URL=65 -REQUIREMENT=66 -PACKAGE=67 -PACKAGE_PRODUCT_DEPENDENCIES=68 -NAME=69 -PATH=70 -SOURCE_TREE=71 -BUILD_ACTION_MASK=72 -FILES=73 -RUN_ONLY_FOR_DEPLOYMENT_POSTPROCESSING=74 -BUILD_CONFIGURATION_LIST=75 -BUILD_PHASES=76 -BUILD_RULES=77 -BUILD_ARGUMENTS_STRING=78 -BUILD_TOOL_PATH=79 -BUILD_WORKING_DIRECTORY=80 -PASS_BUILD_SETTINGS_IN_ENVIRONMENT=81 -DEPENDENCIES=82 -PRODUCT_NAME=83 -PRODUCT_REFERENCE=84 -PRODUCT_TYPE=85 -LINE_ENDING=86 -XC_LANGUAGE_SPECIFICATION_IDENTIFIER=87 -PLIST_STRUCTURE_DEFINITION_IDENTIFIER=88 -REF_TYPE=89 -COMPILER_SPEC=90 -FILE_PATTERNS=91 -INPUT_FILES=92 -IS_EDITABLE=93 -OUTPUT_FILES=94 -RUN_ONCE_PER_ARCH=95 -SCRIPT=96 -ATTRIBUTES=97 -LAST_SWIFT_MIGRATION=98 -DEFAULT_BUILD_SYSTEM_TYPE_FOR_WORKSPACE=99 -LAST_SWIFT_UPDATE_CHECK=100 -BUILD_INDEPENDENT_TARGETS_IN_PARALLEL=101 -LAST_TESTING_UPGRADE_CHECK=102 -LAST_UPGRADE_CHECK=103 -ORGANIZATION_NAME=104 -TARGET_ATTRIBUTES=105 -CREATED_ON_TOOLS_VERSION=106 -TEST_TARGET_ID=107 -DEVELOPMENT_TEAM=108 -DEVELOPMENT_TEAM_NAME=109 -PROVISIONING_STYLE=110 -COMPATIBILITY_VERSION=111 -DEVELOPMENT_REGION=112 -HAS_SCANNED_FOR_ENCODINGS=113 -KNOWN_REGIONS=114 -MAIN_GROUP=115 -PRODUCT_REF_GROUP=116 -PACKAGE_REFERENCES=117 -PRODUCT_DIR_PATH=118 -PROJECT_REFERENCES=119 -PROJECT_ROOT=120 -TARGETS=121 -INPUT_FILE_LIST_PATHS=122 -INPUT_PATHS=123 -OUTPUT_FILE_LIST_PATHS=124 -OUTPUT_PATHS=125 -SHELL_PATH=126 -SHELL=127 -SHELL_SCRIPT=128 -SHOW_ENV_VARS_IN_LOG=129 -TARGET=130 -TARGET_PROXY=131 -FILE_TYPE=132 -REMOTE_REF=133 -BASE_CONFIGURATION_REFERENCE=134 -BUILD_SETTINGS=135 -BUILD_STYLES=136 -DST_PATH=137 -DST_SUBFOLDER_SPEC=138 -PRODUCT_GROUP=139 -PROJECT_REF=140 -BUILD_CONFIGURATIONS=141 -DEFAULT_CONFIGURATION_IS_VISIBLE=142 -DEFAULT_CONFIGURATION_NAME=143 -SETTINGS=144 -SYSTEM_CAPABILITIES=145 -CURRENT_VERSION=146 -VERSION_GROUP_TYPE=147 -CLASSPREFIX=148 -REFERENCE=149 -QUOTED_STRING=150 -NON_QUOTED_STRING=151 -VARIABLE=152 -ALPHA_NUMERIC=153 -ALPHA_NUMERIC_CAP=154 -WS=155 -COMMENT=156 -LINE_COMMENT=157 +PBX_FILE_SYSTEM_SYNCHRONIZED_BUILD_FILE_EXCEPTION_SET=27 +PBX_FILE_SYSTEM_SYNCHRONIZED_ROOT_GROUP=28 +PBX_FRAMEWORKS_BUILD_PHASE=29 +PBX_GROUP=30 +PBX_HEADERS_BUILD_PHASE=31 +PBX_NATIVE_TARGET=32 +PBX_LEGACY_TARGET=33 +PBX_PROJECT=34 +PBX_REFERENCE_PROXY=35 +PBX_RESOURCES_BUILD_PHASE=36 +PBX_SHELL_SCRIPT_BUILD_PHASE=37 +PBX_SHELL_BUILD_PHASE=38 +PBX_SOURCES_BUILD_PHASE=39 +PBX_TARGET_DEPENDENCY=40 +PBX_VARIANT_GROUP=41 +XC_BUILD_CONFIGURATION=42 +XC_CONFIGURATION_LIST=43 +XC_REMOTE_SWIFT_PACKAGE_REFERENCE=44 +XC_SWIFT_PACKAGE_PRODUCT_DEPENDENCY=45 +XC_VERSION_GROUP=46 +ALWAYS_OUT_OF_DATE=47 +FILE_REF=48 +PRODUCT_REF=49 +CONTAINER_PORTAL=50 +PROXY_TYPE=51 +REMOTE_GLOBAL_ID_STRING=52 +REMOTE_INFO=53 +FILE_ENCODING=54 +COMMENTS=55 +EXPLICIT_FILE_TYPE=56 +EXPLICIT_FILE_TYPES=57 +EXPLICIT_FOLDERS=58 +LAST_KNOWN_FILE_TYPE=59 +INCLUDE_IN_INDEX=60 +INDENT_WIDTH=61 +TAB_WIDTH=62 +USES_TABS=63 +WRAPS_LINES=64 +PLATFORM_FILTER=65 +PLATFORM_FILTERS=66 +CHILDREN=67 +PRODUCT_INSTALL_PATH=68 +REPOSITORY_URL=69 +REQUIREMENT=70 +PACKAGE=71 +PACKAGE_PRODUCT_DEPENDENCIES=72 +NAME=73 +PATH=74 +SOURCE_TREE=75 +BUILD_ACTION_MASK=76 +FILES=77 +RUN_ONLY_FOR_DEPLOYMENT_POSTPROCESSING=78 +BUILD_CONFIGURATION_LIST=79 +BUILD_PHASES=80 +BUILD_RULES=81 +BUILD_ARGUMENTS_STRING=82 +BUILD_TOOL_PATH=83 +BUILD_WORKING_DIRECTORY=84 +PASS_BUILD_SETTINGS_IN_ENVIRONMENT=85 +DEPENDENCIES=86 +PRODUCT_NAME=87 +PRODUCT_REFERENCE=88 +PRODUCT_TYPE=89 +LINE_ENDING=90 +XC_LANGUAGE_SPECIFICATION_IDENTIFIER=91 +PLIST_STRUCTURE_DEFINITION_IDENTIFIER=92 +REF_TYPE=93 +COMPILER_SPEC=94 +FILE_PATTERNS=95 +INPUT_FILES=96 +IS_EDITABLE=97 +OUTPUT_FILES=98 +RUN_ONCE_PER_ARCH=99 +SCRIPT=100 +ATTRIBUTES=101 +LAST_SWIFT_MIGRATION=102 +DEFAULT_BUILD_SYSTEM_TYPE_FOR_WORKSPACE=103 +LAST_SWIFT_UPDATE_CHECK=104 +BUILD_INDEPENDENT_TARGETS_IN_PARALLEL=105 +LAST_TESTING_UPGRADE_CHECK=106 +LAST_UPGRADE_CHECK=107 +ORGANIZATION_NAME=108 +TARGET_ATTRIBUTES=109 +CREATED_ON_TOOLS_VERSION=110 +TEST_TARGET_ID=111 +DEVELOPMENT_TEAM=112 +DEVELOPMENT_TEAM_NAME=113 +PROVISIONING_STYLE=114 +COMPATIBILITY_VERSION=115 +DEVELOPMENT_REGION=116 +HAS_SCANNED_FOR_ENCODINGS=117 +KNOWN_REGIONS=118 +MAIN_GROUP=119 +PRODUCT_REF_GROUP=120 +PACKAGE_REFERENCES=121 +PREFERRED_PROJECT_OBJECT_VERSION=122 +PRODUCT_DIR_PATH=123 +PROJECT_REFERENCES=124 +PROJECT_ROOT=125 +TARGETS=126 +INPUT_FILE_LIST_PATHS=127 +INPUT_PATHS=128 +OUTPUT_FILE_LIST_PATHS=129 +OUTPUT_PATHS=130 +SHELL_PATH=131 +SHELL=132 +SHELL_SCRIPT=133 +SHOW_ENV_VARS_IN_LOG=134 +TARGET=135 +TARGET_PROXY=136 +FILE_TYPE=137 +REMOTE_REF=138 +BASE_CONFIGURATION_REFERENCE=139 +BUILD_SETTINGS=140 +BUILD_STYLES=141 +DST_PATH=142 +DST_SUBFOLDER_SPEC=143 +PRODUCT_GROUP=144 +PROJECT_REF=145 +BUILD_CONFIGURATIONS=146 +DEFAULT_CONFIGURATION_IS_VISIBLE=147 +DEFAULT_CONFIGURATION_NAME=148 +SETTINGS=149 +SYSTEM_CAPABILITIES=150 +CURRENT_VERSION=151 +VERSION_GROUP_TYPE=152 +MEMBERSHIP_EXCEPTIONS=153 +EXCEPTIONS=154 +CLASSPREFIX=155 +REFERENCE=156 +QUOTED_STRING=157 +NON_QUOTED_STRING=158 +VARIABLE=159 +ALPHA_NUMERIC=160 +ALPHA_NUMERIC_CAP=161 +WS=162 +COMMENT=163 +LINE_COMMENT=164 '{'=1 '}'=2 '='=3 @@ -180,124 +187,131 @@ LINE_COMMENT=157 'PBXContainerItemProxy'=24 'PBXCopyFilesBuildPhase'=25 'PBXFileReference'=26 -'PBXFrameworksBuildPhase'=27 -'PBXGroup'=28 -'PBXHeadersBuildPhase'=29 -'PBXNativeTarget'=30 -'PBXLegacyTarget'=31 -'PBXProject'=32 -'PBXReferenceProxy'=33 -'PBXShellScriptBuildPhase'=35 -'PBXShellBuildPhase'=36 -'PBXSourcesBuildPhase'=37 -'PBXTargetDependency'=38 -'PBXVariantGroup'=39 -'XCBuildConfiguration'=40 -'XCConfigurationList'=41 -'XCRemoteSwiftPackageReference'=42 -'XCSwiftPackageProductDependency'=43 -'XCVersionGroup'=44 -'alwaysOutOfDate'=45 -'fileRef'=46 -'productRef'=47 -'containerPortal'=48 -'proxyType'=49 -'remoteGlobalIDString'=50 -'remoteInfo'=51 -'fileEncoding'=52 -'comments'=53 -'explicitFileType'=54 -'lastKnownFileType'=55 -'includeInIndex'=56 -'indentWidth'=57 -'tabWidth'=58 -'usesTabs'=59 -'wrapsLines'=60 -'platformFilter'=61 -'platformFilters'=62 -'children'=63 -'productInstallPath'=64 -'repositoryURL'=65 -'requirement'=66 -'package'=67 -'packageProductDependencies'=68 -'name'=69 -'path'=70 -'sourceTree'=71 -'buildActionMask'=72 -'files'=73 -'runOnlyForDeploymentPostprocessing'=74 -'buildConfigurationList'=75 -'buildPhases'=76 -'buildRules'=77 -'buildArgumentsString'=78 -'buildToolPath'=79 -'buildWorkingDirectory'=80 -'passBuildSettingsInEnvironment'=81 -'dependencies'=82 -'productName'=83 -'productReference'=84 -'productType'=85 -'lineEnding'=86 -'xcLanguageSpecificationIdentifier'=87 -'plistStructureDefinitionIdentifier'=88 -'refType'=89 -'compilerSpec'=90 -'filePatterns'=91 -'inputFiles'=92 -'isEditable'=93 -'outputFiles'=94 -'runOncePerArchitecture'=95 -'script'=96 -'attributes'=97 -'LastSwiftMigration'=98 -'DefaultBuildSystemTypeForWorkspace'=99 -'LastSwiftUpdateCheck'=100 -'BuildIndependentTargetsInParallel'=101 -'LastTestingUpgradeCheck'=102 -'LastUpgradeCheck'=103 -'ORGANIZATIONNAME'=104 -'TargetAttributes'=105 -'CreatedOnToolsVersion'=106 -'TestTargetID'=107 -'DevelopmentTeam'=108 -'DevelopmentTeamName'=109 -'ProvisioningStyle'=110 -'compatibilityVersion'=111 -'developmentRegion'=112 -'hasScannedForEncodings'=113 -'knownRegions'=114 -'mainGroup'=115 -'productRefGroup'=116 -'packageReferences'=117 -'projectDirPath'=118 -'projectReferences'=119 -'projectRoot'=120 -'targets'=121 -'inputFileListPaths'=122 -'inputPaths'=123 -'outputFileListPaths'=124 -'outputPaths'=125 -'shellPath'=126 -'shell'=127 -'shellScript'=128 -'showEnvVarsInLog'=129 -'target'=130 -'targetProxy'=131 -'fileType'=132 -'remoteRef'=133 -'baseConfigurationReference'=134 -'buildSettings'=135 -'buildStyles'=136 -'dstPath'=137 -'dstSubfolderSpec'=138 -'ProductGroup'=139 -'ProjectRef'=140 -'buildConfigurations'=141 -'defaultConfigurationIsVisible'=142 -'defaultConfigurationName'=143 -'settings'=144 -'SystemCapabilities'=145 -'currentVersion'=146 -'versionGroupType'=147 -'CLASSPREFIX'=148 +'PBXFileSystemSynchronizedBuildFileExceptionSet'=27 +'PBXFileSystemSynchronizedRootGroup'=28 +'PBXFrameworksBuildPhase'=29 +'PBXGroup'=30 +'PBXHeadersBuildPhase'=31 +'PBXNativeTarget'=32 +'PBXLegacyTarget'=33 +'PBXProject'=34 +'PBXReferenceProxy'=35 +'PBXShellScriptBuildPhase'=37 +'PBXShellBuildPhase'=38 +'PBXSourcesBuildPhase'=39 +'PBXTargetDependency'=40 +'PBXVariantGroup'=41 +'XCBuildConfiguration'=42 +'XCConfigurationList'=43 +'XCRemoteSwiftPackageReference'=44 +'XCSwiftPackageProductDependency'=45 +'XCVersionGroup'=46 +'alwaysOutOfDate'=47 +'fileRef'=48 +'productRef'=49 +'containerPortal'=50 +'proxyType'=51 +'remoteGlobalIDString'=52 +'remoteInfo'=53 +'fileEncoding'=54 +'comments'=55 +'explicitFileType'=56 +'explicitFileTypes'=57 +'explicitFolders'=58 +'lastKnownFileType'=59 +'includeInIndex'=60 +'indentWidth'=61 +'tabWidth'=62 +'usesTabs'=63 +'wrapsLines'=64 +'platformFilter'=65 +'platformFilters'=66 +'children'=67 +'productInstallPath'=68 +'repositoryURL'=69 +'requirement'=70 +'package'=71 +'packageProductDependencies'=72 +'name'=73 +'path'=74 +'sourceTree'=75 +'buildActionMask'=76 +'files'=77 +'runOnlyForDeploymentPostprocessing'=78 +'buildConfigurationList'=79 +'buildPhases'=80 +'buildRules'=81 +'buildArgumentsString'=82 +'buildToolPath'=83 +'buildWorkingDirectory'=84 +'passBuildSettingsInEnvironment'=85 +'dependencies'=86 +'productName'=87 +'productReference'=88 +'productType'=89 +'lineEnding'=90 +'xcLanguageSpecificationIdentifier'=91 +'plistStructureDefinitionIdentifier'=92 +'refType'=93 +'compilerSpec'=94 +'filePatterns'=95 +'inputFiles'=96 +'isEditable'=97 +'outputFiles'=98 +'runOncePerArchitecture'=99 +'script'=100 +'attributes'=101 +'LastSwiftMigration'=102 +'DefaultBuildSystemTypeForWorkspace'=103 +'LastSwiftUpdateCheck'=104 +'BuildIndependentTargetsInParallel'=105 +'LastTestingUpgradeCheck'=106 +'LastUpgradeCheck'=107 +'ORGANIZATIONNAME'=108 +'TargetAttributes'=109 +'CreatedOnToolsVersion'=110 +'TestTargetID'=111 +'DevelopmentTeam'=112 +'DevelopmentTeamName'=113 +'ProvisioningStyle'=114 +'compatibilityVersion'=115 +'developmentRegion'=116 +'hasScannedForEncodings'=117 +'knownRegions'=118 +'mainGroup'=119 +'productRefGroup'=120 +'packageReferences'=121 +'preferredProjectObjectVersion'=122 +'projectDirPath'=123 +'projectReferences'=124 +'projectRoot'=125 +'targets'=126 +'inputFileListPaths'=127 +'inputPaths'=128 +'outputFileListPaths'=129 +'outputPaths'=130 +'shellPath'=131 +'shell'=132 +'shellScript'=133 +'showEnvVarsInLog'=134 +'target'=135 +'targetProxy'=136 +'fileType'=137 +'remoteRef'=138 +'baseConfigurationReference'=139 +'buildSettings'=140 +'buildStyles'=141 +'dstPath'=142 +'dstSubfolderSpec'=143 +'ProductGroup'=144 +'ProjectRef'=145 +'buildConfigurations'=146 +'defaultConfigurationIsVisible'=147 +'defaultConfigurationName'=148 +'settings'=149 +'SystemCapabilities'=150 +'currentVersion'=151 +'versionGroupType'=152 +'membershipExceptions'=153 +'exceptions'=154 +'CLASSPREFIX'=155 diff --git a/kin/grammar/PBXProjListener.py b/kin/grammar/PBXProjListener.py index 7b6f40b..426e60a 100644 --- a/kin/grammar/PBXProjListener.py +++ b/kin/grammar/PBXProjListener.py @@ -1,4 +1,4 @@ -# Generated from PBXProj.g4 by ANTLR 4.13.1 +# Generated from PBXProj.g4 by ANTLR 4.13.2 from antlr4 import * if "." in __name__: from .PBXProjParser import PBXProjParser @@ -134,6 +134,24 @@ def exitPbx_file_reference_section(self, ctx:PBXProjParser.Pbx_file_reference_se pass + # Enter a parse tree produced by PBXProjParser#pbx_file_system_synchronized_build_file_exception_set_section. + def enterPbx_file_system_synchronized_build_file_exception_set_section(self, ctx:PBXProjParser.Pbx_file_system_synchronized_build_file_exception_set_sectionContext): + pass + + # Exit a parse tree produced by PBXProjParser#pbx_file_system_synchronized_build_file_exception_set_section. + def exitPbx_file_system_synchronized_build_file_exception_set_section(self, ctx:PBXProjParser.Pbx_file_system_synchronized_build_file_exception_set_sectionContext): + pass + + + # Enter a parse tree produced by PBXProjParser#pbx_file_system_synchronized_root_group_section. + def enterPbx_file_system_synchronized_root_group_section(self, ctx:PBXProjParser.Pbx_file_system_synchronized_root_group_sectionContext): + pass + + # Exit a parse tree produced by PBXProjParser#pbx_file_system_synchronized_root_group_section. + def exitPbx_file_system_synchronized_root_group_section(self, ctx:PBXProjParser.Pbx_file_system_synchronized_root_group_sectionContext): + pass + + # Enter a parse tree produced by PBXProjParser#pbx_frameworks_build_phase_section. def enterPbx_frameworks_build_phase_section(self, ctx:PBXProjParser.Pbx_frameworks_build_phase_sectionContext): pass @@ -359,6 +377,24 @@ def exitPbx_file_reference(self, ctx:PBXProjParser.Pbx_file_referenceContext): pass + # Enter a parse tree produced by PBXProjParser#pbx_file_system_synchronized_build_file_exception_set. + def enterPbx_file_system_synchronized_build_file_exception_set(self, ctx:PBXProjParser.Pbx_file_system_synchronized_build_file_exception_setContext): + pass + + # Exit a parse tree produced by PBXProjParser#pbx_file_system_synchronized_build_file_exception_set. + def exitPbx_file_system_synchronized_build_file_exception_set(self, ctx:PBXProjParser.Pbx_file_system_synchronized_build_file_exception_setContext): + pass + + + # Enter a parse tree produced by PBXProjParser#pbx_file_system_synchronized_root_group. + def enterPbx_file_system_synchronized_root_group(self, ctx:PBXProjParser.Pbx_file_system_synchronized_root_groupContext): + pass + + # Exit a parse tree produced by PBXProjParser#pbx_file_system_synchronized_root_group. + def exitPbx_file_system_synchronized_root_group(self, ctx:PBXProjParser.Pbx_file_system_synchronized_root_groupContext): + pass + + # Enter a parse tree produced by PBXProjParser#pbx_frameworks_build_phase. def enterPbx_frameworks_build_phase(self, ctx:PBXProjParser.Pbx_frameworks_build_phaseContext): pass @@ -584,6 +620,24 @@ def exitIsa_pbx_file_reference(self, ctx:PBXProjParser.Isa_pbx_file_referenceCon pass + # Enter a parse tree produced by PBXProjParser#isa_pbx_file_system_synchronized_build_file_exception_set. + def enterIsa_pbx_file_system_synchronized_build_file_exception_set(self, ctx:PBXProjParser.Isa_pbx_file_system_synchronized_build_file_exception_setContext): + pass + + # Exit a parse tree produced by PBXProjParser#isa_pbx_file_system_synchronized_build_file_exception_set. + def exitIsa_pbx_file_system_synchronized_build_file_exception_set(self, ctx:PBXProjParser.Isa_pbx_file_system_synchronized_build_file_exception_setContext): + pass + + + # Enter a parse tree produced by PBXProjParser#isa_pbx_file_system_synchronized_root_group. + def enterIsa_pbx_file_system_synchronized_root_group(self, ctx:PBXProjParser.Isa_pbx_file_system_synchronized_root_groupContext): + pass + + # Exit a parse tree produced by PBXProjParser#isa_pbx_file_system_synchronized_root_group. + def exitIsa_pbx_file_system_synchronized_root_group(self, ctx:PBXProjParser.Isa_pbx_file_system_synchronized_root_groupContext): + pass + + # Enter a parse tree produced by PBXProjParser#isa_pbx_frameworks_build_phase. def enterIsa_pbx_frameworks_build_phase(self, ctx:PBXProjParser.Isa_pbx_frameworks_build_phaseContext): pass @@ -836,6 +890,24 @@ def exitExplicit_file_type(self, ctx:PBXProjParser.Explicit_file_typeContext): pass + # Enter a parse tree produced by PBXProjParser#explicit_file_types. + def enterExplicit_file_types(self, ctx:PBXProjParser.Explicit_file_typesContext): + pass + + # Exit a parse tree produced by PBXProjParser#explicit_file_types. + def exitExplicit_file_types(self, ctx:PBXProjParser.Explicit_file_typesContext): + pass + + + # Enter a parse tree produced by PBXProjParser#explicit_folders. + def enterExplicit_folders(self, ctx:PBXProjParser.Explicit_foldersContext): + pass + + # Exit a parse tree produced by PBXProjParser#explicit_folders. + def exitExplicit_folders(self, ctx:PBXProjParser.Explicit_foldersContext): + pass + + # Enter a parse tree produced by PBXProjParser#last_known_file_type. def enterLast_known_file_type(self, ctx:PBXProjParser.Last_known_file_typeContext): pass @@ -1439,6 +1511,15 @@ def exitPackage_references(self, ctx:PBXProjParser.Package_referencesContext): pass + # Enter a parse tree produced by PBXProjParser#preferred_project_object_version. + def enterPreferred_project_object_version(self, ctx:PBXProjParser.Preferred_project_object_versionContext): + pass + + # Exit a parse tree produced by PBXProjParser#preferred_project_object_version. + def exitPreferred_project_object_version(self, ctx:PBXProjParser.Preferred_project_object_versionContext): + pass + + # Enter a parse tree produced by PBXProjParser#project_dir_path. def enterProject_dir_path(self, ctx:PBXProjParser.Project_dir_pathContext): pass @@ -1646,6 +1727,24 @@ def exitProject_references_list_element(self, ctx:PBXProjParser.Project_referenc pass + # Enter a parse tree produced by PBXProjParser#membership_exceptions. + def enterMembership_exceptions(self, ctx:PBXProjParser.Membership_exceptionsContext): + pass + + # Exit a parse tree produced by PBXProjParser#membership_exceptions. + def exitMembership_exceptions(self, ctx:PBXProjParser.Membership_exceptionsContext): + pass + + + # Enter a parse tree produced by PBXProjParser#exceptions. + def enterExceptions(self, ctx:PBXProjParser.ExceptionsContext): + pass + + # Exit a parse tree produced by PBXProjParser#exceptions. + def exitExceptions(self, ctx:PBXProjParser.ExceptionsContext): + pass + + # Enter a parse tree produced by PBXProjParser#key_value. def enterKey_value(self, ctx:PBXProjParser.Key_valueContext): pass diff --git a/kin/grammar/PBXProjParser.py b/kin/grammar/PBXProjParser.py index 76c5f85..36a7918 100644 --- a/kin/grammar/PBXProjParser.py +++ b/kin/grammar/PBXProjParser.py @@ -1,4 +1,4 @@ -# Generated from PBXProj.g4 by ANTLR 4.13.1 +# Generated from PBXProj.g4 by ANTLR 4.13.2 # encoding: utf-8 from antlr4 import * from io import StringIO @@ -10,7 +10,7 @@ def serializedATN(): return [ - 4,1,157,1954,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,164,2058,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, 7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12,2,13,7, 13,2,14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19,7,19,2, 20,7,20,2,21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25,2,26,7, @@ -42,71 +42,75 @@ def serializedATN(): 7,175,2,176,7,176,2,177,7,177,2,178,7,178,2,179,7,179,2,180,7,180, 2,181,7,181,2,182,7,182,2,183,7,183,2,184,7,184,2,185,7,185,2,186, 7,186,2,187,7,187,2,188,7,188,2,189,7,189,2,190,7,190,2,191,7,191, - 2,192,7,192,2,193,7,193,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,192,7,192,2,193,7,193,2,194,7,194,2,195,7,195,2,196,7,196,2,197, + 7,197,2,198,7,198,2,199,7,199,2,200,7,200,2,201,7,201,2,202,7,202, + 2,203,7,203,2,204,7,204,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,2,1,2,1,2,1,2,1,2,1,3,1,3,1,3,1,3,1,3,1,3,1,4,1,4,1,4,1,4,1,4, - 1,5,1,5,1,5,1,5,3,5,419,8,5,1,5,3,5,422,8,5,1,5,3,5,425,8,5,1,5, - 3,5,428,8,5,1,5,3,5,431,8,5,1,5,3,5,434,8,5,1,5,3,5,437,8,5,1,5, - 3,5,440,8,5,1,5,1,5,3,5,444,8,5,1,5,3,5,447,8,5,1,5,3,5,450,8,5, - 1,5,1,5,3,5,454,8,5,1,5,3,5,457,8,5,1,5,3,5,460,8,5,1,5,3,5,463, - 8,5,1,5,3,5,466,8,5,1,5,3,5,469,8,5,1,5,3,5,472,8,5,1,5,1,5,1,5, - 3,5,477,8,5,1,5,3,5,480,8,5,1,5,3,5,483,8,5,1,5,1,5,1,5,1,6,1,6, - 1,6,1,6,1,6,1,7,4,7,494,8,7,11,7,12,7,495,1,8,4,8,499,8,8,11,8,12, - 8,500,1,9,4,9,504,8,9,11,9,12,9,505,1,10,4,10,509,8,10,11,10,12, - 10,510,1,11,4,11,514,8,11,11,11,12,11,515,1,12,4,12,519,8,12,11, - 12,12,12,520,1,13,4,13,524,8,13,11,13,12,13,525,1,14,4,14,529,8, - 14,11,14,12,14,530,1,15,4,15,534,8,15,11,15,12,15,535,1,16,4,16, - 539,8,16,11,16,12,16,540,1,17,4,17,544,8,17,11,17,12,17,545,1,18, - 4,18,549,8,18,11,18,12,18,550,1,19,4,19,554,8,19,11,19,12,19,555, - 1,20,4,20,559,8,20,11,20,12,20,560,1,21,4,21,564,8,21,11,21,12,21, - 565,1,22,4,22,569,8,22,11,22,12,22,570,1,23,4,23,574,8,23,11,23, - 12,23,575,1,24,4,24,579,8,24,11,24,12,24,580,1,25,4,25,584,8,25, - 11,25,12,25,585,1,26,4,26,589,8,26,11,26,12,26,590,1,27,4,27,594, - 8,27,11,27,12,27,595,1,28,4,28,599,8,28,11,28,12,28,600,1,29,4,29, - 604,8,29,11,29,12,29,605,1,30,4,30,609,8,30,11,30,12,30,610,1,31, - 4,31,614,8,31,11,31,12,31,615,1,32,1,32,1,32,1,32,1,32,1,32,1,32, - 3,32,625,8,32,1,32,3,32,628,8,32,1,32,1,32,1,32,3,32,633,8,32,1, - 32,1,32,1,32,1,33,1,33,1,33,1,33,1,33,3,33,643,8,33,1,33,3,33,646, - 8,33,1,33,3,33,649,8,33,1,33,3,33,652,8,33,1,33,3,33,655,8,33,1, - 33,1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,34,3,34,666,8,34,1,34,1, - 34,1,34,1,34,1,34,3,34,673,8,34,1,34,3,34,676,8,34,1,34,1,34,1,34, - 1,35,1,35,1,35,1,35,1,35,3,35,686,8,35,1,35,3,35,689,8,35,1,35,1, - 35,1,35,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1, - 37,1,37,1,37,1,37,1,37,1,37,3,37,711,8,37,1,37,1,37,3,37,715,8,37, - 1,37,3,37,718,8,37,1,37,1,37,1,37,1,37,1,38,1,38,1,38,1,38,1,38, - 3,38,729,8,38,1,38,3,38,732,8,38,1,38,3,38,735,8,38,1,38,3,38,738, - 8,38,1,38,3,38,741,8,38,1,38,3,38,744,8,38,1,38,3,38,747,8,38,1, - 38,3,38,750,8,38,1,38,3,38,753,8,38,1,38,3,38,756,8,38,1,38,3,38, - 759,8,38,1,38,3,38,762,8,38,1,38,3,38,765,8,38,1,38,3,38,768,8,38, - 1,38,3,38,771,8,38,1,38,3,38,774,8,38,1,38,3,38,777,8,38,1,38,1, - 38,1,38,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,40,1, - 40,1,40,1,40,1,40,1,40,3,40,798,8,40,1,40,3,40,801,8,40,1,40,3,40, - 804,8,40,1,40,3,40,807,8,40,1,40,3,40,810,8,40,1,40,1,40,3,40,814, - 8,40,1,40,3,40,817,8,40,1,40,3,40,820,8,40,1,40,1,40,1,40,1,41,1, - 41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,42,1,42,1,42,1,42,1, - 42,1,42,1,42,1,42,3,42,843,8,42,1,42,3,42,846,8,42,1,42,1,42,1,42, - 3,42,851,8,42,1,42,3,42,854,8,42,1,42,1,42,3,42,858,8,42,1,42,1, - 42,1,42,1,42,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1, - 43,1,43,1,43,1,43,1,43,1,43,1,44,1,44,1,44,1,44,1,44,3,44,885,8, - 44,1,44,1,44,3,44,889,8,44,1,44,3,44,892,8,44,1,44,3,44,895,8,44, - 1,44,3,44,898,8,44,1,44,1,44,3,44,902,8,44,1,44,1,44,3,44,906,8, - 44,1,44,3,44,909,8,44,1,44,1,44,3,44,913,8,44,1,44,3,44,916,8,44, - 1,44,1,44,1,44,1,44,1,45,1,45,1,45,1,45,1,45,1,45,3,45,928,8,45, - 1,45,1,45,1,45,1,45,1,45,1,45,1,46,1,46,1,46,1,46,1,46,1,46,1,46, - 1,46,1,46,1,46,1,47,1,47,1,47,1,47,1,47,3,47,951,8,47,1,47,1,47, - 1,47,3,47,956,8,47,1,47,3,47,959,8,47,1,47,3,47,962,8,47,1,47,3, - 47,965,8,47,1,47,3,47,968,8,47,1,47,1,47,1,47,1,47,3,47,974,8,47, - 1,47,1,47,1,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48, - 1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,49,1,49,1,49,1,49,1,49,1,49, - 1,49,1,49,1,49,1,49,1,50,1,50,1,50,1,50,1,50,3,50,1011,8,50,1,50, - 3,50,1014,8,50,1,50,3,50,1017,8,50,1,50,3,50,1020,8,50,1,50,3,50, - 1023,8,50,1,50,3,50,1026,8,50,1,50,1,50,1,50,1,51,1,51,1,51,1,51, - 1,51,1,51,1,51,3,51,1038,8,51,1,51,1,51,1,51,1,51,1,52,1,52,1,52, - 1,52,1,52,3,52,1049,8,52,1,52,1,52,1,52,1,52,1,52,1,53,1,53,1,53, - 1,53,1,53,1,53,1,53,3,53,1063,8,53,1,53,1,53,1,53,1,54,1,54,1,54, - 1,54,1,54,1,54,1,54,1,54,1,54,1,55,1,55,1,55,1,55,1,55,3,55,1082, - 8,55,1,55,1,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56, - 1095,8,56,1,56,1,56,1,56,1,56,1,56,1,56,1,57,1,57,1,57,1,57,1,57, - 1,58,1,58,1,58,1,58,1,58,1,59,1,59,1,59,1,59,1,59,1,60,1,60,1,60, + 1,5,1,5,1,5,1,5,3,5,441,8,5,1,5,3,5,444,8,5,1,5,3,5,447,8,5,1,5, + 3,5,450,8,5,1,5,3,5,453,8,5,1,5,3,5,456,8,5,1,5,3,5,459,8,5,1,5, + 3,5,462,8,5,1,5,3,5,465,8,5,1,5,3,5,468,8,5,1,5,1,5,3,5,472,8,5, + 1,5,3,5,475,8,5,1,5,3,5,478,8,5,1,5,1,5,3,5,482,8,5,1,5,3,5,485, + 8,5,1,5,3,5,488,8,5,1,5,3,5,491,8,5,1,5,3,5,494,8,5,1,5,3,5,497, + 8,5,1,5,3,5,500,8,5,1,5,1,5,1,5,3,5,505,8,5,1,5,3,5,508,8,5,1,5, + 3,5,511,8,5,1,5,1,5,1,5,1,6,1,6,1,6,1,6,1,6,1,7,4,7,522,8,7,11,7, + 12,7,523,1,8,4,8,527,8,8,11,8,12,8,528,1,9,4,9,532,8,9,11,9,12,9, + 533,1,10,4,10,537,8,10,11,10,12,10,538,1,11,4,11,542,8,11,11,11, + 12,11,543,1,12,4,12,547,8,12,11,12,12,12,548,1,13,4,13,552,8,13, + 11,13,12,13,553,1,14,4,14,557,8,14,11,14,12,14,558,1,15,4,15,562, + 8,15,11,15,12,15,563,1,16,4,16,567,8,16,11,16,12,16,568,1,17,4,17, + 572,8,17,11,17,12,17,573,1,18,4,18,577,8,18,11,18,12,18,578,1,19, + 4,19,582,8,19,11,19,12,19,583,1,20,4,20,587,8,20,11,20,12,20,588, + 1,21,4,21,592,8,21,11,21,12,21,593,1,22,4,22,597,8,22,11,22,12,22, + 598,1,23,4,23,602,8,23,11,23,12,23,603,1,24,4,24,607,8,24,11,24, + 12,24,608,1,25,4,25,612,8,25,11,25,12,25,613,1,26,4,26,617,8,26, + 11,26,12,26,618,1,27,4,27,622,8,27,11,27,12,27,623,1,28,4,28,627, + 8,28,11,28,12,28,628,1,29,4,29,632,8,29,11,29,12,29,633,1,30,4,30, + 637,8,30,11,30,12,30,638,1,31,4,31,642,8,31,11,31,12,31,643,1,32, + 4,32,647,8,32,11,32,12,32,648,1,33,4,33,652,8,33,11,33,12,33,653, + 1,34,1,34,1,34,1,34,1,34,1,34,1,34,3,34,663,8,34,1,34,3,34,666,8, + 34,1,34,1,34,1,34,3,34,671,8,34,1,34,1,34,1,34,1,35,1,35,1,35,1, + 35,1,35,3,35,681,8,35,1,35,3,35,684,8,35,1,35,3,35,687,8,35,1,35, + 3,35,690,8,35,1,35,3,35,693,8,35,1,35,1,35,1,35,1,36,1,36,1,36,1, + 36,1,36,1,36,3,36,704,8,36,1,36,1,36,1,36,1,36,1,36,3,36,711,8,36, + 1,36,3,36,714,8,36,1,36,1,36,1,36,1,37,1,37,1,37,1,37,1,37,3,37, + 724,8,37,1,37,3,37,727,8,37,1,37,1,37,1,37,1,38,1,38,1,38,1,38,1, + 38,1,38,1,38,1,38,1,38,1,38,1,38,1,39,1,39,1,39,1,39,1,39,1,39,3, + 39,749,8,39,1,39,1,39,3,39,753,8,39,1,39,3,39,756,8,39,1,39,1,39, + 1,39,1,39,1,40,1,40,1,40,1,40,1,40,3,40,767,8,40,1,40,3,40,770,8, + 40,1,40,3,40,773,8,40,1,40,3,40,776,8,40,1,40,3,40,779,8,40,1,40, + 3,40,782,8,40,1,40,3,40,785,8,40,1,40,3,40,788,8,40,1,40,3,40,791, + 8,40,1,40,3,40,794,8,40,1,40,3,40,797,8,40,1,40,3,40,800,8,40,1, + 40,3,40,803,8,40,1,40,3,40,806,8,40,1,40,3,40,809,8,40,1,40,3,40, + 812,8,40,1,40,3,40,815,8,40,1,40,1,40,1,40,1,41,1,41,1,41,1,41,1, + 41,1,41,1,41,1,41,1,41,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1, + 42,1,42,1,42,1,42,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1, + 43,1,44,1,44,1,44,1,44,1,44,1,44,3,44,857,8,44,1,44,3,44,860,8,44, + 1,44,3,44,863,8,44,1,44,3,44,866,8,44,1,44,3,44,869,8,44,1,44,1, + 44,3,44,873,8,44,1,44,3,44,876,8,44,1,44,3,44,879,8,44,1,44,1,44, + 1,44,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,46,1,46, + 1,46,1,46,1,46,1,46,1,46,1,46,3,46,902,8,46,1,46,3,46,905,8,46,1, + 46,1,46,1,46,3,46,910,8,46,1,46,3,46,913,8,46,1,46,1,46,3,46,917, + 8,46,1,46,1,46,1,46,1,46,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47, + 1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,48,1,48,1,48,1,48,1,48, + 3,48,944,8,48,1,48,1,48,3,48,948,8,48,1,48,3,48,951,8,48,1,48,3, + 48,954,8,48,1,48,3,48,957,8,48,1,48,1,48,3,48,961,8,48,1,48,1,48, + 3,48,965,8,48,1,48,3,48,968,8,48,1,48,3,48,971,8,48,1,48,1,48,3, + 48,975,8,48,1,48,3,48,978,8,48,1,48,1,48,1,48,1,48,1,49,1,49,1,49, + 1,49,1,49,1,49,3,49,990,8,49,1,49,1,49,1,49,1,49,1,49,1,49,1,50, + 1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,51,1,51,1,51,1,51, + 1,51,3,51,1013,8,51,1,51,1,51,1,51,3,51,1018,8,51,1,51,3,51,1021, + 8,51,1,51,3,51,1024,8,51,1,51,3,51,1027,8,51,1,51,3,51,1030,8,51, + 1,51,1,51,1,51,1,51,3,51,1036,8,51,1,51,1,51,1,51,1,52,1,52,1,52, + 1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52, + 1,52,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,54,1,54, + 1,54,1,54,1,54,3,54,1073,8,54,1,54,3,54,1076,8,54,1,54,3,54,1079, + 8,54,1,54,3,54,1082,8,54,1,54,3,54,1085,8,54,1,54,3,54,1088,8,54, + 1,54,1,54,1,54,1,55,1,55,1,55,1,55,1,55,1,55,1,55,3,55,1100,8,55, + 1,55,1,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56,3,56,1111,8,56,1,56, + 1,56,1,56,1,56,1,56,1,57,1,57,1,57,1,57,1,57,1,57,1,57,3,57,1125, + 8,57,1,57,1,57,1,57,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, + 1,59,1,59,1,59,1,59,1,59,3,59,1144,8,59,1,59,1,59,1,59,1,59,1,60, + 1,60,1,60,1,60,1,60,1,60,1,60,3,60,1157,8,60,1,60,1,60,1,60,1,60, 1,60,1,60,1,61,1,61,1,61,1,61,1,61,1,62,1,62,1,62,1,62,1,62,1,63, 1,63,1,63,1,63,1,63,1,64,1,64,1,64,1,64,1,64,1,65,1,65,1,65,1,65, 1,65,1,66,1,66,1,66,1,66,1,66,1,67,1,67,1,67,1,67,1,67,1,68,1,68, @@ -121,614 +125,651 @@ def serializedATN(): 1,89,1,89,1,89,1,89,1,90,1,90,1,90,1,90,1,90,1,91,1,91,1,91,1,91, 1,91,1,92,1,92,1,92,1,92,1,92,1,93,1,93,1,93,1,93,1,93,1,94,1,94, 1,94,1,94,1,94,1,95,1,95,1,95,1,95,1,95,1,96,1,96,1,96,1,96,1,96, - 1,97,1,97,1,97,1,97,1,97,1,98,1,98,1,98,1,98,1,98,1,99,1,99,1,99, - 1,99,1,99,1,100,1,100,1,100,1,100,1,100,1,101,1,101,1,101,1,101, - 1,101,1,102,1,102,1,102,1,102,1,102,1,103,1,103,1,103,1,103,5,103, - 1337,8,103,10,103,12,103,1340,9,103,1,103,1,103,1,103,1,104,1,104, - 1,104,1,104,1,104,1,105,1,105,1,105,1,105,1,105,1,106,1,106,1,106, - 1,106,1,106,1,107,1,107,1,107,1,107,1,107,1,108,1,108,1,108,1,108, - 1,108,1,109,1,109,1,109,1,109,1,109,1,110,1,110,1,110,1,110,1,110, - 1,111,1,111,1,111,1,111,1,111,1,112,1,112,1,112,5,112,1388,8,112, - 10,112,12,112,1391,9,112,1,112,1,112,1,113,1,113,1,113,1,113,1,113, - 1,113,5,113,1401,8,113,10,113,12,113,1404,9,113,1,113,3,113,1407, - 8,113,1,113,1,113,3,113,1411,8,113,1,114,1,114,1,114,5,114,1416, - 8,114,10,114,12,114,1419,9,114,1,114,1,114,1,115,1,115,1,115,1,115, - 1,115,1,116,1,116,1,116,1,116,1,116,1,117,1,117,1,117,1,117,1,117, - 1,118,1,118,1,118,1,118,1,118,1,119,1,119,1,119,1,119,1,119,1,120, - 1,120,1,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121,1,122,1,122, - 1,122,1,122,1,122,1,123,1,123,1,123,1,123,1,123,1,124,1,124,1,124, - 1,124,1,124,1,125,1,125,1,125,1,125,1,125,1,126,1,126,1,126,1,126, - 1,126,1,127,1,127,1,127,1,127,1,127,1,128,1,128,1,128,1,128,1,128, - 1,129,1,129,1,129,1,129,1,129,1,130,1,130,1,130,1,130,1,130,1,131, - 1,131,1,131,1,131,1,131,1,132,1,132,1,132,1,132,1,132,1,133,1,133, - 1,133,1,133,1,133,1,134,1,134,1,134,1,134,1,134,1,135,1,135,1,135, - 1,135,1,135,1,136,1,136,1,136,1,136,1,136,1,137,1,137,1,137,1,137, - 3,137,1537,8,137,1,137,3,137,1540,8,137,1,137,3,137,1543,8,137,1, - 137,3,137,1546,8,137,1,137,3,137,1549,8,137,1,137,3,137,1552,8,137, - 1,137,3,137,1555,8,137,1,137,3,137,1558,8,137,1,137,3,137,1561,8, - 137,1,137,1,137,1,137,1,138,1,138,1,138,1,138,1,138,1,139,1,139, - 1,139,1,139,1,139,1,140,1,140,1,140,1,140,1,140,1,141,1,141,1,141, - 1,141,1,141,1,142,1,142,1,142,1,142,1,142,1,143,1,143,1,143,1,143, - 1,143,1,144,1,144,1,144,1,144,1,144,1,145,1,145,1,145,1,145,5,145, - 1605,8,145,10,145,12,145,1608,9,145,1,145,1,145,1,145,1,146,1,146, - 1,146,1,146,3,146,1617,8,146,1,146,3,146,1620,8,146,1,146,3,146, - 1623,8,146,1,146,3,146,1626,8,146,1,146,3,146,1629,8,146,1,146,3, - 146,1632,8,146,1,146,3,146,1635,8,146,1,146,3,146,1638,8,146,1,146, + 1,97,1,97,1,97,1,97,1,97,1,98,1,98,1,98,1,98,5,98,1354,8,98,10,98, + 12,98,1357,9,98,1,98,1,98,1,98,1,99,1,99,1,99,1,99,1,99,1,100,1, + 100,1,100,1,100,1,100,1,101,1,101,1,101,1,101,1,101,1,102,1,102, + 1,102,1,102,1,102,1,103,1,103,1,103,1,103,1,103,1,104,1,104,1,104, + 1,104,1,104,1,105,1,105,1,105,1,105,1,105,1,106,1,106,1,106,1,106, + 1,106,1,107,1,107,1,107,1,107,1,107,1,108,1,108,1,108,1,108,1,108, + 1,109,1,109,1,109,1,109,1,109,1,110,1,110,1,110,1,110,1,110,1,111, + 1,111,1,111,1,111,5,111,1426,8,111,10,111,12,111,1429,9,111,1,111, + 1,111,1,111,1,112,1,112,1,112,1,112,1,112,1,113,1,113,1,113,1,113, + 1,113,1,114,1,114,1,114,1,114,1,114,1,115,1,115,1,115,1,115,1,115, + 1,116,1,116,1,116,1,116,1,116,1,117,1,117,1,117,1,117,1,117,1,118, + 1,118,1,118,1,118,1,118,1,119,1,119,1,119,1,119,1,119,1,120,1,120, + 1,120,5,120,1477,8,120,10,120,12,120,1480,9,120,1,120,1,120,1,121, + 1,121,1,121,1,121,1,121,1,121,5,121,1490,8,121,10,121,12,121,1493, + 9,121,1,121,3,121,1496,8,121,1,121,1,121,3,121,1500,8,121,1,122, + 1,122,1,122,5,122,1505,8,122,10,122,12,122,1508,9,122,1,122,1,122, + 1,123,1,123,1,123,1,123,1,123,1,124,1,124,1,124,1,124,1,124,1,125, + 1,125,1,125,1,125,1,125,1,126,1,126,1,126,1,126,1,126,1,127,1,127, + 1,127,1,127,1,127,1,128,1,128,1,128,1,128,1,128,1,129,1,129,1,129, + 1,129,1,129,1,130,1,130,1,130,1,130,1,130,1,131,1,131,1,131,1,131, + 1,131,1,132,1,132,1,132,1,132,1,132,1,133,1,133,1,133,1,133,1,133, + 1,134,1,134,1,134,1,134,1,134,1,135,1,135,1,135,1,135,1,135,1,136, + 1,136,1,136,1,136,1,136,1,137,1,137,1,137,1,137,1,137,1,138,1,138, + 1,138,1,138,1,138,1,139,1,139,1,139,1,139,1,139,1,140,1,140,1,140, + 1,140,1,140,1,141,1,141,1,141,1,141,1,141,1,142,1,142,1,142,1,142, + 1,142,1,143,1,143,1,143,1,143,1,143,1,144,1,144,1,144,1,144,1,144, + 1,145,1,145,1,145,1,145,3,145,1626,8,145,1,145,3,145,1629,8,145, + 1,145,3,145,1632,8,145,1,145,3,145,1635,8,145,1,145,3,145,1638,8, + 145,1,145,3,145,1641,8,145,1,145,3,145,1644,8,145,1,145,3,145,1647, + 8,145,1,145,3,145,1650,8,145,1,145,1,145,1,145,1,146,1,146,1,146, 1,146,1,146,1,147,1,147,1,147,1,147,1,147,1,148,1,148,1,148,1,148, 1,148,1,149,1,149,1,149,1,149,1,149,1,150,1,150,1,150,1,150,1,150, 1,151,1,151,1,151,1,151,1,151,1,152,1,152,1,152,1,152,1,152,1,153, - 1,153,1,153,1,153,1,153,1,154,1,154,1,154,1,154,1,154,1,155,1,155, - 1,155,1,155,1,155,1,156,1,156,1,156,1,156,1,156,1,157,1,157,1,157, - 1,157,1,157,1,158,1,158,1,158,1,158,1,158,1,159,1,159,1,159,1,159, - 1,159,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160, - 1,160,1,160,3,160,1720,8,160,1,161,1,161,1,161,1,161,1,161,1,162, - 1,162,1,162,1,162,1,162,1,163,1,163,1,163,1,163,1,163,1,164,1,164, - 1,164,1,164,1,164,1,165,1,165,1,165,1,165,1,165,1,166,1,166,1,166, - 1,166,1,166,1,167,1,167,1,167,1,167,1,167,1,168,1,168,1,168,1,168, - 1,168,1,169,1,169,1,169,1,169,1,169,1,170,1,170,1,170,1,170,1,170, - 1,171,1,171,1,171,1,171,1,171,1,172,1,172,1,172,1,172,1,172,1,173, - 1,173,1,173,1,173,1,173,1,174,1,174,1,174,1,174,1,174,1,175,1,175, - 1,175,1,175,1,175,1,176,1,176,1,176,1,176,5,176,1801,8,176,10,176, - 12,176,1804,9,176,1,176,1,176,1,176,1,177,1,177,1,177,1,177,1,177, - 1,178,1,178,1,178,1,178,1,178,1,179,1,179,1,179,1,179,1,179,1,180, - 5,180,1825,8,180,10,180,12,180,1828,9,180,1,181,1,181,1,181,1,181, - 1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,182,1,182,1,182, - 1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182, - 1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182, - 1,182,3,182,1868,8,182,1,182,1,182,5,182,1872,8,182,10,182,12,182, - 1875,9,182,1,182,3,182,1878,8,182,1,182,1,182,1,182,3,182,1883,8, - 182,1,183,1,183,1,183,1,183,1,183,1,184,1,184,1,184,1,184,1,184, - 1,185,1,185,1,185,1,185,1,185,1,186,1,186,1,186,1,186,5,186,1904, - 8,186,10,186,12,186,1907,9,186,1,186,1,186,1,186,1,187,1,187,1,187, - 1,187,5,187,1916,8,187,10,187,12,187,1919,9,187,1,187,1,187,1,187, - 1,188,1,188,1,188,1,188,1,188,1,189,1,189,1,189,1,189,1,189,1,190, - 1,190,1,190,1,190,1,190,1,191,1,191,1,191,1,191,1,191,1,191,3,191, - 1945,8,191,1,192,1,192,1,192,3,192,1950,8,192,1,193,1,193,1,193, - 0,0,194,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40, - 42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84, - 86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116,118,120, - 122,124,126,128,130,132,134,136,138,140,142,144,146,148,150,152, - 154,156,158,160,162,164,166,168,170,172,174,176,178,180,182,184, - 186,188,190,192,194,196,198,200,202,204,206,208,210,212,214,216, - 218,220,222,224,226,228,230,232,234,236,238,240,242,244,246,248, - 250,252,254,256,258,260,262,264,266,268,270,272,274,276,278,280, - 282,284,286,288,290,292,294,296,298,300,302,304,306,308,310,312, - 314,316,318,320,322,324,326,328,330,332,334,336,338,340,342,344, - 346,348,350,352,354,356,358,360,362,364,366,368,370,372,374,376, - 378,380,382,384,386,0,2,2,0,13,13,151,151,8,0,8,9,12,12,14,16,20, - 27,30,35,37,44,46,135,137,148,1923,0,388,1,0,0,0,2,390,1,0,0,0,4, - 398,1,0,0,0,6,403,1,0,0,0,8,409,1,0,0,0,10,414,1,0,0,0,12,487,1, - 0,0,0,14,493,1,0,0,0,16,498,1,0,0,0,18,503,1,0,0,0,20,508,1,0,0, - 0,22,513,1,0,0,0,24,518,1,0,0,0,26,523,1,0,0,0,28,528,1,0,0,0,30, - 533,1,0,0,0,32,538,1,0,0,0,34,543,1,0,0,0,36,548,1,0,0,0,38,553, - 1,0,0,0,40,558,1,0,0,0,42,563,1,0,0,0,44,568,1,0,0,0,46,573,1,0, - 0,0,48,578,1,0,0,0,50,583,1,0,0,0,52,588,1,0,0,0,54,593,1,0,0,0, - 56,598,1,0,0,0,58,603,1,0,0,0,60,608,1,0,0,0,62,613,1,0,0,0,64,617, - 1,0,0,0,66,637,1,0,0,0,68,659,1,0,0,0,70,680,1,0,0,0,72,693,1,0, - 0,0,74,704,1,0,0,0,76,723,1,0,0,0,78,781,1,0,0,0,80,791,1,0,0,0, - 82,824,1,0,0,0,84,834,1,0,0,0,86,863,1,0,0,0,88,879,1,0,0,0,90,921, - 1,0,0,0,92,935,1,0,0,0,94,945,1,0,0,0,96,978,1,0,0,0,98,995,1,0, - 0,0,100,1005,1,0,0,0,102,1030,1,0,0,0,104,1043,1,0,0,0,106,1055, - 1,0,0,0,108,1067,1,0,0,0,110,1076,1,0,0,0,112,1087,1,0,0,0,114,1102, - 1,0,0,0,116,1107,1,0,0,0,118,1112,1,0,0,0,120,1117,1,0,0,0,122,1122, - 1,0,0,0,124,1127,1,0,0,0,126,1132,1,0,0,0,128,1137,1,0,0,0,130,1142, - 1,0,0,0,132,1147,1,0,0,0,134,1152,1,0,0,0,136,1157,1,0,0,0,138,1162, - 1,0,0,0,140,1167,1,0,0,0,142,1172,1,0,0,0,144,1177,1,0,0,0,146,1182, - 1,0,0,0,148,1187,1,0,0,0,150,1192,1,0,0,0,152,1197,1,0,0,0,154,1202, - 1,0,0,0,156,1207,1,0,0,0,158,1212,1,0,0,0,160,1217,1,0,0,0,162,1222, - 1,0,0,0,164,1227,1,0,0,0,166,1232,1,0,0,0,168,1237,1,0,0,0,170,1242, - 1,0,0,0,172,1247,1,0,0,0,174,1252,1,0,0,0,176,1257,1,0,0,0,178,1262, - 1,0,0,0,180,1267,1,0,0,0,182,1272,1,0,0,0,184,1277,1,0,0,0,186,1282, - 1,0,0,0,188,1287,1,0,0,0,190,1292,1,0,0,0,192,1297,1,0,0,0,194,1302, - 1,0,0,0,196,1307,1,0,0,0,198,1312,1,0,0,0,200,1317,1,0,0,0,202,1322, - 1,0,0,0,204,1327,1,0,0,0,206,1332,1,0,0,0,208,1344,1,0,0,0,210,1349, - 1,0,0,0,212,1354,1,0,0,0,214,1359,1,0,0,0,216,1364,1,0,0,0,218,1369, - 1,0,0,0,220,1374,1,0,0,0,222,1379,1,0,0,0,224,1384,1,0,0,0,226,1410, - 1,0,0,0,228,1412,1,0,0,0,230,1422,1,0,0,0,232,1427,1,0,0,0,234,1432, - 1,0,0,0,236,1437,1,0,0,0,238,1442,1,0,0,0,240,1447,1,0,0,0,242,1452, - 1,0,0,0,244,1457,1,0,0,0,246,1462,1,0,0,0,248,1467,1,0,0,0,250,1472, - 1,0,0,0,252,1477,1,0,0,0,254,1482,1,0,0,0,256,1487,1,0,0,0,258,1492, - 1,0,0,0,260,1497,1,0,0,0,262,1502,1,0,0,0,264,1507,1,0,0,0,266,1512, - 1,0,0,0,268,1517,1,0,0,0,270,1522,1,0,0,0,272,1527,1,0,0,0,274,1532, - 1,0,0,0,276,1565,1,0,0,0,278,1570,1,0,0,0,280,1575,1,0,0,0,282,1580, - 1,0,0,0,284,1585,1,0,0,0,286,1590,1,0,0,0,288,1595,1,0,0,0,290,1600, - 1,0,0,0,292,1612,1,0,0,0,294,1642,1,0,0,0,296,1647,1,0,0,0,298,1652, - 1,0,0,0,300,1657,1,0,0,0,302,1662,1,0,0,0,304,1667,1,0,0,0,306,1672, - 1,0,0,0,308,1677,1,0,0,0,310,1682,1,0,0,0,312,1687,1,0,0,0,314,1692, - 1,0,0,0,316,1697,1,0,0,0,318,1702,1,0,0,0,320,1719,1,0,0,0,322,1721, - 1,0,0,0,324,1726,1,0,0,0,326,1731,1,0,0,0,328,1736,1,0,0,0,330,1741, - 1,0,0,0,332,1746,1,0,0,0,334,1751,1,0,0,0,336,1756,1,0,0,0,338,1761, - 1,0,0,0,340,1766,1,0,0,0,342,1771,1,0,0,0,344,1776,1,0,0,0,346,1781, - 1,0,0,0,348,1786,1,0,0,0,350,1791,1,0,0,0,352,1796,1,0,0,0,354,1808, - 1,0,0,0,356,1813,1,0,0,0,358,1818,1,0,0,0,360,1826,1,0,0,0,362,1829, - 1,0,0,0,364,1882,1,0,0,0,366,1884,1,0,0,0,368,1889,1,0,0,0,370,1894, - 1,0,0,0,372,1899,1,0,0,0,374,1911,1,0,0,0,376,1923,1,0,0,0,378,1928, - 1,0,0,0,380,1933,1,0,0,0,382,1944,1,0,0,0,384,1949,1,0,0,0,386,1951, - 1,0,0,0,388,389,3,2,1,0,389,1,1,0,0,0,390,391,5,1,0,0,391,392,3, - 4,2,0,392,393,3,6,3,0,393,394,3,8,4,0,394,395,3,10,5,0,395,396,3, - 12,6,0,396,397,5,2,0,0,397,3,1,0,0,0,398,399,5,8,0,0,399,400,5,3, - 0,0,400,401,5,13,0,0,401,402,5,4,0,0,402,5,1,0,0,0,403,404,5,9,0, - 0,404,405,5,3,0,0,405,406,5,1,0,0,406,407,5,2,0,0,407,408,5,4,0, - 0,408,7,1,0,0,0,409,410,5,14,0,0,410,411,5,3,0,0,411,412,5,13,0, - 0,412,413,5,4,0,0,413,9,1,0,0,0,414,415,5,15,0,0,415,416,5,3,0,0, - 416,418,5,1,0,0,417,419,3,14,7,0,418,417,1,0,0,0,418,419,1,0,0,0, - 419,421,1,0,0,0,420,422,3,16,8,0,421,420,1,0,0,0,421,422,1,0,0,0, - 422,424,1,0,0,0,423,425,3,18,9,0,424,423,1,0,0,0,424,425,1,0,0,0, - 425,427,1,0,0,0,426,428,3,20,10,0,427,426,1,0,0,0,427,428,1,0,0, - 0,428,430,1,0,0,0,429,431,3,22,11,0,430,429,1,0,0,0,430,431,1,0, - 0,0,431,433,1,0,0,0,432,434,3,24,12,0,433,432,1,0,0,0,433,434,1, - 0,0,0,434,436,1,0,0,0,435,437,3,26,13,0,436,435,1,0,0,0,436,437, - 1,0,0,0,437,439,1,0,0,0,438,440,3,28,14,0,439,438,1,0,0,0,439,440, - 1,0,0,0,440,441,1,0,0,0,441,443,3,30,15,0,442,444,3,32,16,0,443, - 442,1,0,0,0,443,444,1,0,0,0,444,446,1,0,0,0,445,447,3,36,18,0,446, - 445,1,0,0,0,446,447,1,0,0,0,447,449,1,0,0,0,448,450,3,34,17,0,449, - 448,1,0,0,0,449,450,1,0,0,0,450,451,1,0,0,0,451,453,3,38,19,0,452, - 454,3,40,20,0,453,452,1,0,0,0,453,454,1,0,0,0,454,456,1,0,0,0,455, - 457,3,42,21,0,456,455,1,0,0,0,456,457,1,0,0,0,457,459,1,0,0,0,458, - 460,3,44,22,0,459,458,1,0,0,0,459,460,1,0,0,0,460,462,1,0,0,0,461, - 463,3,46,23,0,462,461,1,0,0,0,462,463,1,0,0,0,463,465,1,0,0,0,464, - 466,3,48,24,0,465,464,1,0,0,0,465,466,1,0,0,0,466,468,1,0,0,0,467, - 469,3,50,25,0,468,467,1,0,0,0,468,469,1,0,0,0,469,471,1,0,0,0,470, - 472,3,52,26,0,471,470,1,0,0,0,471,472,1,0,0,0,472,473,1,0,0,0,473, - 474,3,54,27,0,474,476,3,56,28,0,475,477,3,58,29,0,476,475,1,0,0, - 0,476,477,1,0,0,0,477,479,1,0,0,0,478,480,3,60,30,0,479,478,1,0, - 0,0,479,480,1,0,0,0,480,482,1,0,0,0,481,483,3,62,31,0,482,481,1, - 0,0,0,482,483,1,0,0,0,483,484,1,0,0,0,484,485,5,2,0,0,485,486,5, - 4,0,0,486,11,1,0,0,0,487,488,5,16,0,0,488,489,5,3,0,0,489,490,5, - 149,0,0,490,491,5,4,0,0,491,13,1,0,0,0,492,494,3,64,32,0,493,492, - 1,0,0,0,494,495,1,0,0,0,495,493,1,0,0,0,495,496,1,0,0,0,496,15,1, - 0,0,0,497,499,3,66,33,0,498,497,1,0,0,0,499,500,1,0,0,0,500,498, - 1,0,0,0,500,501,1,0,0,0,501,17,1,0,0,0,502,504,3,68,34,0,503,502, - 1,0,0,0,504,505,1,0,0,0,505,503,1,0,0,0,505,506,1,0,0,0,506,19,1, - 0,0,0,507,509,3,70,35,0,508,507,1,0,0,0,509,510,1,0,0,0,510,508, - 1,0,0,0,510,511,1,0,0,0,511,21,1,0,0,0,512,514,3,72,36,0,513,512, - 1,0,0,0,514,515,1,0,0,0,515,513,1,0,0,0,515,516,1,0,0,0,516,23,1, - 0,0,0,517,519,3,74,37,0,518,517,1,0,0,0,519,520,1,0,0,0,520,518, - 1,0,0,0,520,521,1,0,0,0,521,25,1,0,0,0,522,524,3,76,38,0,523,522, - 1,0,0,0,524,525,1,0,0,0,525,523,1,0,0,0,525,526,1,0,0,0,526,27,1, - 0,0,0,527,529,3,78,39,0,528,527,1,0,0,0,529,530,1,0,0,0,530,528, - 1,0,0,0,530,531,1,0,0,0,531,29,1,0,0,0,532,534,3,80,40,0,533,532, - 1,0,0,0,534,535,1,0,0,0,535,533,1,0,0,0,535,536,1,0,0,0,536,31,1, - 0,0,0,537,539,3,82,41,0,538,537,1,0,0,0,539,540,1,0,0,0,540,538, - 1,0,0,0,540,541,1,0,0,0,541,33,1,0,0,0,542,544,3,84,42,0,543,542, - 1,0,0,0,544,545,1,0,0,0,545,543,1,0,0,0,545,546,1,0,0,0,546,35,1, - 0,0,0,547,549,3,86,43,0,548,547,1,0,0,0,549,550,1,0,0,0,550,548, - 1,0,0,0,550,551,1,0,0,0,551,37,1,0,0,0,552,554,3,88,44,0,553,552, - 1,0,0,0,554,555,1,0,0,0,555,553,1,0,0,0,555,556,1,0,0,0,556,39,1, - 0,0,0,557,559,3,90,45,0,558,557,1,0,0,0,559,560,1,0,0,0,560,558, - 1,0,0,0,560,561,1,0,0,0,561,41,1,0,0,0,562,564,3,92,46,0,563,562, - 1,0,0,0,564,565,1,0,0,0,565,563,1,0,0,0,565,566,1,0,0,0,566,43,1, - 0,0,0,567,569,3,94,47,0,568,567,1,0,0,0,569,570,1,0,0,0,570,568, - 1,0,0,0,570,571,1,0,0,0,571,45,1,0,0,0,572,574,3,96,48,0,573,572, - 1,0,0,0,574,575,1,0,0,0,575,573,1,0,0,0,575,576,1,0,0,0,576,47,1, - 0,0,0,577,579,3,98,49,0,578,577,1,0,0,0,579,580,1,0,0,0,580,578, - 1,0,0,0,580,581,1,0,0,0,581,49,1,0,0,0,582,584,3,100,50,0,583,582, - 1,0,0,0,584,585,1,0,0,0,585,583,1,0,0,0,585,586,1,0,0,0,586,51,1, - 0,0,0,587,589,3,102,51,0,588,587,1,0,0,0,589,590,1,0,0,0,590,588, - 1,0,0,0,590,591,1,0,0,0,591,53,1,0,0,0,592,594,3,104,52,0,593,592, - 1,0,0,0,594,595,1,0,0,0,595,593,1,0,0,0,595,596,1,0,0,0,596,55,1, - 0,0,0,597,599,3,106,53,0,598,597,1,0,0,0,599,600,1,0,0,0,600,598, - 1,0,0,0,600,601,1,0,0,0,601,57,1,0,0,0,602,604,3,108,54,0,603,602, - 1,0,0,0,604,605,1,0,0,0,605,603,1,0,0,0,605,606,1,0,0,0,606,59,1, - 0,0,0,607,609,3,110,55,0,608,607,1,0,0,0,609,610,1,0,0,0,610,608, - 1,0,0,0,610,611,1,0,0,0,611,61,1,0,0,0,612,614,3,112,56,0,613,612, - 1,0,0,0,614,615,1,0,0,0,615,613,1,0,0,0,615,616,1,0,0,0,616,63,1, - 0,0,0,617,618,5,149,0,0,618,619,5,3,0,0,619,620,5,1,0,0,620,621, - 3,114,57,0,621,622,3,230,115,0,622,624,3,232,116,0,623,625,3,352, - 176,0,624,623,1,0,0,0,624,625,1,0,0,0,625,627,1,0,0,0,626,628,3, - 180,90,0,627,626,1,0,0,0,627,628,1,0,0,0,628,629,1,0,0,0,629,630, - 3,244,122,0,630,632,3,212,106,0,631,633,3,246,123,0,632,631,1,0, - 0,0,632,633,1,0,0,0,633,634,1,0,0,0,634,635,5,2,0,0,635,636,5,4, - 0,0,636,65,1,0,0,0,637,638,5,149,0,0,638,639,5,3,0,0,639,640,5,1, - 0,0,640,642,3,116,58,0,641,643,3,166,83,0,642,641,1,0,0,0,642,643, - 1,0,0,0,643,645,1,0,0,0,644,646,3,196,98,0,645,644,1,0,0,0,645,646, - 1,0,0,0,646,648,1,0,0,0,647,649,3,198,99,0,648,647,1,0,0,0,648,649, - 1,0,0,0,649,651,1,0,0,0,650,652,3,168,84,0,651,650,1,0,0,0,651,652, - 1,0,0,0,652,654,1,0,0,0,653,655,3,372,186,0,654,653,1,0,0,0,654, - 655,1,0,0,0,655,656,1,0,0,0,656,657,5,2,0,0,657,658,5,4,0,0,658, - 67,1,0,0,0,659,660,5,149,0,0,660,661,5,3,0,0,661,662,5,1,0,0,662, - 663,3,118,59,0,663,665,3,260,130,0,664,666,3,262,131,0,665,664,1, - 0,0,0,665,666,1,0,0,0,666,667,1,0,0,0,667,668,3,346,173,0,668,669, - 3,264,132,0,669,670,3,266,133,0,670,672,3,268,134,0,671,673,3,270, - 135,0,672,671,1,0,0,0,672,673,1,0,0,0,673,675,1,0,0,0,674,676,3, - 272,136,0,675,674,1,0,0,0,675,676,1,0,0,0,676,677,1,0,0,0,677,678, - 5,2,0,0,678,679,5,4,0,0,679,69,1,0,0,0,680,681,5,149,0,0,681,682, - 5,3,0,0,682,683,5,1,0,0,683,685,3,120,60,0,684,686,3,352,176,0,685, - 684,1,0,0,0,685,686,1,0,0,0,686,688,1,0,0,0,687,689,3,212,106,0, - 688,687,1,0,0,0,688,689,1,0,0,0,689,690,1,0,0,0,690,691,5,2,0,0, - 691,692,5,4,0,0,692,71,1,0,0,0,693,694,5,149,0,0,694,695,5,3,0,0, - 695,696,5,1,0,0,696,697,3,122,61,0,697,698,3,170,85,0,698,699,3, - 172,86,0,699,700,3,174,87,0,700,701,3,176,88,0,701,702,5,2,0,0,702, - 703,5,4,0,0,703,73,1,0,0,0,704,705,5,149,0,0,705,706,5,3,0,0,706, - 707,5,1,0,0,707,708,3,124,62,0,708,710,3,218,109,0,709,711,3,356, - 178,0,710,709,1,0,0,0,710,711,1,0,0,0,711,712,1,0,0,0,712,714,3, - 358,179,0,713,715,3,220,110,0,714,713,1,0,0,0,714,715,1,0,0,0,715, - 717,1,0,0,0,716,718,3,212,106,0,717,716,1,0,0,0,717,718,1,0,0,0, - 718,719,1,0,0,0,719,720,3,222,111,0,720,721,5,2,0,0,721,722,5,4, - 0,0,722,75,1,0,0,0,723,724,5,149,0,0,724,725,5,3,0,0,725,726,5,1, - 0,0,726,728,3,126,63,0,727,729,3,180,90,0,728,727,1,0,0,0,728,729, - 1,0,0,0,729,731,1,0,0,0,730,732,3,178,89,0,731,730,1,0,0,0,731,732, - 1,0,0,0,732,734,1,0,0,0,733,735,3,182,91,0,734,733,1,0,0,0,734,735, - 1,0,0,0,735,737,1,0,0,0,736,738,3,178,89,0,737,736,1,0,0,0,737,738, - 1,0,0,0,738,740,1,0,0,0,739,741,3,186,93,0,740,739,1,0,0,0,740,741, - 1,0,0,0,741,743,1,0,0,0,742,744,3,188,94,0,743,742,1,0,0,0,743,744, - 1,0,0,0,744,746,1,0,0,0,745,747,3,184,92,0,746,745,1,0,0,0,746,747, - 1,0,0,0,747,749,1,0,0,0,748,750,3,252,126,0,749,748,1,0,0,0,749, - 750,1,0,0,0,750,752,1,0,0,0,751,753,3,212,106,0,752,751,1,0,0,0, - 752,753,1,0,0,0,753,755,1,0,0,0,754,756,3,214,107,0,755,754,1,0, - 0,0,755,756,1,0,0,0,756,758,1,0,0,0,757,759,3,258,129,0,758,757, - 1,0,0,0,758,759,1,0,0,0,759,761,1,0,0,0,760,762,3,256,128,0,761, - 760,1,0,0,0,761,762,1,0,0,0,762,764,1,0,0,0,763,765,3,216,108,0, - 764,763,1,0,0,0,764,765,1,0,0,0,765,767,1,0,0,0,766,768,3,190,95, - 0,767,766,1,0,0,0,767,768,1,0,0,0,768,770,1,0,0,0,769,771,3,254, - 127,0,770,769,1,0,0,0,770,771,1,0,0,0,771,773,1,0,0,0,772,774,3, - 192,96,0,773,772,1,0,0,0,773,774,1,0,0,0,774,776,1,0,0,0,775,777, - 3,194,97,0,776,775,1,0,0,0,776,777,1,0,0,0,777,778,1,0,0,0,778,779, - 5,2,0,0,779,780,5,4,0,0,780,77,1,0,0,0,781,782,5,149,0,0,782,783, - 5,3,0,0,783,784,5,1,0,0,784,785,3,128,64,0,785,786,3,218,109,0,786, - 787,3,220,110,0,787,788,3,222,111,0,788,789,5,2,0,0,789,790,5,4, - 0,0,790,79,1,0,0,0,791,792,5,149,0,0,792,793,5,3,0,0,793,794,5,1, - 0,0,794,795,3,130,65,0,795,797,3,200,100,0,796,798,3,180,90,0,797, - 796,1,0,0,0,797,798,1,0,0,0,798,800,1,0,0,0,799,801,3,188,94,0,800, - 799,1,0,0,0,800,801,1,0,0,0,801,803,1,0,0,0,802,804,3,186,93,0,803, - 802,1,0,0,0,803,804,1,0,0,0,804,806,1,0,0,0,805,807,3,212,106,0, - 806,805,1,0,0,0,806,807,1,0,0,0,807,809,1,0,0,0,808,810,3,214,107, - 0,809,808,1,0,0,0,809,810,1,0,0,0,810,811,1,0,0,0,811,813,3,216, - 108,0,812,814,3,190,95,0,813,812,1,0,0,0,813,814,1,0,0,0,814,816, - 1,0,0,0,815,817,3,192,96,0,816,815,1,0,0,0,816,817,1,0,0,0,817,819, - 1,0,0,0,818,820,3,194,97,0,819,818,1,0,0,0,819,820,1,0,0,0,820,821, - 1,0,0,0,821,822,5,2,0,0,822,823,5,4,0,0,823,81,1,0,0,0,824,825,5, - 149,0,0,825,826,5,3,0,0,826,827,5,1,0,0,827,828,3,132,66,0,828,829, - 3,218,109,0,829,830,3,220,110,0,830,831,3,222,111,0,831,832,5,2, - 0,0,832,833,5,4,0,0,833,83,1,0,0,0,834,835,5,149,0,0,835,836,5,3, - 0,0,836,837,5,1,0,0,837,838,3,134,67,0,838,839,3,230,115,0,839,840, - 3,232,116,0,840,842,3,234,117,0,841,843,3,180,90,0,842,841,1,0,0, - 0,842,843,1,0,0,0,843,845,1,0,0,0,844,846,3,352,176,0,845,844,1, - 0,0,0,845,846,1,0,0,0,846,847,1,0,0,0,847,848,3,244,122,0,848,850, - 3,212,106,0,849,851,3,202,101,0,850,849,1,0,0,0,850,851,1,0,0,0, - 851,853,1,0,0,0,852,854,3,210,105,0,853,852,1,0,0,0,853,854,1,0, - 0,0,854,855,1,0,0,0,855,857,3,246,123,0,856,858,3,248,124,0,857, - 856,1,0,0,0,857,858,1,0,0,0,858,859,1,0,0,0,859,860,3,250,125,0, - 860,861,5,2,0,0,861,862,5,4,0,0,862,85,1,0,0,0,863,864,5,149,0,0, - 864,865,5,3,0,0,865,866,5,1,0,0,866,867,3,136,68,0,867,868,3,236, - 118,0,868,869,3,230,115,0,869,870,3,232,116,0,870,871,3,238,119, - 0,871,872,3,240,120,0,872,873,3,244,122,0,873,874,3,212,106,0,874, - 875,3,242,121,0,875,876,3,246,123,0,876,877,5,2,0,0,877,878,5,4, - 0,0,878,87,1,0,0,0,879,880,5,149,0,0,880,881,5,3,0,0,881,882,5,1, - 0,0,882,884,3,138,69,0,883,885,3,274,137,0,884,883,1,0,0,0,884,885, - 1,0,0,0,885,886,1,0,0,0,886,888,3,230,115,0,887,889,3,352,176,0, - 888,887,1,0,0,0,888,889,1,0,0,0,889,891,1,0,0,0,890,892,3,354,177, - 0,891,890,1,0,0,0,891,892,1,0,0,0,892,894,1,0,0,0,893,895,3,304, - 152,0,894,893,1,0,0,0,894,895,1,0,0,0,895,897,1,0,0,0,896,898,3, - 306,153,0,897,896,1,0,0,0,897,898,1,0,0,0,898,899,1,0,0,0,899,901, - 3,308,154,0,900,902,3,310,155,0,901,900,1,0,0,0,901,902,1,0,0,0, - 902,903,1,0,0,0,903,905,3,312,156,0,904,906,3,316,158,0,905,904, - 1,0,0,0,905,906,1,0,0,0,906,908,1,0,0,0,907,909,3,314,157,0,908, - 907,1,0,0,0,908,909,1,0,0,0,909,910,1,0,0,0,910,912,3,318,159,0, - 911,913,3,320,160,0,912,911,1,0,0,0,912,913,1,0,0,0,913,915,1,0, - 0,0,914,916,3,322,161,0,915,914,1,0,0,0,915,916,1,0,0,0,916,917, - 1,0,0,0,917,918,3,324,162,0,918,919,5,2,0,0,919,920,5,4,0,0,920, - 89,1,0,0,0,921,922,5,149,0,0,922,923,5,3,0,0,923,924,5,1,0,0,924, - 925,3,140,70,0,925,927,3,346,173,0,926,928,3,212,106,0,927,926,1, - 0,0,0,927,928,1,0,0,0,928,929,1,0,0,0,929,930,3,214,107,0,930,931, - 3,348,174,0,931,932,3,216,108,0,932,933,5,2,0,0,933,934,5,4,0,0, - 934,91,1,0,0,0,935,936,5,149,0,0,936,937,5,3,0,0,937,938,5,1,0,0, - 938,939,3,142,71,0,939,940,3,218,109,0,940,941,3,220,110,0,941,942, - 3,222,111,0,942,943,5,2,0,0,943,944,5,4,0,0,944,93,1,0,0,0,945,946, - 5,149,0,0,946,947,5,3,0,0,947,948,5,1,0,0,948,950,3,144,72,0,949, - 951,3,164,82,0,950,949,1,0,0,0,950,951,1,0,0,0,951,952,1,0,0,0,952, - 953,3,218,109,0,953,955,3,220,110,0,954,956,3,326,163,0,955,954, - 1,0,0,0,955,956,1,0,0,0,956,958,1,0,0,0,957,959,3,328,164,0,958, - 957,1,0,0,0,958,959,1,0,0,0,959,961,1,0,0,0,960,962,3,212,106,0, - 961,960,1,0,0,0,961,962,1,0,0,0,962,964,1,0,0,0,963,965,3,330,165, - 0,964,963,1,0,0,0,964,965,1,0,0,0,965,967,1,0,0,0,966,968,3,332, - 166,0,967,966,1,0,0,0,967,968,1,0,0,0,968,969,1,0,0,0,969,970,3, - 222,111,0,970,971,3,334,167,0,971,973,3,338,169,0,972,974,3,340, - 170,0,973,972,1,0,0,0,973,974,1,0,0,0,974,975,1,0,0,0,975,976,5, - 2,0,0,976,977,5,4,0,0,977,95,1,0,0,0,978,979,5,149,0,0,979,980,5, - 3,0,0,980,981,5,1,0,0,981,982,3,146,73,0,982,983,3,218,109,0,983, - 984,3,220,110,0,984,985,3,326,163,0,985,986,3,328,164,0,986,987, - 3,212,106,0,987,988,3,330,165,0,988,989,3,332,166,0,989,990,3,222, - 111,0,990,991,3,334,167,0,991,992,3,336,168,0,992,993,5,2,0,0,993, - 994,5,4,0,0,994,97,1,0,0,0,995,996,5,149,0,0,996,997,5,3,0,0,997, - 998,5,1,0,0,998,999,3,148,74,0,999,1000,3,218,109,0,1000,1001,3, - 220,110,0,1001,1002,3,222,111,0,1002,1003,5,2,0,0,1003,1004,5,4, - 0,0,1004,99,1,0,0,0,1005,1006,5,149,0,0,1006,1007,5,3,0,0,1007,1008, - 5,1,0,0,1008,1010,3,150,75,0,1009,1011,3,212,106,0,1010,1009,1,0, - 0,0,1010,1011,1,0,0,0,1011,1013,1,0,0,0,1012,1014,3,196,98,0,1013, - 1012,1,0,0,0,1013,1014,1,0,0,0,1014,1016,1,0,0,0,1015,1017,3,198, - 99,0,1016,1015,1,0,0,0,1016,1017,1,0,0,0,1017,1019,1,0,0,0,1018, - 1020,3,168,84,0,1019,1018,1,0,0,0,1019,1020,1,0,0,0,1020,1022,1, - 0,0,0,1021,1023,3,342,171,0,1022,1021,1,0,0,0,1022,1023,1,0,0,0, - 1023,1025,1,0,0,0,1024,1026,3,344,172,0,1025,1024,1,0,0,0,1025,1026, - 1,0,0,0,1026,1027,1,0,0,0,1027,1028,5,2,0,0,1028,1029,5,4,0,0,1029, - 101,1,0,0,0,1030,1031,5,149,0,0,1031,1032,5,3,0,0,1032,1033,5,1, - 0,0,1033,1034,3,152,76,0,1034,1035,3,200,100,0,1035,1037,3,212,106, - 0,1036,1038,3,214,107,0,1037,1036,1,0,0,0,1037,1038,1,0,0,0,1038, - 1039,1,0,0,0,1039,1040,3,216,108,0,1040,1041,5,2,0,0,1041,1042,5, - 4,0,0,1042,103,1,0,0,0,1043,1044,5,149,0,0,1044,1045,5,3,0,0,1045, - 1046,5,1,0,0,1046,1048,3,154,77,0,1047,1049,3,350,175,0,1048,1047, - 1,0,0,0,1048,1049,1,0,0,0,1049,1050,1,0,0,0,1050,1051,3,352,176, - 0,1051,1052,3,212,106,0,1052,1053,5,2,0,0,1053,1054,5,4,0,0,1054, - 105,1,0,0,0,1055,1056,5,149,0,0,1056,1057,5,3,0,0,1057,1058,5,1, - 0,0,1058,1059,3,156,78,0,1059,1060,3,366,183,0,1060,1062,3,368,184, - 0,1061,1063,3,370,185,0,1062,1061,1,0,0,0,1062,1063,1,0,0,0,1063, - 1064,1,0,0,0,1064,1065,5,2,0,0,1065,1066,5,4,0,0,1066,107,1,0,0, - 0,1067,1068,5,149,0,0,1068,1069,5,3,0,0,1069,1070,5,1,0,0,1070,1071, - 3,158,79,0,1071,1072,3,204,102,0,1072,1073,3,206,103,0,1073,1074, - 5,2,0,0,1074,1075,5,4,0,0,1075,109,1,0,0,0,1076,1077,5,149,0,0,1077, - 1078,5,3,0,0,1078,1079,5,1,0,0,1079,1081,3,160,80,0,1080,1082,3, - 208,104,0,1081,1080,1,0,0,0,1081,1082,1,0,0,0,1082,1083,1,0,0,0, - 1083,1084,3,246,123,0,1084,1085,5,2,0,0,1085,1086,5,4,0,0,1086,111, - 1,0,0,0,1087,1088,5,149,0,0,1088,1089,5,3,0,0,1089,1090,5,1,0,0, - 1090,1091,3,162,81,0,1091,1092,3,200,100,0,1092,1094,3,376,188,0, - 1093,1095,3,212,106,0,1094,1093,1,0,0,0,1094,1095,1,0,0,0,1095,1096, - 1,0,0,0,1096,1097,3,214,107,0,1097,1098,3,216,108,0,1098,1099,3, - 378,189,0,1099,1100,5,2,0,0,1100,1101,5,4,0,0,1101,113,1,0,0,0,1102, - 1103,5,12,0,0,1103,1104,5,3,0,0,1104,1105,5,20,0,0,1105,1106,5,4, - 0,0,1106,115,1,0,0,0,1107,1108,5,12,0,0,1108,1109,5,3,0,0,1109,1110, - 5,21,0,0,1110,1111,5,4,0,0,1111,117,1,0,0,0,1112,1113,5,12,0,0,1113, - 1114,5,3,0,0,1114,1115,5,22,0,0,1115,1116,5,4,0,0,1116,119,1,0,0, - 0,1117,1118,5,12,0,0,1118,1119,5,3,0,0,1119,1120,5,23,0,0,1120,1121, - 5,4,0,0,1121,121,1,0,0,0,1122,1123,5,12,0,0,1123,1124,5,3,0,0,1124, - 1125,5,24,0,0,1125,1126,5,4,0,0,1126,123,1,0,0,0,1127,1128,5,12, - 0,0,1128,1129,5,3,0,0,1129,1130,5,25,0,0,1130,1131,5,4,0,0,1131, - 125,1,0,0,0,1132,1133,5,12,0,0,1133,1134,5,3,0,0,1134,1135,5,26, - 0,0,1135,1136,5,4,0,0,1136,127,1,0,0,0,1137,1138,5,12,0,0,1138,1139, - 5,3,0,0,1139,1140,5,27,0,0,1140,1141,5,4,0,0,1141,129,1,0,0,0,1142, - 1143,5,12,0,0,1143,1144,5,3,0,0,1144,1145,5,28,0,0,1145,1146,5,4, - 0,0,1146,131,1,0,0,0,1147,1148,5,12,0,0,1148,1149,5,3,0,0,1149,1150, - 5,29,0,0,1150,1151,5,4,0,0,1151,133,1,0,0,0,1152,1153,5,12,0,0,1153, - 1154,5,3,0,0,1154,1155,5,30,0,0,1155,1156,5,4,0,0,1156,135,1,0,0, - 0,1157,1158,5,12,0,0,1158,1159,5,3,0,0,1159,1160,5,31,0,0,1160,1161, - 5,4,0,0,1161,137,1,0,0,0,1162,1163,5,12,0,0,1163,1164,5,3,0,0,1164, - 1165,5,32,0,0,1165,1166,5,4,0,0,1166,139,1,0,0,0,1167,1168,5,12, - 0,0,1168,1169,5,3,0,0,1169,1170,5,33,0,0,1170,1171,5,4,0,0,1171, - 141,1,0,0,0,1172,1173,5,12,0,0,1173,1174,5,3,0,0,1174,1175,5,34, - 0,0,1175,1176,5,4,0,0,1176,143,1,0,0,0,1177,1178,5,12,0,0,1178,1179, - 5,3,0,0,1179,1180,5,35,0,0,1180,1181,5,4,0,0,1181,145,1,0,0,0,1182, - 1183,5,12,0,0,1183,1184,5,3,0,0,1184,1185,5,36,0,0,1185,1186,5,4, - 0,0,1186,147,1,0,0,0,1187,1188,5,12,0,0,1188,1189,5,3,0,0,1189,1190, - 5,37,0,0,1190,1191,5,4,0,0,1191,149,1,0,0,0,1192,1193,5,12,0,0,1193, - 1194,5,3,0,0,1194,1195,5,38,0,0,1195,1196,5,4,0,0,1196,151,1,0,0, - 0,1197,1198,5,12,0,0,1198,1199,5,3,0,0,1199,1200,5,39,0,0,1200,1201, - 5,4,0,0,1201,153,1,0,0,0,1202,1203,5,12,0,0,1203,1204,5,3,0,0,1204, - 1205,5,40,0,0,1205,1206,5,4,0,0,1206,155,1,0,0,0,1207,1208,5,12, - 0,0,1208,1209,5,3,0,0,1209,1210,5,41,0,0,1210,1211,5,4,0,0,1211, - 157,1,0,0,0,1212,1213,5,12,0,0,1213,1214,5,3,0,0,1214,1215,5,42, - 0,0,1215,1216,5,4,0,0,1216,159,1,0,0,0,1217,1218,5,12,0,0,1218,1219, - 5,3,0,0,1219,1220,5,43,0,0,1220,1221,5,4,0,0,1221,161,1,0,0,0,1222, - 1223,5,12,0,0,1223,1224,5,3,0,0,1224,1225,5,44,0,0,1225,1226,5,4, - 0,0,1226,163,1,0,0,0,1227,1228,5,45,0,0,1228,1229,5,3,0,0,1229,1230, - 5,13,0,0,1230,1231,5,4,0,0,1231,165,1,0,0,0,1232,1233,5,46,0,0,1233, - 1234,5,3,0,0,1234,1235,5,149,0,0,1235,1236,5,4,0,0,1236,167,1,0, - 0,0,1237,1238,5,47,0,0,1238,1239,5,3,0,0,1239,1240,5,149,0,0,1240, - 1241,5,4,0,0,1241,169,1,0,0,0,1242,1243,5,48,0,0,1243,1244,5,3,0, - 0,1244,1245,5,149,0,0,1245,1246,5,4,0,0,1246,171,1,0,0,0,1247,1248, - 5,49,0,0,1248,1249,5,3,0,0,1249,1250,5,13,0,0,1250,1251,5,4,0,0, - 1251,173,1,0,0,0,1252,1253,5,50,0,0,1253,1254,5,3,0,0,1254,1255, - 5,149,0,0,1255,1256,5,4,0,0,1256,175,1,0,0,0,1257,1258,5,51,0,0, - 1258,1259,5,3,0,0,1259,1260,3,384,192,0,1260,1261,5,4,0,0,1261,177, - 1,0,0,0,1262,1263,5,52,0,0,1263,1264,5,3,0,0,1264,1265,5,13,0,0, - 1265,1266,5,4,0,0,1266,179,1,0,0,0,1267,1268,5,53,0,0,1268,1269, - 5,3,0,0,1269,1270,3,384,192,0,1270,1271,5,4,0,0,1271,181,1,0,0,0, - 1272,1273,5,54,0,0,1273,1274,5,3,0,0,1274,1275,3,384,192,0,1275, - 1276,5,4,0,0,1276,183,1,0,0,0,1277,1278,5,55,0,0,1278,1279,5,3,0, - 0,1279,1280,3,384,192,0,1280,1281,5,4,0,0,1281,185,1,0,0,0,1282, - 1283,5,56,0,0,1283,1284,5,3,0,0,1284,1285,5,13,0,0,1285,1286,5,4, - 0,0,1286,187,1,0,0,0,1287,1288,5,57,0,0,1288,1289,5,3,0,0,1289,1290, - 5,13,0,0,1290,1291,5,4,0,0,1291,189,1,0,0,0,1292,1293,5,58,0,0,1293, - 1294,5,3,0,0,1294,1295,5,13,0,0,1295,1296,5,4,0,0,1296,191,1,0,0, - 0,1297,1298,5,59,0,0,1298,1299,5,3,0,0,1299,1300,5,13,0,0,1300,1301, - 5,4,0,0,1301,193,1,0,0,0,1302,1303,5,60,0,0,1303,1304,5,3,0,0,1304, - 1305,5,13,0,0,1305,1306,5,4,0,0,1306,195,1,0,0,0,1307,1308,5,61, - 0,0,1308,1309,5,3,0,0,1309,1310,3,382,191,0,1310,1311,5,4,0,0,1311, - 197,1,0,0,0,1312,1313,5,62,0,0,1313,1314,5,3,0,0,1314,1315,3,226, - 113,0,1315,1316,5,4,0,0,1316,199,1,0,0,0,1317,1318,5,63,0,0,1318, - 1319,5,3,0,0,1319,1320,3,224,112,0,1320,1321,5,4,0,0,1321,201,1, - 0,0,0,1322,1323,5,64,0,0,1323,1324,5,3,0,0,1324,1325,3,382,191,0, - 1325,1326,5,4,0,0,1326,203,1,0,0,0,1327,1328,5,65,0,0,1328,1329, - 5,3,0,0,1329,1330,5,150,0,0,1330,1331,5,4,0,0,1331,205,1,0,0,0,1332, - 1333,5,66,0,0,1333,1334,5,3,0,0,1334,1338,5,1,0,0,1335,1337,3,364, - 182,0,1336,1335,1,0,0,0,1337,1340,1,0,0,0,1338,1336,1,0,0,0,1338, - 1339,1,0,0,0,1339,1341,1,0,0,0,1340,1338,1,0,0,0,1341,1342,5,2,0, - 0,1342,1343,5,4,0,0,1343,207,1,0,0,0,1344,1345,5,67,0,0,1345,1346, - 5,3,0,0,1346,1347,5,149,0,0,1347,1348,5,4,0,0,1348,209,1,0,0,0,1349, - 1350,5,68,0,0,1350,1351,5,3,0,0,1351,1352,3,224,112,0,1352,1353, - 5,4,0,0,1353,211,1,0,0,0,1354,1355,5,69,0,0,1355,1356,5,3,0,0,1356, - 1357,3,382,191,0,1357,1358,5,4,0,0,1358,213,1,0,0,0,1359,1360,5, - 70,0,0,1360,1361,5,3,0,0,1361,1362,3,384,192,0,1362,1363,5,4,0,0, - 1363,215,1,0,0,0,1364,1365,5,71,0,0,1365,1366,5,3,0,0,1366,1367, - 3,382,191,0,1367,1368,5,4,0,0,1368,217,1,0,0,0,1369,1370,5,72,0, - 0,1370,1371,5,3,0,0,1371,1372,5,13,0,0,1372,1373,5,4,0,0,1373,219, - 1,0,0,0,1374,1375,5,73,0,0,1375,1376,5,3,0,0,1376,1377,3,224,112, - 0,1377,1378,5,4,0,0,1378,221,1,0,0,0,1379,1380,5,74,0,0,1380,1381, - 5,3,0,0,1381,1382,5,13,0,0,1382,1383,5,4,0,0,1383,223,1,0,0,0,1384, - 1389,5,5,0,0,1385,1386,5,149,0,0,1386,1388,5,6,0,0,1387,1385,1,0, - 0,0,1388,1391,1,0,0,0,1389,1387,1,0,0,0,1389,1390,1,0,0,0,1390,1392, - 1,0,0,0,1391,1389,1,0,0,0,1392,1393,5,7,0,0,1393,225,1,0,0,0,1394, - 1395,5,5,0,0,1395,1411,5,7,0,0,1396,1397,5,5,0,0,1397,1402,3,384, - 192,0,1398,1399,5,6,0,0,1399,1401,3,384,192,0,1400,1398,1,0,0,0, - 1401,1404,1,0,0,0,1402,1400,1,0,0,0,1402,1403,1,0,0,0,1403,1406, - 1,0,0,0,1404,1402,1,0,0,0,1405,1407,5,6,0,0,1406,1405,1,0,0,0,1406, - 1407,1,0,0,0,1407,1408,1,0,0,0,1408,1409,5,7,0,0,1409,1411,1,0,0, - 0,1410,1394,1,0,0,0,1410,1396,1,0,0,0,1411,227,1,0,0,0,1412,1417, - 5,5,0,0,1413,1414,5,151,0,0,1414,1416,5,6,0,0,1415,1413,1,0,0,0, - 1416,1419,1,0,0,0,1417,1415,1,0,0,0,1417,1418,1,0,0,0,1418,1420, - 1,0,0,0,1419,1417,1,0,0,0,1420,1421,5,7,0,0,1421,229,1,0,0,0,1422, - 1423,5,75,0,0,1423,1424,5,3,0,0,1424,1425,5,149,0,0,1425,1426,5, - 4,0,0,1426,231,1,0,0,0,1427,1428,5,76,0,0,1428,1429,5,3,0,0,1429, - 1430,3,224,112,0,1430,1431,5,4,0,0,1431,233,1,0,0,0,1432,1433,5, - 77,0,0,1433,1434,5,3,0,0,1434,1435,3,224,112,0,1435,1436,5,4,0,0, - 1436,235,1,0,0,0,1437,1438,5,78,0,0,1438,1439,5,3,0,0,1439,1440, - 3,382,191,0,1440,1441,5,4,0,0,1441,237,1,0,0,0,1442,1443,5,79,0, - 0,1443,1444,5,3,0,0,1444,1445,3,382,191,0,1445,1446,5,4,0,0,1446, - 239,1,0,0,0,1447,1448,5,80,0,0,1448,1449,5,3,0,0,1449,1450,3,382, - 191,0,1450,1451,5,4,0,0,1451,241,1,0,0,0,1452,1453,5,81,0,0,1453, - 1454,5,3,0,0,1454,1455,5,13,0,0,1455,1456,5,4,0,0,1456,243,1,0,0, - 0,1457,1458,5,82,0,0,1458,1459,5,3,0,0,1459,1460,3,224,112,0,1460, - 1461,5,4,0,0,1461,245,1,0,0,0,1462,1463,5,83,0,0,1463,1464,5,3,0, - 0,1464,1465,3,384,192,0,1465,1466,5,4,0,0,1466,247,1,0,0,0,1467, - 1468,5,84,0,0,1468,1469,5,3,0,0,1469,1470,5,149,0,0,1470,1471,5, - 4,0,0,1471,249,1,0,0,0,1472,1473,5,85,0,0,1473,1474,5,3,0,0,1474, - 1475,5,150,0,0,1475,1476,5,4,0,0,1476,251,1,0,0,0,1477,1478,5,86, - 0,0,1478,1479,5,3,0,0,1479,1480,5,13,0,0,1480,1481,5,4,0,0,1481, - 253,1,0,0,0,1482,1483,5,87,0,0,1483,1484,5,3,0,0,1484,1485,3,384, - 192,0,1485,1486,5,4,0,0,1486,255,1,0,0,0,1487,1488,5,88,0,0,1488, - 1489,5,3,0,0,1489,1490,3,384,192,0,1490,1491,5,4,0,0,1491,257,1, - 0,0,0,1492,1493,5,89,0,0,1493,1494,5,3,0,0,1494,1495,5,13,0,0,1495, - 1496,5,4,0,0,1496,259,1,0,0,0,1497,1498,5,90,0,0,1498,1499,5,3,0, - 0,1499,1500,3,382,191,0,1500,1501,5,4,0,0,1501,261,1,0,0,0,1502, - 1503,5,91,0,0,1503,1504,5,3,0,0,1504,1505,3,382,191,0,1505,1506, - 5,4,0,0,1506,263,1,0,0,0,1507,1508,5,92,0,0,1508,1509,5,3,0,0,1509, - 1510,3,226,113,0,1510,1511,5,4,0,0,1511,265,1,0,0,0,1512,1513,5, - 93,0,0,1513,1514,5,3,0,0,1514,1515,5,13,0,0,1515,1516,5,4,0,0,1516, - 267,1,0,0,0,1517,1518,5,94,0,0,1518,1519,5,3,0,0,1519,1520,3,226, - 113,0,1520,1521,5,4,0,0,1521,269,1,0,0,0,1522,1523,5,95,0,0,1523, - 1524,5,3,0,0,1524,1525,5,13,0,0,1525,1526,5,4,0,0,1526,271,1,0,0, - 0,1527,1528,5,96,0,0,1528,1529,5,3,0,0,1529,1530,3,382,191,0,1530, - 1531,5,4,0,0,1531,273,1,0,0,0,1532,1533,5,97,0,0,1533,1534,5,3,0, - 0,1534,1536,5,1,0,0,1535,1537,3,282,141,0,1536,1535,1,0,0,0,1536, - 1537,1,0,0,0,1537,1539,1,0,0,0,1538,1540,3,380,190,0,1539,1538,1, - 0,0,0,1539,1540,1,0,0,0,1540,1542,1,0,0,0,1541,1543,3,278,139,0, - 1542,1541,1,0,0,0,1542,1543,1,0,0,0,1543,1545,1,0,0,0,1544,1546, - 3,276,138,0,1545,1544,1,0,0,0,1545,1546,1,0,0,0,1546,1548,1,0,0, - 0,1547,1549,3,280,140,0,1548,1547,1,0,0,0,1548,1549,1,0,0,0,1549, - 1551,1,0,0,0,1550,1552,3,284,142,0,1551,1550,1,0,0,0,1551,1552,1, - 0,0,0,1552,1554,1,0,0,0,1553,1555,3,286,143,0,1554,1553,1,0,0,0, - 1554,1555,1,0,0,0,1555,1557,1,0,0,0,1556,1558,3,288,144,0,1557,1556, - 1,0,0,0,1557,1558,1,0,0,0,1558,1560,1,0,0,0,1559,1561,3,290,145, - 0,1560,1559,1,0,0,0,1560,1561,1,0,0,0,1561,1562,1,0,0,0,1562,1563, - 5,2,0,0,1563,1564,5,4,0,0,1564,275,1,0,0,0,1565,1566,5,98,0,0,1566, - 1567,5,3,0,0,1567,1568,5,13,0,0,1568,1569,5,4,0,0,1569,277,1,0,0, - 0,1570,1571,5,99,0,0,1571,1572,5,3,0,0,1572,1573,5,151,0,0,1573, - 1574,5,4,0,0,1574,279,1,0,0,0,1575,1576,5,100,0,0,1576,1577,5,3, - 0,0,1577,1578,5,13,0,0,1578,1579,5,4,0,0,1579,281,1,0,0,0,1580,1581, - 5,101,0,0,1581,1582,5,3,0,0,1582,1583,7,0,0,0,1583,1584,5,4,0,0, - 1584,283,1,0,0,0,1585,1586,5,102,0,0,1586,1587,5,3,0,0,1587,1588, - 5,13,0,0,1588,1589,5,4,0,0,1589,285,1,0,0,0,1590,1591,5,103,0,0, - 1591,1592,5,3,0,0,1592,1593,5,13,0,0,1593,1594,5,4,0,0,1594,287, - 1,0,0,0,1595,1596,5,104,0,0,1596,1597,5,3,0,0,1597,1598,3,384,192, - 0,1598,1599,5,4,0,0,1599,289,1,0,0,0,1600,1601,5,105,0,0,1601,1602, - 5,3,0,0,1602,1606,5,1,0,0,1603,1605,3,292,146,0,1604,1603,1,0,0, - 0,1605,1608,1,0,0,0,1606,1604,1,0,0,0,1606,1607,1,0,0,0,1607,1609, - 1,0,0,0,1608,1606,1,0,0,0,1609,1610,5,2,0,0,1610,1611,5,4,0,0,1611, - 291,1,0,0,0,1612,1613,5,149,0,0,1613,1614,5,3,0,0,1614,1616,5,1, - 0,0,1615,1617,3,294,147,0,1616,1615,1,0,0,0,1616,1617,1,0,0,0,1617, - 1619,1,0,0,0,1618,1620,3,296,148,0,1619,1618,1,0,0,0,1619,1620,1, - 0,0,0,1620,1622,1,0,0,0,1621,1623,3,298,149,0,1622,1621,1,0,0,0, - 1622,1623,1,0,0,0,1623,1625,1,0,0,0,1624,1626,3,300,150,0,1625,1624, - 1,0,0,0,1625,1626,1,0,0,0,1626,1628,1,0,0,0,1627,1629,3,276,138, - 0,1628,1627,1,0,0,0,1628,1629,1,0,0,0,1629,1631,1,0,0,0,1630,1632, - 3,302,151,0,1631,1630,1,0,0,0,1631,1632,1,0,0,0,1632,1634,1,0,0, - 0,1633,1635,3,374,187,0,1634,1633,1,0,0,0,1634,1635,1,0,0,0,1635, - 1637,1,0,0,0,1636,1638,3,296,148,0,1637,1636,1,0,0,0,1637,1638,1, - 0,0,0,1638,1639,1,0,0,0,1639,1640,5,2,0,0,1640,1641,5,4,0,0,1641, - 293,1,0,0,0,1642,1643,5,106,0,0,1643,1644,5,3,0,0,1644,1645,5,151, - 0,0,1645,1646,5,4,0,0,1646,295,1,0,0,0,1647,1648,5,107,0,0,1648, - 1649,5,3,0,0,1649,1650,5,149,0,0,1650,1651,5,4,0,0,1651,297,1,0, - 0,0,1652,1653,5,108,0,0,1653,1654,5,3,0,0,1654,1655,3,382,191,0, - 1655,1656,5,4,0,0,1656,299,1,0,0,0,1657,1658,5,109,0,0,1658,1659, - 5,3,0,0,1659,1660,3,382,191,0,1660,1661,5,4,0,0,1661,301,1,0,0,0, - 1662,1663,5,110,0,0,1663,1664,5,3,0,0,1664,1665,5,151,0,0,1665,1666, - 5,4,0,0,1666,303,1,0,0,0,1667,1668,5,111,0,0,1668,1669,5,3,0,0,1669, - 1670,5,150,0,0,1670,1671,5,4,0,0,1671,305,1,0,0,0,1672,1673,5,112, - 0,0,1673,1674,5,3,0,0,1674,1675,5,151,0,0,1675,1676,5,4,0,0,1676, - 307,1,0,0,0,1677,1678,5,113,0,0,1678,1679,5,3,0,0,1679,1680,5,13, - 0,0,1680,1681,5,4,0,0,1681,309,1,0,0,0,1682,1683,5,114,0,0,1683, - 1684,5,3,0,0,1684,1685,3,226,113,0,1685,1686,5,4,0,0,1686,311,1, - 0,0,0,1687,1688,5,115,0,0,1688,1689,5,3,0,0,1689,1690,5,149,0,0, - 1690,1691,5,4,0,0,1691,313,1,0,0,0,1692,1693,5,116,0,0,1693,1694, - 5,3,0,0,1694,1695,5,149,0,0,1695,1696,5,4,0,0,1696,315,1,0,0,0,1697, - 1698,5,117,0,0,1698,1699,5,3,0,0,1699,1700,3,224,112,0,1700,1701, - 5,4,0,0,1701,317,1,0,0,0,1702,1703,5,118,0,0,1703,1704,5,3,0,0,1704, - 1705,3,382,191,0,1705,1706,5,4,0,0,1706,319,1,0,0,0,1707,1708,5, - 119,0,0,1708,1709,5,3,0,0,1709,1710,3,384,192,0,1710,1711,5,4,0, - 0,1711,1720,1,0,0,0,1712,1713,5,119,0,0,1713,1714,5,3,0,0,1714,1715, - 5,5,0,0,1715,1716,3,360,180,0,1716,1717,5,7,0,0,1717,1718,5,4,0, - 0,1718,1720,1,0,0,0,1719,1707,1,0,0,0,1719,1712,1,0,0,0,1720,321, - 1,0,0,0,1721,1722,5,120,0,0,1722,1723,5,3,0,0,1723,1724,3,382,191, - 0,1724,1725,5,4,0,0,1725,323,1,0,0,0,1726,1727,5,121,0,0,1727,1728, - 5,3,0,0,1728,1729,3,224,112,0,1729,1730,5,4,0,0,1730,325,1,0,0,0, - 1731,1732,5,122,0,0,1732,1733,5,3,0,0,1733,1734,3,226,113,0,1734, - 1735,5,4,0,0,1735,327,1,0,0,0,1736,1737,5,123,0,0,1737,1738,5,3, - 0,0,1738,1739,3,226,113,0,1739,1740,5,4,0,0,1740,329,1,0,0,0,1741, - 1742,5,124,0,0,1742,1743,5,3,0,0,1743,1744,3,226,113,0,1744,1745, - 5,4,0,0,1745,331,1,0,0,0,1746,1747,5,125,0,0,1747,1748,5,3,0,0,1748, - 1749,3,226,113,0,1749,1750,5,4,0,0,1750,333,1,0,0,0,1751,1752,5, - 126,0,0,1752,1753,5,3,0,0,1753,1754,3,382,191,0,1754,1755,5,4,0, - 0,1755,335,1,0,0,0,1756,1757,5,127,0,0,1757,1758,5,3,0,0,1758,1759, - 5,150,0,0,1759,1760,5,4,0,0,1760,337,1,0,0,0,1761,1762,5,128,0,0, - 1762,1763,5,3,0,0,1763,1764,3,382,191,0,1764,1765,5,4,0,0,1765,339, - 1,0,0,0,1766,1767,5,129,0,0,1767,1768,5,3,0,0,1768,1769,5,13,0,0, - 1769,1770,5,4,0,0,1770,341,1,0,0,0,1771,1772,5,130,0,0,1772,1773, - 5,3,0,0,1773,1774,5,149,0,0,1774,1775,5,4,0,0,1775,343,1,0,0,0,1776, - 1777,5,131,0,0,1777,1778,5,3,0,0,1778,1779,5,149,0,0,1779,1780,5, - 4,0,0,1780,345,1,0,0,0,1781,1782,5,132,0,0,1782,1783,5,3,0,0,1783, - 1784,3,384,192,0,1784,1785,5,4,0,0,1785,347,1,0,0,0,1786,1787,5, - 133,0,0,1787,1788,5,3,0,0,1788,1789,5,149,0,0,1789,1790,5,4,0,0, - 1790,349,1,0,0,0,1791,1792,5,134,0,0,1792,1793,5,3,0,0,1793,1794, - 5,149,0,0,1794,1795,5,4,0,0,1795,351,1,0,0,0,1796,1797,5,135,0,0, - 1797,1798,5,3,0,0,1798,1802,5,1,0,0,1799,1801,3,364,182,0,1800,1799, - 1,0,0,0,1801,1804,1,0,0,0,1802,1800,1,0,0,0,1802,1803,1,0,0,0,1803, - 1805,1,0,0,0,1804,1802,1,0,0,0,1805,1806,5,2,0,0,1806,1807,5,4,0, - 0,1807,353,1,0,0,0,1808,1809,5,136,0,0,1809,1810,5,3,0,0,1810,1811, - 3,224,112,0,1811,1812,5,4,0,0,1812,355,1,0,0,0,1813,1814,5,137,0, - 0,1814,1815,5,3,0,0,1815,1816,3,382,191,0,1816,1817,5,4,0,0,1817, - 357,1,0,0,0,1818,1819,5,138,0,0,1819,1820,5,3,0,0,1820,1821,5,13, - 0,0,1821,1822,5,4,0,0,1822,359,1,0,0,0,1823,1825,3,362,181,0,1824, - 1823,1,0,0,0,1825,1828,1,0,0,0,1826,1824,1,0,0,0,1826,1827,1,0,0, - 0,1827,361,1,0,0,0,1828,1826,1,0,0,0,1829,1830,5,1,0,0,1830,1831, - 5,139,0,0,1831,1832,5,3,0,0,1832,1833,5,149,0,0,1833,1834,5,4,0, - 0,1834,1835,5,140,0,0,1835,1836,5,3,0,0,1836,1837,5,149,0,0,1837, - 1838,5,4,0,0,1838,1839,5,2,0,0,1839,1840,5,6,0,0,1840,363,1,0,0, - 0,1841,1842,3,384,192,0,1842,1843,5,3,0,0,1843,1844,3,384,192,0, - 1844,1845,5,4,0,0,1845,1883,1,0,0,0,1846,1847,3,384,192,0,1847,1848, - 5,3,0,0,1848,1849,5,13,0,0,1849,1850,5,4,0,0,1850,1883,1,0,0,0,1851, - 1852,3,384,192,0,1852,1853,5,3,0,0,1853,1854,5,153,0,0,1854,1855, - 5,4,0,0,1855,1883,1,0,0,0,1856,1857,3,384,192,0,1857,1858,5,3,0, - 0,1858,1859,5,1,0,0,1859,1860,3,364,182,0,1860,1861,5,2,0,0,1861, - 1862,5,4,0,0,1862,1883,1,0,0,0,1863,1864,3,384,192,0,1864,1865,5, - 3,0,0,1865,1867,5,5,0,0,1866,1868,3,384,192,0,1867,1866,1,0,0,0, - 1867,1868,1,0,0,0,1868,1873,1,0,0,0,1869,1870,5,6,0,0,1870,1872, - 3,384,192,0,1871,1869,1,0,0,0,1872,1875,1,0,0,0,1873,1871,1,0,0, - 0,1873,1874,1,0,0,0,1874,1877,1,0,0,0,1875,1873,1,0,0,0,1876,1878, - 5,6,0,0,1877,1876,1,0,0,0,1877,1878,1,0,0,0,1878,1879,1,0,0,0,1879, - 1880,5,7,0,0,1880,1881,5,4,0,0,1881,1883,1,0,0,0,1882,1841,1,0,0, - 0,1882,1846,1,0,0,0,1882,1851,1,0,0,0,1882,1856,1,0,0,0,1882,1863, - 1,0,0,0,1883,365,1,0,0,0,1884,1885,5,141,0,0,1885,1886,5,3,0,0,1886, - 1887,3,224,112,0,1887,1888,5,4,0,0,1888,367,1,0,0,0,1889,1890,5, - 142,0,0,1890,1891,5,3,0,0,1891,1892,5,13,0,0,1892,1893,5,4,0,0,1893, - 369,1,0,0,0,1894,1895,5,143,0,0,1895,1896,5,3,0,0,1896,1897,3,382, - 191,0,1897,1898,5,4,0,0,1898,371,1,0,0,0,1899,1900,5,144,0,0,1900, - 1901,5,3,0,0,1901,1905,5,1,0,0,1902,1904,3,364,182,0,1903,1902,1, - 0,0,0,1904,1907,1,0,0,0,1905,1903,1,0,0,0,1905,1906,1,0,0,0,1906, - 1908,1,0,0,0,1907,1905,1,0,0,0,1908,1909,5,2,0,0,1909,1910,5,4,0, - 0,1910,373,1,0,0,0,1911,1912,5,145,0,0,1912,1913,5,3,0,0,1913,1917, - 5,1,0,0,1914,1916,3,364,182,0,1915,1914,1,0,0,0,1916,1919,1,0,0, - 0,1917,1915,1,0,0,0,1917,1918,1,0,0,0,1918,1920,1,0,0,0,1919,1917, - 1,0,0,0,1920,1921,5,2,0,0,1921,1922,5,4,0,0,1922,375,1,0,0,0,1923, - 1924,5,146,0,0,1924,1925,5,3,0,0,1925,1926,5,149,0,0,1926,1927,5, - 4,0,0,1927,377,1,0,0,0,1928,1929,5,147,0,0,1929,1930,5,3,0,0,1930, - 1931,5,151,0,0,1931,1932,5,4,0,0,1932,379,1,0,0,0,1933,1934,5,148, - 0,0,1934,1935,5,3,0,0,1935,1936,3,384,192,0,1936,1937,5,4,0,0,1937, - 381,1,0,0,0,1938,1945,5,151,0,0,1939,1945,5,150,0,0,1940,1945,5, - 18,0,0,1941,1945,5,10,0,0,1942,1945,5,11,0,0,1943,1945,3,386,193, - 0,1944,1938,1,0,0,0,1944,1939,1,0,0,0,1944,1940,1,0,0,0,1944,1941, - 1,0,0,0,1944,1942,1,0,0,0,1944,1943,1,0,0,0,1945,383,1,0,0,0,1946, - 1950,3,382,191,0,1947,1950,5,13,0,0,1948,1950,5,152,0,0,1949,1946, - 1,0,0,0,1949,1947,1,0,0,0,1949,1948,1,0,0,0,1950,385,1,0,0,0,1951, - 1952,7,1,0,0,1952,387,1,0,0,0,156,418,421,424,427,430,433,436,439, - 443,446,449,453,456,459,462,465,468,471,476,479,482,495,500,505, - 510,515,520,525,530,535,540,545,550,555,560,565,570,575,580,585, - 590,595,600,605,610,615,624,627,632,642,645,648,651,654,665,672, - 675,685,688,710,714,717,728,731,734,737,740,743,746,749,752,755, - 758,761,764,767,770,773,776,797,800,803,806,809,813,816,819,842, - 845,850,853,857,884,888,891,894,897,901,905,908,912,915,927,950, - 955,958,961,964,967,973,1010,1013,1016,1019,1022,1025,1037,1048, - 1062,1081,1094,1338,1389,1402,1406,1410,1417,1536,1539,1542,1545, - 1548,1551,1554,1557,1560,1606,1616,1619,1622,1625,1628,1631,1634, - 1637,1719,1802,1826,1867,1873,1877,1882,1905,1917,1944,1949 + 1,153,1,153,1,153,5,153,1694,8,153,10,153,12,153,1697,9,153,1,153, + 1,153,1,153,1,154,1,154,1,154,1,154,3,154,1706,8,154,1,154,3,154, + 1709,8,154,1,154,3,154,1712,8,154,1,154,3,154,1715,8,154,1,154,3, + 154,1718,8,154,1,154,3,154,1721,8,154,1,154,3,154,1724,8,154,1,154, + 3,154,1727,8,154,1,154,1,154,1,154,1,155,1,155,1,155,1,155,1,155, + 1,156,1,156,1,156,1,156,1,156,1,157,1,157,1,157,1,157,1,157,1,158, + 1,158,1,158,1,158,1,158,1,159,1,159,1,159,1,159,1,159,1,160,1,160, + 1,160,1,160,1,160,1,161,1,161,1,161,1,161,1,161,1,162,1,162,1,162, + 1,162,1,162,1,163,1,163,1,163,1,163,1,163,1,164,1,164,1,164,1,164, + 1,164,1,165,1,165,1,165,1,165,1,165,1,166,1,166,1,166,1,166,1,166, + 1,167,1,167,1,167,1,167,1,167,1,168,1,168,1,168,1,168,1,168,1,169, + 1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169, + 3,169,1814,8,169,1,170,1,170,1,170,1,170,1,170,1,171,1,171,1,171, + 1,171,1,171,1,172,1,172,1,172,1,172,1,172,1,173,1,173,1,173,1,173, + 1,173,1,174,1,174,1,174,1,174,1,174,1,175,1,175,1,175,1,175,1,175, + 1,176,1,176,1,176,1,176,1,176,1,177,1,177,1,177,1,177,1,177,1,178, + 1,178,1,178,1,178,1,178,1,179,1,179,1,179,1,179,1,179,1,180,1,180, + 1,180,1,180,1,180,1,181,1,181,1,181,1,181,1,181,1,182,1,182,1,182, + 1,182,1,182,1,183,1,183,1,183,1,183,1,183,1,184,1,184,1,184,1,184, + 1,184,1,185,1,185,1,185,1,185,5,185,1895,8,185,10,185,12,185,1898, + 9,185,1,185,1,185,1,185,1,186,1,186,1,186,1,186,1,186,1,187,1,187, + 1,187,1,187,1,187,1,188,1,188,1,188,1,188,1,188,1,189,5,189,1919, + 8,189,10,189,12,189,1922,9,189,1,190,1,190,1,190,1,190,1,190,1,190, + 1,190,1,190,1,190,1,190,1,190,1,190,1,191,1,191,1,191,1,191,1,191, + 1,192,1,192,1,192,1,192,1,192,1,193,1,193,1,193,1,193,1,193,1,193, + 1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193, + 1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,3,193,1972, + 8,193,1,193,1,193,5,193,1976,8,193,10,193,12,193,1979,9,193,1,193, + 3,193,1982,8,193,1,193,1,193,1,193,3,193,1987,8,193,1,194,1,194, + 1,194,1,194,1,194,1,195,1,195,1,195,1,195,1,195,1,196,1,196,1,196, + 1,196,1,196,1,197,1,197,1,197,1,197,5,197,2008,8,197,10,197,12,197, + 2011,9,197,1,197,1,197,1,197,1,198,1,198,1,198,1,198,5,198,2020, + 8,198,10,198,12,198,2023,9,198,1,198,1,198,1,198,1,199,1,199,1,199, + 1,199,1,199,1,200,1,200,1,200,1,200,1,200,1,201,1,201,1,201,1,201, + 1,201,1,202,1,202,1,202,1,202,1,202,1,202,3,202,2049,8,202,1,203, + 1,203,1,203,3,203,2054,8,203,1,204,1,204,1,204,0,0,205,0,2,4,6,8, + 10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52, + 54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94,96, + 98,100,102,104,106,108,110,112,114,116,118,120,122,124,126,128,130, + 132,134,136,138,140,142,144,146,148,150,152,154,156,158,160,162, + 164,166,168,170,172,174,176,178,180,182,184,186,188,190,192,194, + 196,198,200,202,204,206,208,210,212,214,216,218,220,222,224,226, + 228,230,232,234,236,238,240,242,244,246,248,250,252,254,256,258, + 260,262,264,266,268,270,272,274,276,278,280,282,284,286,288,290, + 292,294,296,298,300,302,304,306,308,310,312,314,316,318,320,322, + 324,326,328,330,332,334,336,338,340,342,344,346,348,350,352,354, + 356,358,360,362,364,366,368,370,372,374,376,378,380,382,384,386, + 388,390,392,394,396,398,400,402,404,406,408,0,2,2,0,13,13,158,158, + 8,0,8,9,12,12,14,16,20,29,32,37,39,46,48,140,142,155,2022,0,410, + 1,0,0,0,2,412,1,0,0,0,4,420,1,0,0,0,6,425,1,0,0,0,8,431,1,0,0,0, + 10,436,1,0,0,0,12,515,1,0,0,0,14,521,1,0,0,0,16,526,1,0,0,0,18,531, + 1,0,0,0,20,536,1,0,0,0,22,541,1,0,0,0,24,546,1,0,0,0,26,551,1,0, + 0,0,28,556,1,0,0,0,30,561,1,0,0,0,32,566,1,0,0,0,34,571,1,0,0,0, + 36,576,1,0,0,0,38,581,1,0,0,0,40,586,1,0,0,0,42,591,1,0,0,0,44,596, + 1,0,0,0,46,601,1,0,0,0,48,606,1,0,0,0,50,611,1,0,0,0,52,616,1,0, + 0,0,54,621,1,0,0,0,56,626,1,0,0,0,58,631,1,0,0,0,60,636,1,0,0,0, + 62,641,1,0,0,0,64,646,1,0,0,0,66,651,1,0,0,0,68,655,1,0,0,0,70,675, + 1,0,0,0,72,697,1,0,0,0,74,718,1,0,0,0,76,731,1,0,0,0,78,742,1,0, + 0,0,80,761,1,0,0,0,82,819,1,0,0,0,84,828,1,0,0,0,86,840,1,0,0,0, + 88,850,1,0,0,0,90,883,1,0,0,0,92,893,1,0,0,0,94,922,1,0,0,0,96,938, + 1,0,0,0,98,983,1,0,0,0,100,997,1,0,0,0,102,1007,1,0,0,0,104,1040, + 1,0,0,0,106,1057,1,0,0,0,108,1067,1,0,0,0,110,1092,1,0,0,0,112,1105, + 1,0,0,0,114,1117,1,0,0,0,116,1129,1,0,0,0,118,1138,1,0,0,0,120,1149, + 1,0,0,0,122,1164,1,0,0,0,124,1169,1,0,0,0,126,1174,1,0,0,0,128,1179, + 1,0,0,0,130,1184,1,0,0,0,132,1189,1,0,0,0,134,1194,1,0,0,0,136,1199, + 1,0,0,0,138,1204,1,0,0,0,140,1209,1,0,0,0,142,1214,1,0,0,0,144,1219, + 1,0,0,0,146,1224,1,0,0,0,148,1229,1,0,0,0,150,1234,1,0,0,0,152,1239, + 1,0,0,0,154,1244,1,0,0,0,156,1249,1,0,0,0,158,1254,1,0,0,0,160,1259, + 1,0,0,0,162,1264,1,0,0,0,164,1269,1,0,0,0,166,1274,1,0,0,0,168,1279, + 1,0,0,0,170,1284,1,0,0,0,172,1289,1,0,0,0,174,1294,1,0,0,0,176,1299, + 1,0,0,0,178,1304,1,0,0,0,180,1309,1,0,0,0,182,1314,1,0,0,0,184,1319, + 1,0,0,0,186,1324,1,0,0,0,188,1329,1,0,0,0,190,1334,1,0,0,0,192,1339, + 1,0,0,0,194,1344,1,0,0,0,196,1349,1,0,0,0,198,1361,1,0,0,0,200,1366, + 1,0,0,0,202,1371,1,0,0,0,204,1376,1,0,0,0,206,1381,1,0,0,0,208,1386, + 1,0,0,0,210,1391,1,0,0,0,212,1396,1,0,0,0,214,1401,1,0,0,0,216,1406, + 1,0,0,0,218,1411,1,0,0,0,220,1416,1,0,0,0,222,1421,1,0,0,0,224,1433, + 1,0,0,0,226,1438,1,0,0,0,228,1443,1,0,0,0,230,1448,1,0,0,0,232,1453, + 1,0,0,0,234,1458,1,0,0,0,236,1463,1,0,0,0,238,1468,1,0,0,0,240,1473, + 1,0,0,0,242,1499,1,0,0,0,244,1501,1,0,0,0,246,1511,1,0,0,0,248,1516, + 1,0,0,0,250,1521,1,0,0,0,252,1526,1,0,0,0,254,1531,1,0,0,0,256,1536, + 1,0,0,0,258,1541,1,0,0,0,260,1546,1,0,0,0,262,1551,1,0,0,0,264,1556, + 1,0,0,0,266,1561,1,0,0,0,268,1566,1,0,0,0,270,1571,1,0,0,0,272,1576, + 1,0,0,0,274,1581,1,0,0,0,276,1586,1,0,0,0,278,1591,1,0,0,0,280,1596, + 1,0,0,0,282,1601,1,0,0,0,284,1606,1,0,0,0,286,1611,1,0,0,0,288,1616, + 1,0,0,0,290,1621,1,0,0,0,292,1654,1,0,0,0,294,1659,1,0,0,0,296,1664, + 1,0,0,0,298,1669,1,0,0,0,300,1674,1,0,0,0,302,1679,1,0,0,0,304,1684, + 1,0,0,0,306,1689,1,0,0,0,308,1701,1,0,0,0,310,1731,1,0,0,0,312,1736, + 1,0,0,0,314,1741,1,0,0,0,316,1746,1,0,0,0,318,1751,1,0,0,0,320,1756, + 1,0,0,0,322,1761,1,0,0,0,324,1766,1,0,0,0,326,1771,1,0,0,0,328,1776, + 1,0,0,0,330,1781,1,0,0,0,332,1786,1,0,0,0,334,1791,1,0,0,0,336,1796, + 1,0,0,0,338,1813,1,0,0,0,340,1815,1,0,0,0,342,1820,1,0,0,0,344,1825, + 1,0,0,0,346,1830,1,0,0,0,348,1835,1,0,0,0,350,1840,1,0,0,0,352,1845, + 1,0,0,0,354,1850,1,0,0,0,356,1855,1,0,0,0,358,1860,1,0,0,0,360,1865, + 1,0,0,0,362,1870,1,0,0,0,364,1875,1,0,0,0,366,1880,1,0,0,0,368,1885, + 1,0,0,0,370,1890,1,0,0,0,372,1902,1,0,0,0,374,1907,1,0,0,0,376,1912, + 1,0,0,0,378,1920,1,0,0,0,380,1923,1,0,0,0,382,1935,1,0,0,0,384,1940, + 1,0,0,0,386,1986,1,0,0,0,388,1988,1,0,0,0,390,1993,1,0,0,0,392,1998, + 1,0,0,0,394,2003,1,0,0,0,396,2015,1,0,0,0,398,2027,1,0,0,0,400,2032, + 1,0,0,0,402,2037,1,0,0,0,404,2048,1,0,0,0,406,2053,1,0,0,0,408,2055, + 1,0,0,0,410,411,3,2,1,0,411,1,1,0,0,0,412,413,5,1,0,0,413,414,3, + 4,2,0,414,415,3,6,3,0,415,416,3,8,4,0,416,417,3,10,5,0,417,418,3, + 12,6,0,418,419,5,2,0,0,419,3,1,0,0,0,420,421,5,8,0,0,421,422,5,3, + 0,0,422,423,5,13,0,0,423,424,5,4,0,0,424,5,1,0,0,0,425,426,5,9,0, + 0,426,427,5,3,0,0,427,428,5,1,0,0,428,429,5,2,0,0,429,430,5,4,0, + 0,430,7,1,0,0,0,431,432,5,14,0,0,432,433,5,3,0,0,433,434,5,13,0, + 0,434,435,5,4,0,0,435,9,1,0,0,0,436,437,5,15,0,0,437,438,5,3,0,0, + 438,440,5,1,0,0,439,441,3,14,7,0,440,439,1,0,0,0,440,441,1,0,0,0, + 441,443,1,0,0,0,442,444,3,16,8,0,443,442,1,0,0,0,443,444,1,0,0,0, + 444,446,1,0,0,0,445,447,3,18,9,0,446,445,1,0,0,0,446,447,1,0,0,0, + 447,449,1,0,0,0,448,450,3,20,10,0,449,448,1,0,0,0,449,450,1,0,0, + 0,450,452,1,0,0,0,451,453,3,22,11,0,452,451,1,0,0,0,452,453,1,0, + 0,0,453,455,1,0,0,0,454,456,3,24,12,0,455,454,1,0,0,0,455,456,1, + 0,0,0,456,458,1,0,0,0,457,459,3,26,13,0,458,457,1,0,0,0,458,459, + 1,0,0,0,459,461,1,0,0,0,460,462,3,28,14,0,461,460,1,0,0,0,461,462, + 1,0,0,0,462,464,1,0,0,0,463,465,3,30,15,0,464,463,1,0,0,0,464,465, + 1,0,0,0,465,467,1,0,0,0,466,468,3,32,16,0,467,466,1,0,0,0,467,468, + 1,0,0,0,468,469,1,0,0,0,469,471,3,34,17,0,470,472,3,36,18,0,471, + 470,1,0,0,0,471,472,1,0,0,0,472,474,1,0,0,0,473,475,3,40,20,0,474, + 473,1,0,0,0,474,475,1,0,0,0,475,477,1,0,0,0,476,478,3,38,19,0,477, + 476,1,0,0,0,477,478,1,0,0,0,478,479,1,0,0,0,479,481,3,42,21,0,480, + 482,3,44,22,0,481,480,1,0,0,0,481,482,1,0,0,0,482,484,1,0,0,0,483, + 485,3,46,23,0,484,483,1,0,0,0,484,485,1,0,0,0,485,487,1,0,0,0,486, + 488,3,48,24,0,487,486,1,0,0,0,487,488,1,0,0,0,488,490,1,0,0,0,489, + 491,3,50,25,0,490,489,1,0,0,0,490,491,1,0,0,0,491,493,1,0,0,0,492, + 494,3,52,26,0,493,492,1,0,0,0,493,494,1,0,0,0,494,496,1,0,0,0,495, + 497,3,54,27,0,496,495,1,0,0,0,496,497,1,0,0,0,497,499,1,0,0,0,498, + 500,3,56,28,0,499,498,1,0,0,0,499,500,1,0,0,0,500,501,1,0,0,0,501, + 502,3,58,29,0,502,504,3,60,30,0,503,505,3,62,31,0,504,503,1,0,0, + 0,504,505,1,0,0,0,505,507,1,0,0,0,506,508,3,64,32,0,507,506,1,0, + 0,0,507,508,1,0,0,0,508,510,1,0,0,0,509,511,3,66,33,0,510,509,1, + 0,0,0,510,511,1,0,0,0,511,512,1,0,0,0,512,513,5,2,0,0,513,514,5, + 4,0,0,514,11,1,0,0,0,515,516,5,16,0,0,516,517,5,3,0,0,517,518,5, + 156,0,0,518,519,5,4,0,0,519,13,1,0,0,0,520,522,3,68,34,0,521,520, + 1,0,0,0,522,523,1,0,0,0,523,521,1,0,0,0,523,524,1,0,0,0,524,15,1, + 0,0,0,525,527,3,70,35,0,526,525,1,0,0,0,527,528,1,0,0,0,528,526, + 1,0,0,0,528,529,1,0,0,0,529,17,1,0,0,0,530,532,3,72,36,0,531,530, + 1,0,0,0,532,533,1,0,0,0,533,531,1,0,0,0,533,534,1,0,0,0,534,19,1, + 0,0,0,535,537,3,74,37,0,536,535,1,0,0,0,537,538,1,0,0,0,538,536, + 1,0,0,0,538,539,1,0,0,0,539,21,1,0,0,0,540,542,3,76,38,0,541,540, + 1,0,0,0,542,543,1,0,0,0,543,541,1,0,0,0,543,544,1,0,0,0,544,23,1, + 0,0,0,545,547,3,78,39,0,546,545,1,0,0,0,547,548,1,0,0,0,548,546, + 1,0,0,0,548,549,1,0,0,0,549,25,1,0,0,0,550,552,3,80,40,0,551,550, + 1,0,0,0,552,553,1,0,0,0,553,551,1,0,0,0,553,554,1,0,0,0,554,27,1, + 0,0,0,555,557,3,82,41,0,556,555,1,0,0,0,557,558,1,0,0,0,558,556, + 1,0,0,0,558,559,1,0,0,0,559,29,1,0,0,0,560,562,3,84,42,0,561,560, + 1,0,0,0,562,563,1,0,0,0,563,561,1,0,0,0,563,564,1,0,0,0,564,31,1, + 0,0,0,565,567,3,86,43,0,566,565,1,0,0,0,567,568,1,0,0,0,568,566, + 1,0,0,0,568,569,1,0,0,0,569,33,1,0,0,0,570,572,3,88,44,0,571,570, + 1,0,0,0,572,573,1,0,0,0,573,571,1,0,0,0,573,574,1,0,0,0,574,35,1, + 0,0,0,575,577,3,90,45,0,576,575,1,0,0,0,577,578,1,0,0,0,578,576, + 1,0,0,0,578,579,1,0,0,0,579,37,1,0,0,0,580,582,3,92,46,0,581,580, + 1,0,0,0,582,583,1,0,0,0,583,581,1,0,0,0,583,584,1,0,0,0,584,39,1, + 0,0,0,585,587,3,94,47,0,586,585,1,0,0,0,587,588,1,0,0,0,588,586, + 1,0,0,0,588,589,1,0,0,0,589,41,1,0,0,0,590,592,3,96,48,0,591,590, + 1,0,0,0,592,593,1,0,0,0,593,591,1,0,0,0,593,594,1,0,0,0,594,43,1, + 0,0,0,595,597,3,98,49,0,596,595,1,0,0,0,597,598,1,0,0,0,598,596, + 1,0,0,0,598,599,1,0,0,0,599,45,1,0,0,0,600,602,3,100,50,0,601,600, + 1,0,0,0,602,603,1,0,0,0,603,601,1,0,0,0,603,604,1,0,0,0,604,47,1, + 0,0,0,605,607,3,102,51,0,606,605,1,0,0,0,607,608,1,0,0,0,608,606, + 1,0,0,0,608,609,1,0,0,0,609,49,1,0,0,0,610,612,3,104,52,0,611,610, + 1,0,0,0,612,613,1,0,0,0,613,611,1,0,0,0,613,614,1,0,0,0,614,51,1, + 0,0,0,615,617,3,106,53,0,616,615,1,0,0,0,617,618,1,0,0,0,618,616, + 1,0,0,0,618,619,1,0,0,0,619,53,1,0,0,0,620,622,3,108,54,0,621,620, + 1,0,0,0,622,623,1,0,0,0,623,621,1,0,0,0,623,624,1,0,0,0,624,55,1, + 0,0,0,625,627,3,110,55,0,626,625,1,0,0,0,627,628,1,0,0,0,628,626, + 1,0,0,0,628,629,1,0,0,0,629,57,1,0,0,0,630,632,3,112,56,0,631,630, + 1,0,0,0,632,633,1,0,0,0,633,631,1,0,0,0,633,634,1,0,0,0,634,59,1, + 0,0,0,635,637,3,114,57,0,636,635,1,0,0,0,637,638,1,0,0,0,638,636, + 1,0,0,0,638,639,1,0,0,0,639,61,1,0,0,0,640,642,3,116,58,0,641,640, + 1,0,0,0,642,643,1,0,0,0,643,641,1,0,0,0,643,644,1,0,0,0,644,63,1, + 0,0,0,645,647,3,118,59,0,646,645,1,0,0,0,647,648,1,0,0,0,648,646, + 1,0,0,0,648,649,1,0,0,0,649,65,1,0,0,0,650,652,3,120,60,0,651,650, + 1,0,0,0,652,653,1,0,0,0,653,651,1,0,0,0,653,654,1,0,0,0,654,67,1, + 0,0,0,655,656,5,156,0,0,656,657,5,3,0,0,657,658,5,1,0,0,658,659, + 3,122,61,0,659,660,3,246,123,0,660,662,3,248,124,0,661,663,3,370, + 185,0,662,661,1,0,0,0,662,663,1,0,0,0,663,665,1,0,0,0,664,666,3, + 192,96,0,665,664,1,0,0,0,665,666,1,0,0,0,666,667,1,0,0,0,667,668, + 3,260,130,0,668,670,3,228,114,0,669,671,3,262,131,0,670,669,1,0, + 0,0,670,671,1,0,0,0,671,672,1,0,0,0,672,673,5,2,0,0,673,674,5,4, + 0,0,674,69,1,0,0,0,675,676,5,156,0,0,676,677,5,3,0,0,677,678,5,1, + 0,0,678,680,3,124,62,0,679,681,3,178,89,0,680,679,1,0,0,0,680,681, + 1,0,0,0,681,683,1,0,0,0,682,684,3,212,106,0,683,682,1,0,0,0,683, + 684,1,0,0,0,684,686,1,0,0,0,685,687,3,214,107,0,686,685,1,0,0,0, + 686,687,1,0,0,0,687,689,1,0,0,0,688,690,3,180,90,0,689,688,1,0,0, + 0,689,690,1,0,0,0,690,692,1,0,0,0,691,693,3,394,197,0,692,691,1, + 0,0,0,692,693,1,0,0,0,693,694,1,0,0,0,694,695,5,2,0,0,695,696,5, + 4,0,0,696,71,1,0,0,0,697,698,5,156,0,0,698,699,5,3,0,0,699,700,5, + 1,0,0,700,701,3,126,63,0,701,703,3,276,138,0,702,704,3,278,139,0, + 703,702,1,0,0,0,703,704,1,0,0,0,704,705,1,0,0,0,705,706,3,364,182, + 0,706,707,3,280,140,0,707,708,3,282,141,0,708,710,3,284,142,0,709, + 711,3,286,143,0,710,709,1,0,0,0,710,711,1,0,0,0,711,713,1,0,0,0, + 712,714,3,288,144,0,713,712,1,0,0,0,713,714,1,0,0,0,714,715,1,0, + 0,0,715,716,5,2,0,0,716,717,5,4,0,0,717,73,1,0,0,0,718,719,5,156, + 0,0,719,720,5,3,0,0,720,721,5,1,0,0,721,723,3,128,64,0,722,724,3, + 370,185,0,723,722,1,0,0,0,723,724,1,0,0,0,724,726,1,0,0,0,725,727, + 3,228,114,0,726,725,1,0,0,0,726,727,1,0,0,0,727,728,1,0,0,0,728, + 729,5,2,0,0,729,730,5,4,0,0,730,75,1,0,0,0,731,732,5,156,0,0,732, + 733,5,3,0,0,733,734,5,1,0,0,734,735,3,130,65,0,735,736,3,182,91, + 0,736,737,3,184,92,0,737,738,3,186,93,0,738,739,3,188,94,0,739,740, + 5,2,0,0,740,741,5,4,0,0,741,77,1,0,0,0,742,743,5,156,0,0,743,744, + 5,3,0,0,744,745,5,1,0,0,745,746,3,132,66,0,746,748,3,234,117,0,747, + 749,3,374,187,0,748,747,1,0,0,0,748,749,1,0,0,0,749,750,1,0,0,0, + 750,752,3,376,188,0,751,753,3,236,118,0,752,751,1,0,0,0,752,753, + 1,0,0,0,753,755,1,0,0,0,754,756,3,228,114,0,755,754,1,0,0,0,755, + 756,1,0,0,0,756,757,1,0,0,0,757,758,3,238,119,0,758,759,5,2,0,0, + 759,760,5,4,0,0,760,79,1,0,0,0,761,762,5,156,0,0,762,763,5,3,0,0, + 763,764,5,1,0,0,764,766,3,134,67,0,765,767,3,192,96,0,766,765,1, + 0,0,0,766,767,1,0,0,0,767,769,1,0,0,0,768,770,3,190,95,0,769,768, + 1,0,0,0,769,770,1,0,0,0,770,772,1,0,0,0,771,773,3,194,97,0,772,771, + 1,0,0,0,772,773,1,0,0,0,773,775,1,0,0,0,774,776,3,190,95,0,775,774, + 1,0,0,0,775,776,1,0,0,0,776,778,1,0,0,0,777,779,3,202,101,0,778, + 777,1,0,0,0,778,779,1,0,0,0,779,781,1,0,0,0,780,782,3,204,102,0, + 781,780,1,0,0,0,781,782,1,0,0,0,782,784,1,0,0,0,783,785,3,200,100, + 0,784,783,1,0,0,0,784,785,1,0,0,0,785,787,1,0,0,0,786,788,3,268, + 134,0,787,786,1,0,0,0,787,788,1,0,0,0,788,790,1,0,0,0,789,791,3, + 228,114,0,790,789,1,0,0,0,790,791,1,0,0,0,791,793,1,0,0,0,792,794, + 3,230,115,0,793,792,1,0,0,0,793,794,1,0,0,0,794,796,1,0,0,0,795, + 797,3,274,137,0,796,795,1,0,0,0,796,797,1,0,0,0,797,799,1,0,0,0, + 798,800,3,272,136,0,799,798,1,0,0,0,799,800,1,0,0,0,800,802,1,0, + 0,0,801,803,3,232,116,0,802,801,1,0,0,0,802,803,1,0,0,0,803,805, + 1,0,0,0,804,806,3,206,103,0,805,804,1,0,0,0,805,806,1,0,0,0,806, + 808,1,0,0,0,807,809,3,270,135,0,808,807,1,0,0,0,808,809,1,0,0,0, + 809,811,1,0,0,0,810,812,3,208,104,0,811,810,1,0,0,0,811,812,1,0, + 0,0,812,814,1,0,0,0,813,815,3,210,105,0,814,813,1,0,0,0,814,815, + 1,0,0,0,815,816,1,0,0,0,816,817,5,2,0,0,817,818,5,4,0,0,818,81,1, + 0,0,0,819,820,5,156,0,0,820,821,5,3,0,0,821,822,5,1,0,0,822,823, + 3,136,68,0,823,824,3,382,191,0,824,825,3,360,180,0,825,826,5,2,0, + 0,826,827,5,4,0,0,827,83,1,0,0,0,828,829,5,156,0,0,829,830,5,3,0, + 0,830,831,5,1,0,0,831,832,3,138,69,0,832,833,3,384,192,0,833,834, + 3,196,98,0,834,835,3,198,99,0,835,836,3,230,115,0,836,837,3,232, + 116,0,837,838,5,2,0,0,838,839,5,4,0,0,839,85,1,0,0,0,840,841,5,156, + 0,0,841,842,5,3,0,0,842,843,5,1,0,0,843,844,3,140,70,0,844,845,3, + 234,117,0,845,846,3,236,118,0,846,847,3,238,119,0,847,848,5,2,0, + 0,848,849,5,4,0,0,849,87,1,0,0,0,850,851,5,156,0,0,851,852,5,3,0, + 0,852,853,5,1,0,0,853,854,3,142,71,0,854,856,3,216,108,0,855,857, + 3,192,96,0,856,855,1,0,0,0,856,857,1,0,0,0,857,859,1,0,0,0,858,860, + 3,204,102,0,859,858,1,0,0,0,859,860,1,0,0,0,860,862,1,0,0,0,861, + 863,3,202,101,0,862,861,1,0,0,0,862,863,1,0,0,0,863,865,1,0,0,0, + 864,866,3,228,114,0,865,864,1,0,0,0,865,866,1,0,0,0,866,868,1,0, + 0,0,867,869,3,230,115,0,868,867,1,0,0,0,868,869,1,0,0,0,869,870, + 1,0,0,0,870,872,3,232,116,0,871,873,3,206,103,0,872,871,1,0,0,0, + 872,873,1,0,0,0,873,875,1,0,0,0,874,876,3,208,104,0,875,874,1,0, + 0,0,875,876,1,0,0,0,876,878,1,0,0,0,877,879,3,210,105,0,878,877, + 1,0,0,0,878,879,1,0,0,0,879,880,1,0,0,0,880,881,5,2,0,0,881,882, + 5,4,0,0,882,89,1,0,0,0,883,884,5,156,0,0,884,885,5,3,0,0,885,886, + 5,1,0,0,886,887,3,144,72,0,887,888,3,234,117,0,888,889,3,236,118, + 0,889,890,3,238,119,0,890,891,5,2,0,0,891,892,5,4,0,0,892,91,1,0, + 0,0,893,894,5,156,0,0,894,895,5,3,0,0,895,896,5,1,0,0,896,897,3, + 146,73,0,897,898,3,246,123,0,898,899,3,248,124,0,899,901,3,250,125, + 0,900,902,3,192,96,0,901,900,1,0,0,0,901,902,1,0,0,0,902,904,1,0, + 0,0,903,905,3,370,185,0,904,903,1,0,0,0,904,905,1,0,0,0,905,906, + 1,0,0,0,906,907,3,260,130,0,907,909,3,228,114,0,908,910,3,218,109, + 0,909,908,1,0,0,0,909,910,1,0,0,0,910,912,1,0,0,0,911,913,3,226, + 113,0,912,911,1,0,0,0,912,913,1,0,0,0,913,914,1,0,0,0,914,916,3, + 262,131,0,915,917,3,264,132,0,916,915,1,0,0,0,916,917,1,0,0,0,917, + 918,1,0,0,0,918,919,3,266,133,0,919,920,5,2,0,0,920,921,5,4,0,0, + 921,93,1,0,0,0,922,923,5,156,0,0,923,924,5,3,0,0,924,925,5,1,0,0, + 925,926,3,148,74,0,926,927,3,252,126,0,927,928,3,246,123,0,928,929, + 3,248,124,0,929,930,3,254,127,0,930,931,3,256,128,0,931,932,3,260, + 130,0,932,933,3,228,114,0,933,934,3,258,129,0,934,935,3,262,131, + 0,935,936,5,2,0,0,936,937,5,4,0,0,937,95,1,0,0,0,938,939,5,156,0, + 0,939,940,5,3,0,0,940,941,5,1,0,0,941,943,3,150,75,0,942,944,3,290, + 145,0,943,942,1,0,0,0,943,944,1,0,0,0,944,945,1,0,0,0,945,947,3, + 246,123,0,946,948,3,370,185,0,947,946,1,0,0,0,947,948,1,0,0,0,948, + 950,1,0,0,0,949,951,3,372,186,0,950,949,1,0,0,0,950,951,1,0,0,0, + 951,953,1,0,0,0,952,954,3,320,160,0,953,952,1,0,0,0,953,954,1,0, + 0,0,954,956,1,0,0,0,955,957,3,322,161,0,956,955,1,0,0,0,956,957, + 1,0,0,0,957,958,1,0,0,0,958,960,3,324,162,0,959,961,3,326,163,0, + 960,959,1,0,0,0,960,961,1,0,0,0,961,962,1,0,0,0,962,964,3,328,164, + 0,963,965,3,332,166,0,964,963,1,0,0,0,964,965,1,0,0,0,965,967,1, + 0,0,0,966,968,3,334,167,0,967,966,1,0,0,0,967,968,1,0,0,0,968,970, + 1,0,0,0,969,971,3,330,165,0,970,969,1,0,0,0,970,971,1,0,0,0,971, + 972,1,0,0,0,972,974,3,336,168,0,973,975,3,338,169,0,974,973,1,0, + 0,0,974,975,1,0,0,0,975,977,1,0,0,0,976,978,3,340,170,0,977,976, + 1,0,0,0,977,978,1,0,0,0,978,979,1,0,0,0,979,980,3,342,171,0,980, + 981,5,2,0,0,981,982,5,4,0,0,982,97,1,0,0,0,983,984,5,156,0,0,984, + 985,5,3,0,0,985,986,5,1,0,0,986,987,3,152,76,0,987,989,3,364,182, + 0,988,990,3,228,114,0,989,988,1,0,0,0,989,990,1,0,0,0,990,991,1, + 0,0,0,991,992,3,230,115,0,992,993,3,366,183,0,993,994,3,232,116, + 0,994,995,5,2,0,0,995,996,5,4,0,0,996,99,1,0,0,0,997,998,5,156,0, + 0,998,999,5,3,0,0,999,1000,5,1,0,0,1000,1001,3,154,77,0,1001,1002, + 3,234,117,0,1002,1003,3,236,118,0,1003,1004,3,238,119,0,1004,1005, + 5,2,0,0,1005,1006,5,4,0,0,1006,101,1,0,0,0,1007,1008,5,156,0,0,1008, + 1009,5,3,0,0,1009,1010,5,1,0,0,1010,1012,3,156,78,0,1011,1013,3, + 176,88,0,1012,1011,1,0,0,0,1012,1013,1,0,0,0,1013,1014,1,0,0,0,1014, + 1015,3,234,117,0,1015,1017,3,236,118,0,1016,1018,3,344,172,0,1017, + 1016,1,0,0,0,1017,1018,1,0,0,0,1018,1020,1,0,0,0,1019,1021,3,346, + 173,0,1020,1019,1,0,0,0,1020,1021,1,0,0,0,1021,1023,1,0,0,0,1022, + 1024,3,228,114,0,1023,1022,1,0,0,0,1023,1024,1,0,0,0,1024,1026,1, + 0,0,0,1025,1027,3,348,174,0,1026,1025,1,0,0,0,1026,1027,1,0,0,0, + 1027,1029,1,0,0,0,1028,1030,3,350,175,0,1029,1028,1,0,0,0,1029,1030, + 1,0,0,0,1030,1031,1,0,0,0,1031,1032,3,238,119,0,1032,1033,3,352, + 176,0,1033,1035,3,356,178,0,1034,1036,3,358,179,0,1035,1034,1,0, + 0,0,1035,1036,1,0,0,0,1036,1037,1,0,0,0,1037,1038,5,2,0,0,1038,1039, + 5,4,0,0,1039,103,1,0,0,0,1040,1041,5,156,0,0,1041,1042,5,3,0,0,1042, + 1043,5,1,0,0,1043,1044,3,158,79,0,1044,1045,3,234,117,0,1045,1046, + 3,236,118,0,1046,1047,3,344,172,0,1047,1048,3,346,173,0,1048,1049, + 3,228,114,0,1049,1050,3,348,174,0,1050,1051,3,350,175,0,1051,1052, + 3,238,119,0,1052,1053,3,352,176,0,1053,1054,3,354,177,0,1054,1055, + 5,2,0,0,1055,1056,5,4,0,0,1056,105,1,0,0,0,1057,1058,5,156,0,0,1058, + 1059,5,3,0,0,1059,1060,5,1,0,0,1060,1061,3,160,80,0,1061,1062,3, + 234,117,0,1062,1063,3,236,118,0,1063,1064,3,238,119,0,1064,1065, + 5,2,0,0,1065,1066,5,4,0,0,1066,107,1,0,0,0,1067,1068,5,156,0,0,1068, + 1069,5,3,0,0,1069,1070,5,1,0,0,1070,1072,3,162,81,0,1071,1073,3, + 228,114,0,1072,1071,1,0,0,0,1072,1073,1,0,0,0,1073,1075,1,0,0,0, + 1074,1076,3,212,106,0,1075,1074,1,0,0,0,1075,1076,1,0,0,0,1076,1078, + 1,0,0,0,1077,1079,3,214,107,0,1078,1077,1,0,0,0,1078,1079,1,0,0, + 0,1079,1081,1,0,0,0,1080,1082,3,180,90,0,1081,1080,1,0,0,0,1081, + 1082,1,0,0,0,1082,1084,1,0,0,0,1083,1085,3,360,180,0,1084,1083,1, + 0,0,0,1084,1085,1,0,0,0,1085,1087,1,0,0,0,1086,1088,3,362,181,0, + 1087,1086,1,0,0,0,1087,1088,1,0,0,0,1088,1089,1,0,0,0,1089,1090, + 5,2,0,0,1090,1091,5,4,0,0,1091,109,1,0,0,0,1092,1093,5,156,0,0,1093, + 1094,5,3,0,0,1094,1095,5,1,0,0,1095,1096,3,164,82,0,1096,1097,3, + 216,108,0,1097,1099,3,228,114,0,1098,1100,3,230,115,0,1099,1098, + 1,0,0,0,1099,1100,1,0,0,0,1100,1101,1,0,0,0,1101,1102,3,232,116, + 0,1102,1103,5,2,0,0,1103,1104,5,4,0,0,1104,111,1,0,0,0,1105,1106, + 5,156,0,0,1106,1107,5,3,0,0,1107,1108,5,1,0,0,1108,1110,3,166,83, + 0,1109,1111,3,368,184,0,1110,1109,1,0,0,0,1110,1111,1,0,0,0,1111, + 1112,1,0,0,0,1112,1113,3,370,185,0,1113,1114,3,228,114,0,1114,1115, + 5,2,0,0,1115,1116,5,4,0,0,1116,113,1,0,0,0,1117,1118,5,156,0,0,1118, + 1119,5,3,0,0,1119,1120,5,1,0,0,1120,1121,3,168,84,0,1121,1122,3, + 388,194,0,1122,1124,3,390,195,0,1123,1125,3,392,196,0,1124,1123, + 1,0,0,0,1124,1125,1,0,0,0,1125,1126,1,0,0,0,1126,1127,5,2,0,0,1127, + 1128,5,4,0,0,1128,115,1,0,0,0,1129,1130,5,156,0,0,1130,1131,5,3, + 0,0,1131,1132,5,1,0,0,1132,1133,3,170,85,0,1133,1134,3,220,110,0, + 1134,1135,3,222,111,0,1135,1136,5,2,0,0,1136,1137,5,4,0,0,1137,117, + 1,0,0,0,1138,1139,5,156,0,0,1139,1140,5,3,0,0,1140,1141,5,1,0,0, + 1141,1143,3,172,86,0,1142,1144,3,224,112,0,1143,1142,1,0,0,0,1143, + 1144,1,0,0,0,1144,1145,1,0,0,0,1145,1146,3,262,131,0,1146,1147,5, + 2,0,0,1147,1148,5,4,0,0,1148,119,1,0,0,0,1149,1150,5,156,0,0,1150, + 1151,5,3,0,0,1151,1152,5,1,0,0,1152,1153,3,174,87,0,1153,1154,3, + 216,108,0,1154,1156,3,398,199,0,1155,1157,3,228,114,0,1156,1155, + 1,0,0,0,1156,1157,1,0,0,0,1157,1158,1,0,0,0,1158,1159,3,230,115, + 0,1159,1160,3,232,116,0,1160,1161,3,400,200,0,1161,1162,5,2,0,0, + 1162,1163,5,4,0,0,1163,121,1,0,0,0,1164,1165,5,12,0,0,1165,1166, + 5,3,0,0,1166,1167,5,20,0,0,1167,1168,5,4,0,0,1168,123,1,0,0,0,1169, + 1170,5,12,0,0,1170,1171,5,3,0,0,1171,1172,5,21,0,0,1172,1173,5,4, + 0,0,1173,125,1,0,0,0,1174,1175,5,12,0,0,1175,1176,5,3,0,0,1176,1177, + 5,22,0,0,1177,1178,5,4,0,0,1178,127,1,0,0,0,1179,1180,5,12,0,0,1180, + 1181,5,3,0,0,1181,1182,5,23,0,0,1182,1183,5,4,0,0,1183,129,1,0,0, + 0,1184,1185,5,12,0,0,1185,1186,5,3,0,0,1186,1187,5,24,0,0,1187,1188, + 5,4,0,0,1188,131,1,0,0,0,1189,1190,5,12,0,0,1190,1191,5,3,0,0,1191, + 1192,5,25,0,0,1192,1193,5,4,0,0,1193,133,1,0,0,0,1194,1195,5,12, + 0,0,1195,1196,5,3,0,0,1196,1197,5,26,0,0,1197,1198,5,4,0,0,1198, + 135,1,0,0,0,1199,1200,5,12,0,0,1200,1201,5,3,0,0,1201,1202,5,27, + 0,0,1202,1203,5,4,0,0,1203,137,1,0,0,0,1204,1205,5,12,0,0,1205,1206, + 5,3,0,0,1206,1207,5,28,0,0,1207,1208,5,4,0,0,1208,139,1,0,0,0,1209, + 1210,5,12,0,0,1210,1211,5,3,0,0,1211,1212,5,29,0,0,1212,1213,5,4, + 0,0,1213,141,1,0,0,0,1214,1215,5,12,0,0,1215,1216,5,3,0,0,1216,1217, + 5,30,0,0,1217,1218,5,4,0,0,1218,143,1,0,0,0,1219,1220,5,12,0,0,1220, + 1221,5,3,0,0,1221,1222,5,31,0,0,1222,1223,5,4,0,0,1223,145,1,0,0, + 0,1224,1225,5,12,0,0,1225,1226,5,3,0,0,1226,1227,5,32,0,0,1227,1228, + 5,4,0,0,1228,147,1,0,0,0,1229,1230,5,12,0,0,1230,1231,5,3,0,0,1231, + 1232,5,33,0,0,1232,1233,5,4,0,0,1233,149,1,0,0,0,1234,1235,5,12, + 0,0,1235,1236,5,3,0,0,1236,1237,5,34,0,0,1237,1238,5,4,0,0,1238, + 151,1,0,0,0,1239,1240,5,12,0,0,1240,1241,5,3,0,0,1241,1242,5,35, + 0,0,1242,1243,5,4,0,0,1243,153,1,0,0,0,1244,1245,5,12,0,0,1245,1246, + 5,3,0,0,1246,1247,5,36,0,0,1247,1248,5,4,0,0,1248,155,1,0,0,0,1249, + 1250,5,12,0,0,1250,1251,5,3,0,0,1251,1252,5,37,0,0,1252,1253,5,4, + 0,0,1253,157,1,0,0,0,1254,1255,5,12,0,0,1255,1256,5,3,0,0,1256,1257, + 5,38,0,0,1257,1258,5,4,0,0,1258,159,1,0,0,0,1259,1260,5,12,0,0,1260, + 1261,5,3,0,0,1261,1262,5,39,0,0,1262,1263,5,4,0,0,1263,161,1,0,0, + 0,1264,1265,5,12,0,0,1265,1266,5,3,0,0,1266,1267,5,40,0,0,1267,1268, + 5,4,0,0,1268,163,1,0,0,0,1269,1270,5,12,0,0,1270,1271,5,3,0,0,1271, + 1272,5,41,0,0,1272,1273,5,4,0,0,1273,165,1,0,0,0,1274,1275,5,12, + 0,0,1275,1276,5,3,0,0,1276,1277,5,42,0,0,1277,1278,5,4,0,0,1278, + 167,1,0,0,0,1279,1280,5,12,0,0,1280,1281,5,3,0,0,1281,1282,5,43, + 0,0,1282,1283,5,4,0,0,1283,169,1,0,0,0,1284,1285,5,12,0,0,1285,1286, + 5,3,0,0,1286,1287,5,44,0,0,1287,1288,5,4,0,0,1288,171,1,0,0,0,1289, + 1290,5,12,0,0,1290,1291,5,3,0,0,1291,1292,5,45,0,0,1292,1293,5,4, + 0,0,1293,173,1,0,0,0,1294,1295,5,12,0,0,1295,1296,5,3,0,0,1296,1297, + 5,46,0,0,1297,1298,5,4,0,0,1298,175,1,0,0,0,1299,1300,5,47,0,0,1300, + 1301,5,3,0,0,1301,1302,5,13,0,0,1302,1303,5,4,0,0,1303,177,1,0,0, + 0,1304,1305,5,48,0,0,1305,1306,5,3,0,0,1306,1307,5,156,0,0,1307, + 1308,5,4,0,0,1308,179,1,0,0,0,1309,1310,5,49,0,0,1310,1311,5,3,0, + 0,1311,1312,5,156,0,0,1312,1313,5,4,0,0,1313,181,1,0,0,0,1314,1315, + 5,50,0,0,1315,1316,5,3,0,0,1316,1317,5,156,0,0,1317,1318,5,4,0,0, + 1318,183,1,0,0,0,1319,1320,5,51,0,0,1320,1321,5,3,0,0,1321,1322, + 5,13,0,0,1322,1323,5,4,0,0,1323,185,1,0,0,0,1324,1325,5,52,0,0,1325, + 1326,5,3,0,0,1326,1327,5,156,0,0,1327,1328,5,4,0,0,1328,187,1,0, + 0,0,1329,1330,5,53,0,0,1330,1331,5,3,0,0,1331,1332,3,406,203,0,1332, + 1333,5,4,0,0,1333,189,1,0,0,0,1334,1335,5,54,0,0,1335,1336,5,3,0, + 0,1336,1337,5,13,0,0,1337,1338,5,4,0,0,1338,191,1,0,0,0,1339,1340, + 5,55,0,0,1340,1341,5,3,0,0,1341,1342,3,406,203,0,1342,1343,5,4,0, + 0,1343,193,1,0,0,0,1344,1345,5,56,0,0,1345,1346,5,3,0,0,1346,1347, + 3,406,203,0,1347,1348,5,4,0,0,1348,195,1,0,0,0,1349,1350,5,57,0, + 0,1350,1351,5,3,0,0,1351,1355,5,1,0,0,1352,1354,3,386,193,0,1353, + 1352,1,0,0,0,1354,1357,1,0,0,0,1355,1353,1,0,0,0,1355,1356,1,0,0, + 0,1356,1358,1,0,0,0,1357,1355,1,0,0,0,1358,1359,5,2,0,0,1359,1360, + 5,4,0,0,1360,197,1,0,0,0,1361,1362,5,58,0,0,1362,1363,5,3,0,0,1363, + 1364,3,242,121,0,1364,1365,5,4,0,0,1365,199,1,0,0,0,1366,1367,5, + 59,0,0,1367,1368,5,3,0,0,1368,1369,3,406,203,0,1369,1370,5,4,0,0, + 1370,201,1,0,0,0,1371,1372,5,60,0,0,1372,1373,5,3,0,0,1373,1374, + 5,13,0,0,1374,1375,5,4,0,0,1375,203,1,0,0,0,1376,1377,5,61,0,0,1377, + 1378,5,3,0,0,1378,1379,5,13,0,0,1379,1380,5,4,0,0,1380,205,1,0,0, + 0,1381,1382,5,62,0,0,1382,1383,5,3,0,0,1383,1384,5,13,0,0,1384,1385, + 5,4,0,0,1385,207,1,0,0,0,1386,1387,5,63,0,0,1387,1388,5,3,0,0,1388, + 1389,5,13,0,0,1389,1390,5,4,0,0,1390,209,1,0,0,0,1391,1392,5,64, + 0,0,1392,1393,5,3,0,0,1393,1394,5,13,0,0,1394,1395,5,4,0,0,1395, + 211,1,0,0,0,1396,1397,5,65,0,0,1397,1398,5,3,0,0,1398,1399,3,404, + 202,0,1399,1400,5,4,0,0,1400,213,1,0,0,0,1401,1402,5,66,0,0,1402, + 1403,5,3,0,0,1403,1404,3,242,121,0,1404,1405,5,4,0,0,1405,215,1, + 0,0,0,1406,1407,5,67,0,0,1407,1408,5,3,0,0,1408,1409,3,240,120,0, + 1409,1410,5,4,0,0,1410,217,1,0,0,0,1411,1412,5,68,0,0,1412,1413, + 5,3,0,0,1413,1414,3,404,202,0,1414,1415,5,4,0,0,1415,219,1,0,0,0, + 1416,1417,5,69,0,0,1417,1418,5,3,0,0,1418,1419,5,157,0,0,1419,1420, + 5,4,0,0,1420,221,1,0,0,0,1421,1422,5,70,0,0,1422,1423,5,3,0,0,1423, + 1427,5,1,0,0,1424,1426,3,386,193,0,1425,1424,1,0,0,0,1426,1429,1, + 0,0,0,1427,1425,1,0,0,0,1427,1428,1,0,0,0,1428,1430,1,0,0,0,1429, + 1427,1,0,0,0,1430,1431,5,2,0,0,1431,1432,5,4,0,0,1432,223,1,0,0, + 0,1433,1434,5,71,0,0,1434,1435,5,3,0,0,1435,1436,5,156,0,0,1436, + 1437,5,4,0,0,1437,225,1,0,0,0,1438,1439,5,72,0,0,1439,1440,5,3,0, + 0,1440,1441,3,240,120,0,1441,1442,5,4,0,0,1442,227,1,0,0,0,1443, + 1444,5,73,0,0,1444,1445,5,3,0,0,1445,1446,3,404,202,0,1446,1447, + 5,4,0,0,1447,229,1,0,0,0,1448,1449,5,74,0,0,1449,1450,5,3,0,0,1450, + 1451,3,406,203,0,1451,1452,5,4,0,0,1452,231,1,0,0,0,1453,1454,5, + 75,0,0,1454,1455,5,3,0,0,1455,1456,3,404,202,0,1456,1457,5,4,0,0, + 1457,233,1,0,0,0,1458,1459,5,76,0,0,1459,1460,5,3,0,0,1460,1461, + 5,13,0,0,1461,1462,5,4,0,0,1462,235,1,0,0,0,1463,1464,5,77,0,0,1464, + 1465,5,3,0,0,1465,1466,3,240,120,0,1466,1467,5,4,0,0,1467,237,1, + 0,0,0,1468,1469,5,78,0,0,1469,1470,5,3,0,0,1470,1471,5,13,0,0,1471, + 1472,5,4,0,0,1472,239,1,0,0,0,1473,1478,5,5,0,0,1474,1475,5,156, + 0,0,1475,1477,5,6,0,0,1476,1474,1,0,0,0,1477,1480,1,0,0,0,1478,1476, + 1,0,0,0,1478,1479,1,0,0,0,1479,1481,1,0,0,0,1480,1478,1,0,0,0,1481, + 1482,5,7,0,0,1482,241,1,0,0,0,1483,1484,5,5,0,0,1484,1500,5,7,0, + 0,1485,1486,5,5,0,0,1486,1491,3,406,203,0,1487,1488,5,6,0,0,1488, + 1490,3,406,203,0,1489,1487,1,0,0,0,1490,1493,1,0,0,0,1491,1489,1, + 0,0,0,1491,1492,1,0,0,0,1492,1495,1,0,0,0,1493,1491,1,0,0,0,1494, + 1496,5,6,0,0,1495,1494,1,0,0,0,1495,1496,1,0,0,0,1496,1497,1,0,0, + 0,1497,1498,5,7,0,0,1498,1500,1,0,0,0,1499,1483,1,0,0,0,1499,1485, + 1,0,0,0,1500,243,1,0,0,0,1501,1506,5,5,0,0,1502,1503,5,158,0,0,1503, + 1505,5,6,0,0,1504,1502,1,0,0,0,1505,1508,1,0,0,0,1506,1504,1,0,0, + 0,1506,1507,1,0,0,0,1507,1509,1,0,0,0,1508,1506,1,0,0,0,1509,1510, + 5,7,0,0,1510,245,1,0,0,0,1511,1512,5,79,0,0,1512,1513,5,3,0,0,1513, + 1514,5,156,0,0,1514,1515,5,4,0,0,1515,247,1,0,0,0,1516,1517,5,80, + 0,0,1517,1518,5,3,0,0,1518,1519,3,240,120,0,1519,1520,5,4,0,0,1520, + 249,1,0,0,0,1521,1522,5,81,0,0,1522,1523,5,3,0,0,1523,1524,3,240, + 120,0,1524,1525,5,4,0,0,1525,251,1,0,0,0,1526,1527,5,82,0,0,1527, + 1528,5,3,0,0,1528,1529,3,404,202,0,1529,1530,5,4,0,0,1530,253,1, + 0,0,0,1531,1532,5,83,0,0,1532,1533,5,3,0,0,1533,1534,3,404,202,0, + 1534,1535,5,4,0,0,1535,255,1,0,0,0,1536,1537,5,84,0,0,1537,1538, + 5,3,0,0,1538,1539,3,404,202,0,1539,1540,5,4,0,0,1540,257,1,0,0,0, + 1541,1542,5,85,0,0,1542,1543,5,3,0,0,1543,1544,5,13,0,0,1544,1545, + 5,4,0,0,1545,259,1,0,0,0,1546,1547,5,86,0,0,1547,1548,5,3,0,0,1548, + 1549,3,240,120,0,1549,1550,5,4,0,0,1550,261,1,0,0,0,1551,1552,5, + 87,0,0,1552,1553,5,3,0,0,1553,1554,3,406,203,0,1554,1555,5,4,0,0, + 1555,263,1,0,0,0,1556,1557,5,88,0,0,1557,1558,5,3,0,0,1558,1559, + 5,156,0,0,1559,1560,5,4,0,0,1560,265,1,0,0,0,1561,1562,5,89,0,0, + 1562,1563,5,3,0,0,1563,1564,5,157,0,0,1564,1565,5,4,0,0,1565,267, + 1,0,0,0,1566,1567,5,90,0,0,1567,1568,5,3,0,0,1568,1569,5,13,0,0, + 1569,1570,5,4,0,0,1570,269,1,0,0,0,1571,1572,5,91,0,0,1572,1573, + 5,3,0,0,1573,1574,3,406,203,0,1574,1575,5,4,0,0,1575,271,1,0,0,0, + 1576,1577,5,92,0,0,1577,1578,5,3,0,0,1578,1579,3,406,203,0,1579, + 1580,5,4,0,0,1580,273,1,0,0,0,1581,1582,5,93,0,0,1582,1583,5,3,0, + 0,1583,1584,5,13,0,0,1584,1585,5,4,0,0,1585,275,1,0,0,0,1586,1587, + 5,94,0,0,1587,1588,5,3,0,0,1588,1589,3,404,202,0,1589,1590,5,4,0, + 0,1590,277,1,0,0,0,1591,1592,5,95,0,0,1592,1593,5,3,0,0,1593,1594, + 3,404,202,0,1594,1595,5,4,0,0,1595,279,1,0,0,0,1596,1597,5,96,0, + 0,1597,1598,5,3,0,0,1598,1599,3,242,121,0,1599,1600,5,4,0,0,1600, + 281,1,0,0,0,1601,1602,5,97,0,0,1602,1603,5,3,0,0,1603,1604,5,13, + 0,0,1604,1605,5,4,0,0,1605,283,1,0,0,0,1606,1607,5,98,0,0,1607,1608, + 5,3,0,0,1608,1609,3,242,121,0,1609,1610,5,4,0,0,1610,285,1,0,0,0, + 1611,1612,5,99,0,0,1612,1613,5,3,0,0,1613,1614,5,13,0,0,1614,1615, + 5,4,0,0,1615,287,1,0,0,0,1616,1617,5,100,0,0,1617,1618,5,3,0,0,1618, + 1619,3,404,202,0,1619,1620,5,4,0,0,1620,289,1,0,0,0,1621,1622,5, + 101,0,0,1622,1623,5,3,0,0,1623,1625,5,1,0,0,1624,1626,3,298,149, + 0,1625,1624,1,0,0,0,1625,1626,1,0,0,0,1626,1628,1,0,0,0,1627,1629, + 3,402,201,0,1628,1627,1,0,0,0,1628,1629,1,0,0,0,1629,1631,1,0,0, + 0,1630,1632,3,294,147,0,1631,1630,1,0,0,0,1631,1632,1,0,0,0,1632, + 1634,1,0,0,0,1633,1635,3,292,146,0,1634,1633,1,0,0,0,1634,1635,1, + 0,0,0,1635,1637,1,0,0,0,1636,1638,3,296,148,0,1637,1636,1,0,0,0, + 1637,1638,1,0,0,0,1638,1640,1,0,0,0,1639,1641,3,300,150,0,1640,1639, + 1,0,0,0,1640,1641,1,0,0,0,1641,1643,1,0,0,0,1642,1644,3,302,151, + 0,1643,1642,1,0,0,0,1643,1644,1,0,0,0,1644,1646,1,0,0,0,1645,1647, + 3,304,152,0,1646,1645,1,0,0,0,1646,1647,1,0,0,0,1647,1649,1,0,0, + 0,1648,1650,3,306,153,0,1649,1648,1,0,0,0,1649,1650,1,0,0,0,1650, + 1651,1,0,0,0,1651,1652,5,2,0,0,1652,1653,5,4,0,0,1653,291,1,0,0, + 0,1654,1655,5,102,0,0,1655,1656,5,3,0,0,1656,1657,5,13,0,0,1657, + 1658,5,4,0,0,1658,293,1,0,0,0,1659,1660,5,103,0,0,1660,1661,5,3, + 0,0,1661,1662,5,158,0,0,1662,1663,5,4,0,0,1663,295,1,0,0,0,1664, + 1665,5,104,0,0,1665,1666,5,3,0,0,1666,1667,5,13,0,0,1667,1668,5, + 4,0,0,1668,297,1,0,0,0,1669,1670,5,105,0,0,1670,1671,5,3,0,0,1671, + 1672,7,0,0,0,1672,1673,5,4,0,0,1673,299,1,0,0,0,1674,1675,5,106, + 0,0,1675,1676,5,3,0,0,1676,1677,5,13,0,0,1677,1678,5,4,0,0,1678, + 301,1,0,0,0,1679,1680,5,107,0,0,1680,1681,5,3,0,0,1681,1682,5,13, + 0,0,1682,1683,5,4,0,0,1683,303,1,0,0,0,1684,1685,5,108,0,0,1685, + 1686,5,3,0,0,1686,1687,3,406,203,0,1687,1688,5,4,0,0,1688,305,1, + 0,0,0,1689,1690,5,109,0,0,1690,1691,5,3,0,0,1691,1695,5,1,0,0,1692, + 1694,3,308,154,0,1693,1692,1,0,0,0,1694,1697,1,0,0,0,1695,1693,1, + 0,0,0,1695,1696,1,0,0,0,1696,1698,1,0,0,0,1697,1695,1,0,0,0,1698, + 1699,5,2,0,0,1699,1700,5,4,0,0,1700,307,1,0,0,0,1701,1702,5,156, + 0,0,1702,1703,5,3,0,0,1703,1705,5,1,0,0,1704,1706,3,310,155,0,1705, + 1704,1,0,0,0,1705,1706,1,0,0,0,1706,1708,1,0,0,0,1707,1709,3,312, + 156,0,1708,1707,1,0,0,0,1708,1709,1,0,0,0,1709,1711,1,0,0,0,1710, + 1712,3,314,157,0,1711,1710,1,0,0,0,1711,1712,1,0,0,0,1712,1714,1, + 0,0,0,1713,1715,3,316,158,0,1714,1713,1,0,0,0,1714,1715,1,0,0,0, + 1715,1717,1,0,0,0,1716,1718,3,292,146,0,1717,1716,1,0,0,0,1717,1718, + 1,0,0,0,1718,1720,1,0,0,0,1719,1721,3,318,159,0,1720,1719,1,0,0, + 0,1720,1721,1,0,0,0,1721,1723,1,0,0,0,1722,1724,3,396,198,0,1723, + 1722,1,0,0,0,1723,1724,1,0,0,0,1724,1726,1,0,0,0,1725,1727,3,312, + 156,0,1726,1725,1,0,0,0,1726,1727,1,0,0,0,1727,1728,1,0,0,0,1728, + 1729,5,2,0,0,1729,1730,5,4,0,0,1730,309,1,0,0,0,1731,1732,5,110, + 0,0,1732,1733,5,3,0,0,1733,1734,5,158,0,0,1734,1735,5,4,0,0,1735, + 311,1,0,0,0,1736,1737,5,111,0,0,1737,1738,5,3,0,0,1738,1739,5,156, + 0,0,1739,1740,5,4,0,0,1740,313,1,0,0,0,1741,1742,5,112,0,0,1742, + 1743,5,3,0,0,1743,1744,3,404,202,0,1744,1745,5,4,0,0,1745,315,1, + 0,0,0,1746,1747,5,113,0,0,1747,1748,5,3,0,0,1748,1749,3,404,202, + 0,1749,1750,5,4,0,0,1750,317,1,0,0,0,1751,1752,5,114,0,0,1752,1753, + 5,3,0,0,1753,1754,5,158,0,0,1754,1755,5,4,0,0,1755,319,1,0,0,0,1756, + 1757,5,115,0,0,1757,1758,5,3,0,0,1758,1759,5,157,0,0,1759,1760,5, + 4,0,0,1760,321,1,0,0,0,1761,1762,5,116,0,0,1762,1763,5,3,0,0,1763, + 1764,5,158,0,0,1764,1765,5,4,0,0,1765,323,1,0,0,0,1766,1767,5,117, + 0,0,1767,1768,5,3,0,0,1768,1769,5,13,0,0,1769,1770,5,4,0,0,1770, + 325,1,0,0,0,1771,1772,5,118,0,0,1772,1773,5,3,0,0,1773,1774,3,242, + 121,0,1774,1775,5,4,0,0,1775,327,1,0,0,0,1776,1777,5,119,0,0,1777, + 1778,5,3,0,0,1778,1779,5,156,0,0,1779,1780,5,4,0,0,1780,329,1,0, + 0,0,1781,1782,5,120,0,0,1782,1783,5,3,0,0,1783,1784,5,156,0,0,1784, + 1785,5,4,0,0,1785,331,1,0,0,0,1786,1787,5,121,0,0,1787,1788,5,3, + 0,0,1788,1789,3,240,120,0,1789,1790,5,4,0,0,1790,333,1,0,0,0,1791, + 1792,5,122,0,0,1792,1793,5,3,0,0,1793,1794,5,13,0,0,1794,1795,5, + 4,0,0,1795,335,1,0,0,0,1796,1797,5,123,0,0,1797,1798,5,3,0,0,1798, + 1799,3,404,202,0,1799,1800,5,4,0,0,1800,337,1,0,0,0,1801,1802,5, + 124,0,0,1802,1803,5,3,0,0,1803,1804,3,406,203,0,1804,1805,5,4,0, + 0,1805,1814,1,0,0,0,1806,1807,5,124,0,0,1807,1808,5,3,0,0,1808,1809, + 5,5,0,0,1809,1810,3,378,189,0,1810,1811,5,7,0,0,1811,1812,5,4,0, + 0,1812,1814,1,0,0,0,1813,1801,1,0,0,0,1813,1806,1,0,0,0,1814,339, + 1,0,0,0,1815,1816,5,125,0,0,1816,1817,5,3,0,0,1817,1818,3,404,202, + 0,1818,1819,5,4,0,0,1819,341,1,0,0,0,1820,1821,5,126,0,0,1821,1822, + 5,3,0,0,1822,1823,3,240,120,0,1823,1824,5,4,0,0,1824,343,1,0,0,0, + 1825,1826,5,127,0,0,1826,1827,5,3,0,0,1827,1828,3,242,121,0,1828, + 1829,5,4,0,0,1829,345,1,0,0,0,1830,1831,5,128,0,0,1831,1832,5,3, + 0,0,1832,1833,3,242,121,0,1833,1834,5,4,0,0,1834,347,1,0,0,0,1835, + 1836,5,129,0,0,1836,1837,5,3,0,0,1837,1838,3,242,121,0,1838,1839, + 5,4,0,0,1839,349,1,0,0,0,1840,1841,5,130,0,0,1841,1842,5,3,0,0,1842, + 1843,3,242,121,0,1843,1844,5,4,0,0,1844,351,1,0,0,0,1845,1846,5, + 131,0,0,1846,1847,5,3,0,0,1847,1848,3,404,202,0,1848,1849,5,4,0, + 0,1849,353,1,0,0,0,1850,1851,5,132,0,0,1851,1852,5,3,0,0,1852,1853, + 5,157,0,0,1853,1854,5,4,0,0,1854,355,1,0,0,0,1855,1856,5,133,0,0, + 1856,1857,5,3,0,0,1857,1858,3,404,202,0,1858,1859,5,4,0,0,1859,357, + 1,0,0,0,1860,1861,5,134,0,0,1861,1862,5,3,0,0,1862,1863,5,13,0,0, + 1863,1864,5,4,0,0,1864,359,1,0,0,0,1865,1866,5,135,0,0,1866,1867, + 5,3,0,0,1867,1868,5,156,0,0,1868,1869,5,4,0,0,1869,361,1,0,0,0,1870, + 1871,5,136,0,0,1871,1872,5,3,0,0,1872,1873,5,156,0,0,1873,1874,5, + 4,0,0,1874,363,1,0,0,0,1875,1876,5,137,0,0,1876,1877,5,3,0,0,1877, + 1878,3,406,203,0,1878,1879,5,4,0,0,1879,365,1,0,0,0,1880,1881,5, + 138,0,0,1881,1882,5,3,0,0,1882,1883,5,156,0,0,1883,1884,5,4,0,0, + 1884,367,1,0,0,0,1885,1886,5,139,0,0,1886,1887,5,3,0,0,1887,1888, + 5,156,0,0,1888,1889,5,4,0,0,1889,369,1,0,0,0,1890,1891,5,140,0,0, + 1891,1892,5,3,0,0,1892,1896,5,1,0,0,1893,1895,3,386,193,0,1894,1893, + 1,0,0,0,1895,1898,1,0,0,0,1896,1894,1,0,0,0,1896,1897,1,0,0,0,1897, + 1899,1,0,0,0,1898,1896,1,0,0,0,1899,1900,5,2,0,0,1900,1901,5,4,0, + 0,1901,371,1,0,0,0,1902,1903,5,141,0,0,1903,1904,5,3,0,0,1904,1905, + 3,240,120,0,1905,1906,5,4,0,0,1906,373,1,0,0,0,1907,1908,5,142,0, + 0,1908,1909,5,3,0,0,1909,1910,3,404,202,0,1910,1911,5,4,0,0,1911, + 375,1,0,0,0,1912,1913,5,143,0,0,1913,1914,5,3,0,0,1914,1915,5,13, + 0,0,1915,1916,5,4,0,0,1916,377,1,0,0,0,1917,1919,3,380,190,0,1918, + 1917,1,0,0,0,1919,1922,1,0,0,0,1920,1918,1,0,0,0,1920,1921,1,0,0, + 0,1921,379,1,0,0,0,1922,1920,1,0,0,0,1923,1924,5,1,0,0,1924,1925, + 5,144,0,0,1925,1926,5,3,0,0,1926,1927,5,156,0,0,1927,1928,5,4,0, + 0,1928,1929,5,145,0,0,1929,1930,5,3,0,0,1930,1931,5,156,0,0,1931, + 1932,5,4,0,0,1932,1933,5,2,0,0,1933,1934,5,6,0,0,1934,381,1,0,0, + 0,1935,1936,5,153,0,0,1936,1937,5,3,0,0,1937,1938,3,242,121,0,1938, + 1939,5,4,0,0,1939,383,1,0,0,0,1940,1941,5,154,0,0,1941,1942,5,3, + 0,0,1942,1943,3,240,120,0,1943,1944,5,4,0,0,1944,385,1,0,0,0,1945, + 1946,3,406,203,0,1946,1947,5,3,0,0,1947,1948,3,406,203,0,1948,1949, + 5,4,0,0,1949,1987,1,0,0,0,1950,1951,3,406,203,0,1951,1952,5,3,0, + 0,1952,1953,5,13,0,0,1953,1954,5,4,0,0,1954,1987,1,0,0,0,1955,1956, + 3,406,203,0,1956,1957,5,3,0,0,1957,1958,5,160,0,0,1958,1959,5,4, + 0,0,1959,1987,1,0,0,0,1960,1961,3,406,203,0,1961,1962,5,3,0,0,1962, + 1963,5,1,0,0,1963,1964,3,386,193,0,1964,1965,5,2,0,0,1965,1966,5, + 4,0,0,1966,1987,1,0,0,0,1967,1968,3,406,203,0,1968,1969,5,3,0,0, + 1969,1971,5,5,0,0,1970,1972,3,406,203,0,1971,1970,1,0,0,0,1971,1972, + 1,0,0,0,1972,1977,1,0,0,0,1973,1974,5,6,0,0,1974,1976,3,406,203, + 0,1975,1973,1,0,0,0,1976,1979,1,0,0,0,1977,1975,1,0,0,0,1977,1978, + 1,0,0,0,1978,1981,1,0,0,0,1979,1977,1,0,0,0,1980,1982,5,6,0,0,1981, + 1980,1,0,0,0,1981,1982,1,0,0,0,1982,1983,1,0,0,0,1983,1984,5,7,0, + 0,1984,1985,5,4,0,0,1985,1987,1,0,0,0,1986,1945,1,0,0,0,1986,1950, + 1,0,0,0,1986,1955,1,0,0,0,1986,1960,1,0,0,0,1986,1967,1,0,0,0,1987, + 387,1,0,0,0,1988,1989,5,146,0,0,1989,1990,5,3,0,0,1990,1991,3,240, + 120,0,1991,1992,5,4,0,0,1992,389,1,0,0,0,1993,1994,5,147,0,0,1994, + 1995,5,3,0,0,1995,1996,5,13,0,0,1996,1997,5,4,0,0,1997,391,1,0,0, + 0,1998,1999,5,148,0,0,1999,2000,5,3,0,0,2000,2001,3,404,202,0,2001, + 2002,5,4,0,0,2002,393,1,0,0,0,2003,2004,5,149,0,0,2004,2005,5,3, + 0,0,2005,2009,5,1,0,0,2006,2008,3,386,193,0,2007,2006,1,0,0,0,2008, + 2011,1,0,0,0,2009,2007,1,0,0,0,2009,2010,1,0,0,0,2010,2012,1,0,0, + 0,2011,2009,1,0,0,0,2012,2013,5,2,0,0,2013,2014,5,4,0,0,2014,395, + 1,0,0,0,2015,2016,5,150,0,0,2016,2017,5,3,0,0,2017,2021,5,1,0,0, + 2018,2020,3,386,193,0,2019,2018,1,0,0,0,2020,2023,1,0,0,0,2021,2019, + 1,0,0,0,2021,2022,1,0,0,0,2022,2024,1,0,0,0,2023,2021,1,0,0,0,2024, + 2025,5,2,0,0,2025,2026,5,4,0,0,2026,397,1,0,0,0,2027,2028,5,151, + 0,0,2028,2029,5,3,0,0,2029,2030,5,156,0,0,2030,2031,5,4,0,0,2031, + 399,1,0,0,0,2032,2033,5,152,0,0,2033,2034,5,3,0,0,2034,2035,5,158, + 0,0,2035,2036,5,4,0,0,2036,401,1,0,0,0,2037,2038,5,155,0,0,2038, + 2039,5,3,0,0,2039,2040,3,406,203,0,2040,2041,5,4,0,0,2041,403,1, + 0,0,0,2042,2049,5,158,0,0,2043,2049,5,157,0,0,2044,2049,5,18,0,0, + 2045,2049,5,10,0,0,2046,2049,5,11,0,0,2047,2049,3,408,204,0,2048, + 2042,1,0,0,0,2048,2043,1,0,0,0,2048,2044,1,0,0,0,2048,2045,1,0,0, + 0,2048,2046,1,0,0,0,2048,2047,1,0,0,0,2049,405,1,0,0,0,2050,2054, + 3,404,202,0,2051,2054,5,13,0,0,2052,2054,5,159,0,0,2053,2050,1,0, + 0,0,2053,2051,1,0,0,0,2053,2052,1,0,0,0,2054,407,1,0,0,0,2055,2056, + 7,1,0,0,2056,409,1,0,0,0,162,440,443,446,449,452,455,458,461,464, + 467,471,474,477,481,484,487,490,493,496,499,504,507,510,523,528, + 533,538,543,548,553,558,563,568,573,578,583,588,593,598,603,608, + 613,618,623,628,633,638,643,648,653,662,665,670,680,683,686,689, + 692,703,710,713,723,726,748,752,755,766,769,772,775,778,781,784, + 787,790,793,796,799,802,805,808,811,814,856,859,862,865,868,872, + 875,878,901,904,909,912,916,943,947,950,953,956,960,964,967,970, + 974,977,989,1012,1017,1020,1023,1026,1029,1035,1072,1075,1078,1081, + 1084,1087,1099,1110,1124,1143,1156,1355,1427,1478,1491,1495,1499, + 1506,1625,1628,1631,1634,1637,1640,1643,1646,1649,1695,1705,1708, + 1711,1714,1717,1720,1723,1726,1813,1896,1920,1971,1977,1981,1986, + 2009,2021,2048,2053 ] class PBXProjParser ( Parser ): @@ -747,7 +788,8 @@ class PBXProjParser ( Parser ): "'rootObject'", "'/'", "'_'", "'$'", "'PBXAggregateTarget'", "'PBXBuildFile'", "'PBXBuildRule'", "'PBXBuildStyle'", "'PBXContainerItemProxy'", "'PBXCopyFilesBuildPhase'", - "'PBXFileReference'", "'PBXFrameworksBuildPhase'", + "'PBXFileReference'", "'PBXFileSystemSynchronizedBuildFileExceptionSet'", + "'PBXFileSystemSynchronizedRootGroup'", "'PBXFrameworksBuildPhase'", "'PBXGroup'", "'PBXHeadersBuildPhase'", "'PBXNativeTarget'", "'PBXLegacyTarget'", "'PBXProject'", "'PBXReferenceProxy'", "", "'PBXShellScriptBuildPhase'", "'PBXShellBuildPhase'", @@ -757,18 +799,18 @@ class PBXProjParser ( Parser ): "'XCVersionGroup'", "'alwaysOutOfDate'", "'fileRef'", "'productRef'", "'containerPortal'", "'proxyType'", "'remoteGlobalIDString'", "'remoteInfo'", "'fileEncoding'", - "'comments'", "'explicitFileType'", "'lastKnownFileType'", - "'includeInIndex'", "'indentWidth'", "'tabWidth'", - "'usesTabs'", "'wrapsLines'", "'platformFilter'", "'platformFilters'", - "'children'", "'productInstallPath'", "'repositoryURL'", - "'requirement'", "'package'", "'packageProductDependencies'", - "'name'", "'path'", "'sourceTree'", "'buildActionMask'", - "'files'", "'runOnlyForDeploymentPostprocessing'", - "'buildConfigurationList'", "'buildPhases'", "'buildRules'", - "'buildArgumentsString'", "'buildToolPath'", "'buildWorkingDirectory'", - "'passBuildSettingsInEnvironment'", "'dependencies'", - "'productName'", "'productReference'", "'productType'", - "'lineEnding'", "'xcLanguageSpecificationIdentifier'", + "'comments'", "'explicitFileType'", "'explicitFileTypes'", + "'explicitFolders'", "'lastKnownFileType'", "'includeInIndex'", + "'indentWidth'", "'tabWidth'", "'usesTabs'", "'wrapsLines'", + "'platformFilter'", "'platformFilters'", "'children'", + "'productInstallPath'", "'repositoryURL'", "'requirement'", + "'package'", "'packageProductDependencies'", "'name'", + "'path'", "'sourceTree'", "'buildActionMask'", "'files'", + "'runOnlyForDeploymentPostprocessing'", "'buildConfigurationList'", + "'buildPhases'", "'buildRules'", "'buildArgumentsString'", + "'buildToolPath'", "'buildWorkingDirectory'", "'passBuildSettingsInEnvironment'", + "'dependencies'", "'productName'", "'productReference'", + "'productType'", "'lineEnding'", "'xcLanguageSpecificationIdentifier'", "'plistStructureDefinitionIdentifier'", "'refType'", "'compilerSpec'", "'filePatterns'", "'inputFiles'", "'isEditable'", "'outputFiles'", "'runOncePerArchitecture'", @@ -780,17 +822,18 @@ class PBXProjParser ( Parser ): "'DevelopmentTeamName'", "'ProvisioningStyle'", "'compatibilityVersion'", "'developmentRegion'", "'hasScannedForEncodings'", "'knownRegions'", "'mainGroup'", "'productRefGroup'", - "'packageReferences'", "'projectDirPath'", "'projectReferences'", - "'projectRoot'", "'targets'", "'inputFileListPaths'", - "'inputPaths'", "'outputFileListPaths'", "'outputPaths'", - "'shellPath'", "'shell'", "'shellScript'", "'showEnvVarsInLog'", - "'target'", "'targetProxy'", "'fileType'", "'remoteRef'", - "'baseConfigurationReference'", "'buildSettings'", - "'buildStyles'", "'dstPath'", "'dstSubfolderSpec'", + "'packageReferences'", "'preferredProjectObjectVersion'", + "'projectDirPath'", "'projectReferences'", "'projectRoot'", + "'targets'", "'inputFileListPaths'", "'inputPaths'", + "'outputFileListPaths'", "'outputPaths'", "'shellPath'", + "'shell'", "'shellScript'", "'showEnvVarsInLog'", "'target'", + "'targetProxy'", "'fileType'", "'remoteRef'", "'baseConfigurationReference'", + "'buildSettings'", "'buildStyles'", "'dstPath'", "'dstSubfolderSpec'", "'ProductGroup'", "'ProjectRef'", "'buildConfigurations'", "'defaultConfigurationIsVisible'", "'defaultConfigurationName'", "'settings'", "'SystemCapabilities'", "'currentVersion'", - "'versionGroupType'", "'CLASSPREFIX'" ] + "'versionGroupType'", "'membershipExceptions'", "'exceptions'", + "'CLASSPREFIX'" ] symbolicNames = [ "", "", "", "", "", "", "", "", @@ -799,7 +842,8 @@ class PBXProjParser ( Parser ): "SLASH", "UNDERSCORE", "DOLLAR", "PBX_AGGREGATE_TARGET", "PBX_BUILD_FILE", "PBX_BUILD_RULE", "PBX_BUILD_STYLE", "PBX_CONTAINER_ITEM_PROXY", "PBX_COPY_FILES_BUILD_PHASE", - "PBX_FILE_REFERENCE", "PBX_FRAMEWORKS_BUILD_PHASE", + "PBX_FILE_REFERENCE", "PBX_FILE_SYSTEM_SYNCHRONIZED_BUILD_FILE_EXCEPTION_SET", + "PBX_FILE_SYSTEM_SYNCHRONIZED_ROOT_GROUP", "PBX_FRAMEWORKS_BUILD_PHASE", "PBX_GROUP", "PBX_HEADERS_BUILD_PHASE", "PBX_NATIVE_TARGET", "PBX_LEGACY_TARGET", "PBX_PROJECT", "PBX_REFERENCE_PROXY", "PBX_RESOURCES_BUILD_PHASE", "PBX_SHELL_SCRIPT_BUILD_PHASE", @@ -810,10 +854,11 @@ class PBXProjParser ( Parser ): "ALWAYS_OUT_OF_DATE", "FILE_REF", "PRODUCT_REF", "CONTAINER_PORTAL", "PROXY_TYPE", "REMOTE_GLOBAL_ID_STRING", "REMOTE_INFO", "FILE_ENCODING", "COMMENTS", "EXPLICIT_FILE_TYPE", - "LAST_KNOWN_FILE_TYPE", "INCLUDE_IN_INDEX", "INDENT_WIDTH", - "TAB_WIDTH", "USES_TABS", "WRAPS_LINES", "PLATFORM_FILTER", - "PLATFORM_FILTERS", "CHILDREN", "PRODUCT_INSTALL_PATH", - "REPOSITORY_URL", "REQUIREMENT", "PACKAGE", "PACKAGE_PRODUCT_DEPENDENCIES", + "EXPLICIT_FILE_TYPES", "EXPLICIT_FOLDERS", "LAST_KNOWN_FILE_TYPE", + "INCLUDE_IN_INDEX", "INDENT_WIDTH", "TAB_WIDTH", "USES_TABS", + "WRAPS_LINES", "PLATFORM_FILTER", "PLATFORM_FILTERS", + "CHILDREN", "PRODUCT_INSTALL_PATH", "REPOSITORY_URL", + "REQUIREMENT", "PACKAGE", "PACKAGE_PRODUCT_DEPENDENCIES", "NAME", "PATH", "SOURCE_TREE", "BUILD_ACTION_MASK", "FILES", "RUN_ONLY_FOR_DEPLOYMENT_POSTPROCESSING", "BUILD_CONFIGURATION_LIST", "BUILD_PHASES", "BUILD_RULES", @@ -831,20 +876,20 @@ class PBXProjParser ( Parser ): "TEST_TARGET_ID", "DEVELOPMENT_TEAM", "DEVELOPMENT_TEAM_NAME", "PROVISIONING_STYLE", "COMPATIBILITY_VERSION", "DEVELOPMENT_REGION", "HAS_SCANNED_FOR_ENCODINGS", "KNOWN_REGIONS", "MAIN_GROUP", - "PRODUCT_REF_GROUP", "PACKAGE_REFERENCES", "PRODUCT_DIR_PATH", - "PROJECT_REFERENCES", "PROJECT_ROOT", "TARGETS", "INPUT_FILE_LIST_PATHS", - "INPUT_PATHS", "OUTPUT_FILE_LIST_PATHS", "OUTPUT_PATHS", - "SHELL_PATH", "SHELL", "SHELL_SCRIPT", "SHOW_ENV_VARS_IN_LOG", - "TARGET", "TARGET_PROXY", "FILE_TYPE", "REMOTE_REF", - "BASE_CONFIGURATION_REFERENCE", "BUILD_SETTINGS", - "BUILD_STYLES", "DST_PATH", "DST_SUBFOLDER_SPEC", + "PRODUCT_REF_GROUP", "PACKAGE_REFERENCES", "PREFERRED_PROJECT_OBJECT_VERSION", + "PRODUCT_DIR_PATH", "PROJECT_REFERENCES", "PROJECT_ROOT", + "TARGETS", "INPUT_FILE_LIST_PATHS", "INPUT_PATHS", + "OUTPUT_FILE_LIST_PATHS", "OUTPUT_PATHS", "SHELL_PATH", + "SHELL", "SHELL_SCRIPT", "SHOW_ENV_VARS_IN_LOG", "TARGET", + "TARGET_PROXY", "FILE_TYPE", "REMOTE_REF", "BASE_CONFIGURATION_REFERENCE", + "BUILD_SETTINGS", "BUILD_STYLES", "DST_PATH", "DST_SUBFOLDER_SPEC", "PRODUCT_GROUP", "PROJECT_REF", "BUILD_CONFIGURATIONS", "DEFAULT_CONFIGURATION_IS_VISIBLE", "DEFAULT_CONFIGURATION_NAME", "SETTINGS", "SYSTEM_CAPABILITIES", "CURRENT_VERSION", - "VERSION_GROUP_TYPE", "CLASSPREFIX", "REFERENCE", - "QUOTED_STRING", "NON_QUOTED_STRING", "VARIABLE", - "ALPHA_NUMERIC", "ALPHA_NUMERIC_CAP", "WS", "COMMENT", - "LINE_COMMENT" ] + "VERSION_GROUP_TYPE", "MEMBERSHIP_EXCEPTIONS", "EXCEPTIONS", + "CLASSPREFIX", "REFERENCE", "QUOTED_STRING", "NON_QUOTED_STRING", + "VARIABLE", "ALPHA_NUMERIC", "ALPHA_NUMERIC_CAP", + "WS", "COMMENT", "LINE_COMMENT" ] RULE_start = 0 RULE_root_element = 1 @@ -860,192 +905,204 @@ class PBXProjParser ( Parser ): RULE_pbx_container_item_proxy_section = 11 RULE_pbx_copy_files_build_phase_section = 12 RULE_pbx_file_reference_section = 13 - RULE_pbx_frameworks_build_phase_section = 14 - RULE_pbx_group_section = 15 - RULE_pbx_headers_build_phase_section = 16 - RULE_pbx_native_target_section = 17 - RULE_pbx_legacy_target_section = 18 - RULE_pbx_project_section = 19 - RULE_pbx_reference_proxy_section = 20 - RULE_pbx_resources_build_phase_section = 21 - RULE_pbx_shell_script_build_phase_section = 22 - RULE_pbx_shell_build_phase_section = 23 - RULE_pbx_sources_build_phase_section = 24 - RULE_pbx_target_dependency_section = 25 - RULE_pbx_variant_group_section = 26 - RULE_xc_build_configuration_section = 27 - RULE_xc_configuration_list_section = 28 - RULE_xc_remote_swift_package_reference_section = 29 - RULE_xc_swift_package_product_dependency_section = 30 - RULE_xc_version_group_section = 31 - RULE_pbx_aggregate_target = 32 - RULE_pbx_build_file = 33 - RULE_pbx_build_rule = 34 - RULE_pbx_build_style = 35 - RULE_pbx_container_item_proxy = 36 - RULE_pbx_copy_files_build_phase = 37 - RULE_pbx_file_reference = 38 - RULE_pbx_frameworks_build_phase = 39 - RULE_pbx_group = 40 - RULE_pbx_headers_build_phase = 41 - RULE_pbx_native_target = 42 - RULE_pbx_legacy_target = 43 - RULE_pbx_project = 44 - RULE_pbx_reference_proxy = 45 - RULE_pbx_resources_build_phase = 46 - RULE_pbx_shell_script_build_phase = 47 - RULE_pbx_shell_build_phase = 48 - RULE_pbx_sources_build_phase = 49 - RULE_pbx_target_dependency = 50 - RULE_pbx_variant_group = 51 - RULE_xc_build_configuration = 52 - RULE_xc_configuration_list = 53 - RULE_xc_remote_swift_package_reference = 54 - RULE_xc_swift_package_product_dependency = 55 - RULE_xc_version_group = 56 - RULE_isa_pbx_aggregate_target = 57 - RULE_isa_pbx_build_file = 58 - RULE_isa_pbx_build_rule = 59 - RULE_isa_pbx_build_style = 60 - RULE_isa_pbx_container_item_proxy = 61 - RULE_isa_pbx_copy_files_build_phase = 62 - RULE_isa_pbx_file_reference = 63 - RULE_isa_pbx_frameworks_build_phase = 64 - RULE_isa_pbx_group = 65 - RULE_isa_pbx_header_build_phase = 66 - RULE_isa_pbx_native_target = 67 - RULE_isa_pbx_legacy_target = 68 - RULE_isa_pbx_project = 69 - RULE_isa_pbx_reference_proxy = 70 - RULE_isa_pbx_resources_build_phase = 71 - RULE_isa_pbx_shell_script_build_phase = 72 - RULE_isa_pbx_shell_build_phase = 73 - RULE_isa_pbx_sources_build_phase = 74 - RULE_isa_pbx_target_dependency = 75 - RULE_isa_pbx_variant_group = 76 - RULE_isa_xc_build_configuration = 77 - RULE_isa_xc_configuration_list = 78 - RULE_isa_xc_remote_swift_package_reference = 79 - RULE_isa_xc_swift_package_product_dependency = 80 - RULE_isa_xc_version_group = 81 - RULE_always_out_of_date = 82 - RULE_file_ref = 83 - RULE_product_ref = 84 - RULE_container_portal = 85 - RULE_proxy_type = 86 - RULE_remote_global_id_string = 87 - RULE_remote_info = 88 - RULE_file_encoding = 89 - RULE_comments = 90 - RULE_explicit_file_type = 91 - RULE_last_known_file_type = 92 - RULE_include_in_index = 93 - RULE_indent_width = 94 - RULE_tab_width = 95 - RULE_uses_tabs = 96 - RULE_wraps_lines = 97 - RULE_platform_filter = 98 - RULE_platform_filters = 99 - RULE_children = 100 - RULE_product_install_path = 101 - RULE_repository_url = 102 - RULE_requirement = 103 - RULE_xc_package = 104 - RULE_package_product_dependencies = 105 - RULE_name = 106 - RULE_path = 107 - RULE_source_tree = 108 - RULE_build_action_mask = 109 - RULE_files = 110 - RULE_run_only_for_deployment_postprocessing = 111 - RULE_reference_list = 112 - RULE_any_string_list = 113 - RULE_non_quoted_strings_list = 114 - RULE_build_configuration_list = 115 - RULE_build_phases = 116 - RULE_build_rules = 117 - RULE_build_arguments_string = 118 - RULE_build_tool_path = 119 - RULE_build_working_directory = 120 - RULE_pass_build_settings_in_environment = 121 - RULE_dependencies = 122 - RULE_product_name = 123 - RULE_product_reference = 124 - RULE_product_type = 125 - RULE_line_ending = 126 - RULE_xc_language_specification_identifier = 127 - RULE_plist_structure_definition_identifier = 128 - RULE_ref_type = 129 - RULE_compiler_spec = 130 - RULE_file_patterns = 131 - RULE_input_files = 132 - RULE_is_editable = 133 - RULE_output_files = 134 - RULE_run_once_per_arch = 135 - RULE_script = 136 - RULE_attributes = 137 - RULE_last_swift_migration = 138 - RULE_default_build_system_type_for_workspace = 139 - RULE_last_swift_update_check = 140 - RULE_build_targets_in_parallel = 141 - RULE_last_testing_upgrade_check = 142 - RULE_last_upgrade_check = 143 - RULE_organization_name = 144 - RULE_target_attributes = 145 - RULE_target_attribute = 146 - RULE_created_on_tools_version = 147 - RULE_test_target_id = 148 - RULE_development_team = 149 - RULE_development_team_name = 150 - RULE_provisioning_style = 151 - RULE_compatibility_version = 152 - RULE_development_region = 153 - RULE_has_scanned_for_encodings = 154 - RULE_known_regions = 155 - RULE_main_group = 156 - RULE_product_ref_group = 157 - RULE_package_references = 158 - RULE_project_dir_path = 159 - RULE_project_references = 160 - RULE_project_root = 161 - RULE_targets = 162 - RULE_input_file_list_paths = 163 - RULE_input_paths = 164 - RULE_output_file_list_paths = 165 - RULE_output_paths = 166 - RULE_shell_path = 167 - RULE_shell = 168 - RULE_shell_script = 169 - RULE_show_env_vars_in_log = 170 - RULE_target = 171 - RULE_target_proxy = 172 - RULE_file_type = 173 - RULE_remote_ref = 174 - RULE_base_configuration_reference = 175 - RULE_build_settings = 176 - RULE_build_styles = 177 - RULE_dst_path = 178 - RULE_dst_subfolder_spec = 179 - RULE_project_references_list = 180 - RULE_project_references_list_element = 181 - RULE_key_value = 182 - RULE_build_configurations = 183 - RULE_default_configuration_is_visible = 184 - RULE_default_configuration_name = 185 - RULE_settings = 186 - RULE_system_capabilities = 187 - RULE_current_version = 188 - RULE_version_group_type = 189 - RULE_class_prefix = 190 - RULE_any_string = 191 - RULE_str_number_variable = 192 - RULE_any_token = 193 + RULE_pbx_file_system_synchronized_build_file_exception_set_section = 14 + RULE_pbx_file_system_synchronized_root_group_section = 15 + RULE_pbx_frameworks_build_phase_section = 16 + RULE_pbx_group_section = 17 + RULE_pbx_headers_build_phase_section = 18 + RULE_pbx_native_target_section = 19 + RULE_pbx_legacy_target_section = 20 + RULE_pbx_project_section = 21 + RULE_pbx_reference_proxy_section = 22 + RULE_pbx_resources_build_phase_section = 23 + RULE_pbx_shell_script_build_phase_section = 24 + RULE_pbx_shell_build_phase_section = 25 + RULE_pbx_sources_build_phase_section = 26 + RULE_pbx_target_dependency_section = 27 + RULE_pbx_variant_group_section = 28 + RULE_xc_build_configuration_section = 29 + RULE_xc_configuration_list_section = 30 + RULE_xc_remote_swift_package_reference_section = 31 + RULE_xc_swift_package_product_dependency_section = 32 + RULE_xc_version_group_section = 33 + RULE_pbx_aggregate_target = 34 + RULE_pbx_build_file = 35 + RULE_pbx_build_rule = 36 + RULE_pbx_build_style = 37 + RULE_pbx_container_item_proxy = 38 + RULE_pbx_copy_files_build_phase = 39 + RULE_pbx_file_reference = 40 + RULE_pbx_file_system_synchronized_build_file_exception_set = 41 + RULE_pbx_file_system_synchronized_root_group = 42 + RULE_pbx_frameworks_build_phase = 43 + RULE_pbx_group = 44 + RULE_pbx_headers_build_phase = 45 + RULE_pbx_native_target = 46 + RULE_pbx_legacy_target = 47 + RULE_pbx_project = 48 + RULE_pbx_reference_proxy = 49 + RULE_pbx_resources_build_phase = 50 + RULE_pbx_shell_script_build_phase = 51 + RULE_pbx_shell_build_phase = 52 + RULE_pbx_sources_build_phase = 53 + RULE_pbx_target_dependency = 54 + RULE_pbx_variant_group = 55 + RULE_xc_build_configuration = 56 + RULE_xc_configuration_list = 57 + RULE_xc_remote_swift_package_reference = 58 + RULE_xc_swift_package_product_dependency = 59 + RULE_xc_version_group = 60 + RULE_isa_pbx_aggregate_target = 61 + RULE_isa_pbx_build_file = 62 + RULE_isa_pbx_build_rule = 63 + RULE_isa_pbx_build_style = 64 + RULE_isa_pbx_container_item_proxy = 65 + RULE_isa_pbx_copy_files_build_phase = 66 + RULE_isa_pbx_file_reference = 67 + RULE_isa_pbx_file_system_synchronized_build_file_exception_set = 68 + RULE_isa_pbx_file_system_synchronized_root_group = 69 + RULE_isa_pbx_frameworks_build_phase = 70 + RULE_isa_pbx_group = 71 + RULE_isa_pbx_header_build_phase = 72 + RULE_isa_pbx_native_target = 73 + RULE_isa_pbx_legacy_target = 74 + RULE_isa_pbx_project = 75 + RULE_isa_pbx_reference_proxy = 76 + RULE_isa_pbx_resources_build_phase = 77 + RULE_isa_pbx_shell_script_build_phase = 78 + RULE_isa_pbx_shell_build_phase = 79 + RULE_isa_pbx_sources_build_phase = 80 + RULE_isa_pbx_target_dependency = 81 + RULE_isa_pbx_variant_group = 82 + RULE_isa_xc_build_configuration = 83 + RULE_isa_xc_configuration_list = 84 + RULE_isa_xc_remote_swift_package_reference = 85 + RULE_isa_xc_swift_package_product_dependency = 86 + RULE_isa_xc_version_group = 87 + RULE_always_out_of_date = 88 + RULE_file_ref = 89 + RULE_product_ref = 90 + RULE_container_portal = 91 + RULE_proxy_type = 92 + RULE_remote_global_id_string = 93 + RULE_remote_info = 94 + RULE_file_encoding = 95 + RULE_comments = 96 + RULE_explicit_file_type = 97 + RULE_explicit_file_types = 98 + RULE_explicit_folders = 99 + RULE_last_known_file_type = 100 + RULE_include_in_index = 101 + RULE_indent_width = 102 + RULE_tab_width = 103 + RULE_uses_tabs = 104 + RULE_wraps_lines = 105 + RULE_platform_filter = 106 + RULE_platform_filters = 107 + RULE_children = 108 + RULE_product_install_path = 109 + RULE_repository_url = 110 + RULE_requirement = 111 + RULE_xc_package = 112 + RULE_package_product_dependencies = 113 + RULE_name = 114 + RULE_path = 115 + RULE_source_tree = 116 + RULE_build_action_mask = 117 + RULE_files = 118 + RULE_run_only_for_deployment_postprocessing = 119 + RULE_reference_list = 120 + RULE_any_string_list = 121 + RULE_non_quoted_strings_list = 122 + RULE_build_configuration_list = 123 + RULE_build_phases = 124 + RULE_build_rules = 125 + RULE_build_arguments_string = 126 + RULE_build_tool_path = 127 + RULE_build_working_directory = 128 + RULE_pass_build_settings_in_environment = 129 + RULE_dependencies = 130 + RULE_product_name = 131 + RULE_product_reference = 132 + RULE_product_type = 133 + RULE_line_ending = 134 + RULE_xc_language_specification_identifier = 135 + RULE_plist_structure_definition_identifier = 136 + RULE_ref_type = 137 + RULE_compiler_spec = 138 + RULE_file_patterns = 139 + RULE_input_files = 140 + RULE_is_editable = 141 + RULE_output_files = 142 + RULE_run_once_per_arch = 143 + RULE_script = 144 + RULE_attributes = 145 + RULE_last_swift_migration = 146 + RULE_default_build_system_type_for_workspace = 147 + RULE_last_swift_update_check = 148 + RULE_build_targets_in_parallel = 149 + RULE_last_testing_upgrade_check = 150 + RULE_last_upgrade_check = 151 + RULE_organization_name = 152 + RULE_target_attributes = 153 + RULE_target_attribute = 154 + RULE_created_on_tools_version = 155 + RULE_test_target_id = 156 + RULE_development_team = 157 + RULE_development_team_name = 158 + RULE_provisioning_style = 159 + RULE_compatibility_version = 160 + RULE_development_region = 161 + RULE_has_scanned_for_encodings = 162 + RULE_known_regions = 163 + RULE_main_group = 164 + RULE_product_ref_group = 165 + RULE_package_references = 166 + RULE_preferred_project_object_version = 167 + RULE_project_dir_path = 168 + RULE_project_references = 169 + RULE_project_root = 170 + RULE_targets = 171 + RULE_input_file_list_paths = 172 + RULE_input_paths = 173 + RULE_output_file_list_paths = 174 + RULE_output_paths = 175 + RULE_shell_path = 176 + RULE_shell = 177 + RULE_shell_script = 178 + RULE_show_env_vars_in_log = 179 + RULE_target = 180 + RULE_target_proxy = 181 + RULE_file_type = 182 + RULE_remote_ref = 183 + RULE_base_configuration_reference = 184 + RULE_build_settings = 185 + RULE_build_styles = 186 + RULE_dst_path = 187 + RULE_dst_subfolder_spec = 188 + RULE_project_references_list = 189 + RULE_project_references_list_element = 190 + RULE_membership_exceptions = 191 + RULE_exceptions = 192 + RULE_key_value = 193 + RULE_build_configurations = 194 + RULE_default_configuration_is_visible = 195 + RULE_default_configuration_name = 196 + RULE_settings = 197 + RULE_system_capabilities = 198 + RULE_current_version = 199 + RULE_version_group_type = 200 + RULE_class_prefix = 201 + RULE_any_string = 202 + RULE_str_number_variable = 203 + RULE_any_token = 204 ruleNames = [ "start", "root_element", "archive_version", "classes", "object_version", "objects", "root_object", "pbx_aggregate_target_section", "pbx_build_file_section", "pbx_build_rule_section", "pbx_build_style_section", "pbx_container_item_proxy_section", "pbx_copy_files_build_phase_section", - "pbx_file_reference_section", "pbx_frameworks_build_phase_section", + "pbx_file_reference_section", "pbx_file_system_synchronized_build_file_exception_set_section", + "pbx_file_system_synchronized_root_group_section", "pbx_frameworks_build_phase_section", "pbx_group_section", "pbx_headers_build_phase_section", "pbx_native_target_section", "pbx_legacy_target_section", "pbx_project_section", "pbx_reference_proxy_section", @@ -1056,7 +1113,8 @@ class PBXProjParser ( Parser ): "xc_remote_swift_package_reference_section", "xc_swift_package_product_dependency_section", "xc_version_group_section", "pbx_aggregate_target", "pbx_build_file", "pbx_build_rule", "pbx_build_style", "pbx_container_item_proxy", - "pbx_copy_files_build_phase", "pbx_file_reference", "pbx_frameworks_build_phase", + "pbx_copy_files_build_phase", "pbx_file_reference", "pbx_file_system_synchronized_build_file_exception_set", + "pbx_file_system_synchronized_root_group", "pbx_frameworks_build_phase", "pbx_group", "pbx_headers_build_phase", "pbx_native_target", "pbx_legacy_target", "pbx_project", "pbx_reference_proxy", "pbx_resources_build_phase", "pbx_shell_script_build_phase", @@ -1066,17 +1124,19 @@ class PBXProjParser ( Parser ): "xc_version_group", "isa_pbx_aggregate_target", "isa_pbx_build_file", "isa_pbx_build_rule", "isa_pbx_build_style", "isa_pbx_container_item_proxy", "isa_pbx_copy_files_build_phase", "isa_pbx_file_reference", - "isa_pbx_frameworks_build_phase", "isa_pbx_group", "isa_pbx_header_build_phase", - "isa_pbx_native_target", "isa_pbx_legacy_target", "isa_pbx_project", - "isa_pbx_reference_proxy", "isa_pbx_resources_build_phase", - "isa_pbx_shell_script_build_phase", "isa_pbx_shell_build_phase", - "isa_pbx_sources_build_phase", "isa_pbx_target_dependency", - "isa_pbx_variant_group", "isa_xc_build_configuration", - "isa_xc_configuration_list", "isa_xc_remote_swift_package_reference", - "isa_xc_swift_package_product_dependency", "isa_xc_version_group", - "always_out_of_date", "file_ref", "product_ref", "container_portal", - "proxy_type", "remote_global_id_string", "remote_info", - "file_encoding", "comments", "explicit_file_type", "last_known_file_type", + "isa_pbx_file_system_synchronized_build_file_exception_set", + "isa_pbx_file_system_synchronized_root_group", "isa_pbx_frameworks_build_phase", + "isa_pbx_group", "isa_pbx_header_build_phase", "isa_pbx_native_target", + "isa_pbx_legacy_target", "isa_pbx_project", "isa_pbx_reference_proxy", + "isa_pbx_resources_build_phase", "isa_pbx_shell_script_build_phase", + "isa_pbx_shell_build_phase", "isa_pbx_sources_build_phase", + "isa_pbx_target_dependency", "isa_pbx_variant_group", + "isa_xc_build_configuration", "isa_xc_configuration_list", + "isa_xc_remote_swift_package_reference", "isa_xc_swift_package_product_dependency", + "isa_xc_version_group", "always_out_of_date", "file_ref", + "product_ref", "container_portal", "proxy_type", "remote_global_id_string", + "remote_info", "file_encoding", "comments", "explicit_file_type", + "explicit_file_types", "explicit_folders", "last_known_file_type", "include_in_index", "indent_width", "tab_width", "uses_tabs", "wraps_lines", "platform_filter", "platform_filters", "children", "product_install_path", "repository_url", @@ -1098,18 +1158,18 @@ class PBXProjParser ( Parser ): "test_target_id", "development_team", "development_team_name", "provisioning_style", "compatibility_version", "development_region", "has_scanned_for_encodings", "known_regions", "main_group", - "product_ref_group", "package_references", "project_dir_path", - "project_references", "project_root", "targets", "input_file_list_paths", - "input_paths", "output_file_list_paths", "output_paths", - "shell_path", "shell", "shell_script", "show_env_vars_in_log", - "target", "target_proxy", "file_type", "remote_ref", - "base_configuration_reference", "build_settings", "build_styles", - "dst_path", "dst_subfolder_spec", "project_references_list", - "project_references_list_element", "key_value", "build_configurations", - "default_configuration_is_visible", "default_configuration_name", - "settings", "system_capabilities", "current_version", - "version_group_type", "class_prefix", "any_string", "str_number_variable", - "any_token" ] + "product_ref_group", "package_references", "preferred_project_object_version", + "project_dir_path", "project_references", "project_root", + "targets", "input_file_list_paths", "input_paths", "output_file_list_paths", + "output_paths", "shell_path", "shell", "shell_script", + "show_env_vars_in_log", "target", "target_proxy", "file_type", + "remote_ref", "base_configuration_reference", "build_settings", + "build_styles", "dst_path", "dst_subfolder_spec", "project_references_list", + "project_references_list_element", "membership_exceptions", + "exceptions", "key_value", "build_configurations", "default_configuration_is_visible", + "default_configuration_name", "settings", "system_capabilities", + "current_version", "version_group_type", "class_prefix", + "any_string", "str_number_variable", "any_token" ] EOF = Token.EOF T__0=1 @@ -1138,141 +1198,148 @@ class PBXProjParser ( Parser ): PBX_CONTAINER_ITEM_PROXY=24 PBX_COPY_FILES_BUILD_PHASE=25 PBX_FILE_REFERENCE=26 - PBX_FRAMEWORKS_BUILD_PHASE=27 - PBX_GROUP=28 - PBX_HEADERS_BUILD_PHASE=29 - PBX_NATIVE_TARGET=30 - PBX_LEGACY_TARGET=31 - PBX_PROJECT=32 - PBX_REFERENCE_PROXY=33 - PBX_RESOURCES_BUILD_PHASE=34 - PBX_SHELL_SCRIPT_BUILD_PHASE=35 - PBX_SHELL_BUILD_PHASE=36 - PBX_SOURCES_BUILD_PHASE=37 - PBX_TARGET_DEPENDENCY=38 - PBX_VARIANT_GROUP=39 - XC_BUILD_CONFIGURATION=40 - XC_CONFIGURATION_LIST=41 - XC_REMOTE_SWIFT_PACKAGE_REFERENCE=42 - XC_SWIFT_PACKAGE_PRODUCT_DEPENDENCY=43 - XC_VERSION_GROUP=44 - ALWAYS_OUT_OF_DATE=45 - FILE_REF=46 - PRODUCT_REF=47 - CONTAINER_PORTAL=48 - PROXY_TYPE=49 - REMOTE_GLOBAL_ID_STRING=50 - REMOTE_INFO=51 - FILE_ENCODING=52 - COMMENTS=53 - EXPLICIT_FILE_TYPE=54 - LAST_KNOWN_FILE_TYPE=55 - INCLUDE_IN_INDEX=56 - INDENT_WIDTH=57 - TAB_WIDTH=58 - USES_TABS=59 - WRAPS_LINES=60 - PLATFORM_FILTER=61 - PLATFORM_FILTERS=62 - CHILDREN=63 - PRODUCT_INSTALL_PATH=64 - REPOSITORY_URL=65 - REQUIREMENT=66 - PACKAGE=67 - PACKAGE_PRODUCT_DEPENDENCIES=68 - NAME=69 - PATH=70 - SOURCE_TREE=71 - BUILD_ACTION_MASK=72 - FILES=73 - RUN_ONLY_FOR_DEPLOYMENT_POSTPROCESSING=74 - BUILD_CONFIGURATION_LIST=75 - BUILD_PHASES=76 - BUILD_RULES=77 - BUILD_ARGUMENTS_STRING=78 - BUILD_TOOL_PATH=79 - BUILD_WORKING_DIRECTORY=80 - PASS_BUILD_SETTINGS_IN_ENVIRONMENT=81 - DEPENDENCIES=82 - PRODUCT_NAME=83 - PRODUCT_REFERENCE=84 - PRODUCT_TYPE=85 - LINE_ENDING=86 - XC_LANGUAGE_SPECIFICATION_IDENTIFIER=87 - PLIST_STRUCTURE_DEFINITION_IDENTIFIER=88 - REF_TYPE=89 - COMPILER_SPEC=90 - FILE_PATTERNS=91 - INPUT_FILES=92 - IS_EDITABLE=93 - OUTPUT_FILES=94 - RUN_ONCE_PER_ARCH=95 - SCRIPT=96 - ATTRIBUTES=97 - LAST_SWIFT_MIGRATION=98 - DEFAULT_BUILD_SYSTEM_TYPE_FOR_WORKSPACE=99 - LAST_SWIFT_UPDATE_CHECK=100 - BUILD_INDEPENDENT_TARGETS_IN_PARALLEL=101 - LAST_TESTING_UPGRADE_CHECK=102 - LAST_UPGRADE_CHECK=103 - ORGANIZATION_NAME=104 - TARGET_ATTRIBUTES=105 - CREATED_ON_TOOLS_VERSION=106 - TEST_TARGET_ID=107 - DEVELOPMENT_TEAM=108 - DEVELOPMENT_TEAM_NAME=109 - PROVISIONING_STYLE=110 - COMPATIBILITY_VERSION=111 - DEVELOPMENT_REGION=112 - HAS_SCANNED_FOR_ENCODINGS=113 - KNOWN_REGIONS=114 - MAIN_GROUP=115 - PRODUCT_REF_GROUP=116 - PACKAGE_REFERENCES=117 - PRODUCT_DIR_PATH=118 - PROJECT_REFERENCES=119 - PROJECT_ROOT=120 - TARGETS=121 - INPUT_FILE_LIST_PATHS=122 - INPUT_PATHS=123 - OUTPUT_FILE_LIST_PATHS=124 - OUTPUT_PATHS=125 - SHELL_PATH=126 - SHELL=127 - SHELL_SCRIPT=128 - SHOW_ENV_VARS_IN_LOG=129 - TARGET=130 - TARGET_PROXY=131 - FILE_TYPE=132 - REMOTE_REF=133 - BASE_CONFIGURATION_REFERENCE=134 - BUILD_SETTINGS=135 - BUILD_STYLES=136 - DST_PATH=137 - DST_SUBFOLDER_SPEC=138 - PRODUCT_GROUP=139 - PROJECT_REF=140 - BUILD_CONFIGURATIONS=141 - DEFAULT_CONFIGURATION_IS_VISIBLE=142 - DEFAULT_CONFIGURATION_NAME=143 - SETTINGS=144 - SYSTEM_CAPABILITIES=145 - CURRENT_VERSION=146 - VERSION_GROUP_TYPE=147 - CLASSPREFIX=148 - REFERENCE=149 - QUOTED_STRING=150 - NON_QUOTED_STRING=151 - VARIABLE=152 - ALPHA_NUMERIC=153 - ALPHA_NUMERIC_CAP=154 - WS=155 - COMMENT=156 - LINE_COMMENT=157 + PBX_FILE_SYSTEM_SYNCHRONIZED_BUILD_FILE_EXCEPTION_SET=27 + PBX_FILE_SYSTEM_SYNCHRONIZED_ROOT_GROUP=28 + PBX_FRAMEWORKS_BUILD_PHASE=29 + PBX_GROUP=30 + PBX_HEADERS_BUILD_PHASE=31 + PBX_NATIVE_TARGET=32 + PBX_LEGACY_TARGET=33 + PBX_PROJECT=34 + PBX_REFERENCE_PROXY=35 + PBX_RESOURCES_BUILD_PHASE=36 + PBX_SHELL_SCRIPT_BUILD_PHASE=37 + PBX_SHELL_BUILD_PHASE=38 + PBX_SOURCES_BUILD_PHASE=39 + PBX_TARGET_DEPENDENCY=40 + PBX_VARIANT_GROUP=41 + XC_BUILD_CONFIGURATION=42 + XC_CONFIGURATION_LIST=43 + XC_REMOTE_SWIFT_PACKAGE_REFERENCE=44 + XC_SWIFT_PACKAGE_PRODUCT_DEPENDENCY=45 + XC_VERSION_GROUP=46 + ALWAYS_OUT_OF_DATE=47 + FILE_REF=48 + PRODUCT_REF=49 + CONTAINER_PORTAL=50 + PROXY_TYPE=51 + REMOTE_GLOBAL_ID_STRING=52 + REMOTE_INFO=53 + FILE_ENCODING=54 + COMMENTS=55 + EXPLICIT_FILE_TYPE=56 + EXPLICIT_FILE_TYPES=57 + EXPLICIT_FOLDERS=58 + LAST_KNOWN_FILE_TYPE=59 + INCLUDE_IN_INDEX=60 + INDENT_WIDTH=61 + TAB_WIDTH=62 + USES_TABS=63 + WRAPS_LINES=64 + PLATFORM_FILTER=65 + PLATFORM_FILTERS=66 + CHILDREN=67 + PRODUCT_INSTALL_PATH=68 + REPOSITORY_URL=69 + REQUIREMENT=70 + PACKAGE=71 + PACKAGE_PRODUCT_DEPENDENCIES=72 + NAME=73 + PATH=74 + SOURCE_TREE=75 + BUILD_ACTION_MASK=76 + FILES=77 + RUN_ONLY_FOR_DEPLOYMENT_POSTPROCESSING=78 + BUILD_CONFIGURATION_LIST=79 + BUILD_PHASES=80 + BUILD_RULES=81 + BUILD_ARGUMENTS_STRING=82 + BUILD_TOOL_PATH=83 + BUILD_WORKING_DIRECTORY=84 + PASS_BUILD_SETTINGS_IN_ENVIRONMENT=85 + DEPENDENCIES=86 + PRODUCT_NAME=87 + PRODUCT_REFERENCE=88 + PRODUCT_TYPE=89 + LINE_ENDING=90 + XC_LANGUAGE_SPECIFICATION_IDENTIFIER=91 + PLIST_STRUCTURE_DEFINITION_IDENTIFIER=92 + REF_TYPE=93 + COMPILER_SPEC=94 + FILE_PATTERNS=95 + INPUT_FILES=96 + IS_EDITABLE=97 + OUTPUT_FILES=98 + RUN_ONCE_PER_ARCH=99 + SCRIPT=100 + ATTRIBUTES=101 + LAST_SWIFT_MIGRATION=102 + DEFAULT_BUILD_SYSTEM_TYPE_FOR_WORKSPACE=103 + LAST_SWIFT_UPDATE_CHECK=104 + BUILD_INDEPENDENT_TARGETS_IN_PARALLEL=105 + LAST_TESTING_UPGRADE_CHECK=106 + LAST_UPGRADE_CHECK=107 + ORGANIZATION_NAME=108 + TARGET_ATTRIBUTES=109 + CREATED_ON_TOOLS_VERSION=110 + TEST_TARGET_ID=111 + DEVELOPMENT_TEAM=112 + DEVELOPMENT_TEAM_NAME=113 + PROVISIONING_STYLE=114 + COMPATIBILITY_VERSION=115 + DEVELOPMENT_REGION=116 + HAS_SCANNED_FOR_ENCODINGS=117 + KNOWN_REGIONS=118 + MAIN_GROUP=119 + PRODUCT_REF_GROUP=120 + PACKAGE_REFERENCES=121 + PREFERRED_PROJECT_OBJECT_VERSION=122 + PRODUCT_DIR_PATH=123 + PROJECT_REFERENCES=124 + PROJECT_ROOT=125 + TARGETS=126 + INPUT_FILE_LIST_PATHS=127 + INPUT_PATHS=128 + OUTPUT_FILE_LIST_PATHS=129 + OUTPUT_PATHS=130 + SHELL_PATH=131 + SHELL=132 + SHELL_SCRIPT=133 + SHOW_ENV_VARS_IN_LOG=134 + TARGET=135 + TARGET_PROXY=136 + FILE_TYPE=137 + REMOTE_REF=138 + BASE_CONFIGURATION_REFERENCE=139 + BUILD_SETTINGS=140 + BUILD_STYLES=141 + DST_PATH=142 + DST_SUBFOLDER_SPEC=143 + PRODUCT_GROUP=144 + PROJECT_REF=145 + BUILD_CONFIGURATIONS=146 + DEFAULT_CONFIGURATION_IS_VISIBLE=147 + DEFAULT_CONFIGURATION_NAME=148 + SETTINGS=149 + SYSTEM_CAPABILITIES=150 + CURRENT_VERSION=151 + VERSION_GROUP_TYPE=152 + MEMBERSHIP_EXCEPTIONS=153 + EXCEPTIONS=154 + CLASSPREFIX=155 + REFERENCE=156 + QUOTED_STRING=157 + NON_QUOTED_STRING=158 + VARIABLE=159 + ALPHA_NUMERIC=160 + ALPHA_NUMERIC_CAP=161 + WS=162 + COMMENT=163 + LINE_COMMENT=164 def __init__(self, input:TokenStream, output:TextIO = sys.stdout): super().__init__(input, output) - self.checkVersion("4.13.1") + self.checkVersion("4.13.2") self._interp = ParserATNSimulator(self, self.atn, self.decisionsToDFA, self.sharedContextCache) self._predicates = None @@ -1310,7 +1377,7 @@ def start(self): self.enterRule(localctx, 0, self.RULE_start) try: self.enterOuterAlt(localctx, 1) - self.state = 388 + self.state = 410 self.root_element() except RecognitionException as re: localctx.exception = re @@ -1368,19 +1435,19 @@ def root_element(self): self.enterRule(localctx, 2, self.RULE_root_element) try: self.enterOuterAlt(localctx, 1) - self.state = 390 + self.state = 412 self.match(PBXProjParser.T__0) - self.state = 391 + self.state = 413 self.archive_version() - self.state = 392 + self.state = 414 self.classes() - self.state = 393 + self.state = 415 self.object_version() - self.state = 394 + self.state = 416 self.objects() - self.state = 395 + self.state = 417 self.root_object() - self.state = 396 + self.state = 418 self.match(PBXProjParser.T__1) except RecognitionException as re: localctx.exception = re @@ -1424,13 +1491,13 @@ def archive_version(self): self.enterRule(localctx, 4, self.RULE_archive_version) try: self.enterOuterAlt(localctx, 1) - self.state = 398 + self.state = 420 self.match(PBXProjParser.ARCHIVE_VERSION) - self.state = 399 + self.state = 421 self.match(PBXProjParser.T__2) - self.state = 400 + self.state = 422 self.match(PBXProjParser.NUMBER) - self.state = 401 + self.state = 423 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -1471,15 +1538,15 @@ def classes(self): self.enterRule(localctx, 6, self.RULE_classes) try: self.enterOuterAlt(localctx, 1) - self.state = 403 + self.state = 425 self.match(PBXProjParser.CLASSES) - self.state = 404 + self.state = 426 self.match(PBXProjParser.T__2) - self.state = 405 + self.state = 427 self.match(PBXProjParser.T__0) - self.state = 406 + self.state = 428 self.match(PBXProjParser.T__1) - self.state = 407 + self.state = 429 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -1523,13 +1590,13 @@ def object_version(self): self.enterRule(localctx, 8, self.RULE_object_version) try: self.enterOuterAlt(localctx, 1) - self.state = 409 + self.state = 431 self.match(PBXProjParser.OBJECT_VERSION) - self.state = 410 + self.state = 432 self.match(PBXProjParser.T__2) - self.state = 411 + self.state = 433 self.match(PBXProjParser.NUMBER) - self.state = 412 + self.state = 434 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -1594,6 +1661,14 @@ def pbx_file_reference_section(self): return self.getTypedRuleContext(PBXProjParser.Pbx_file_reference_sectionContext,0) + def pbx_file_system_synchronized_build_file_exception_set_section(self): + return self.getTypedRuleContext(PBXProjParser.Pbx_file_system_synchronized_build_file_exception_set_sectionContext,0) + + + def pbx_file_system_synchronized_root_group_section(self): + return self.getTypedRuleContext(PBXProjParser.Pbx_file_system_synchronized_root_group_sectionContext,0) + + def pbx_frameworks_build_phase_section(self): return self.getTypedRuleContext(PBXProjParser.Pbx_frameworks_build_phase_sectionContext,0) @@ -1671,191 +1746,207 @@ def objects(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 414 + self.state = 436 self.match(PBXProjParser.OBJECTS) - self.state = 415 + self.state = 437 self.match(PBXProjParser.T__2) - self.state = 416 + self.state = 438 self.match(PBXProjParser.T__0) - self.state = 418 + self.state = 440 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,0,self._ctx) if la_ == 1: - self.state = 417 + self.state = 439 self.pbx_aggregate_target_section() - self.state = 421 + self.state = 443 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,1,self._ctx) if la_ == 1: - self.state = 420 + self.state = 442 self.pbx_build_file_section() - self.state = 424 + self.state = 446 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,2,self._ctx) if la_ == 1: - self.state = 423 + self.state = 445 self.pbx_build_rule_section() - self.state = 427 + self.state = 449 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,3,self._ctx) if la_ == 1: - self.state = 426 + self.state = 448 self.pbx_build_style_section() - self.state = 430 + self.state = 452 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,4,self._ctx) if la_ == 1: - self.state = 429 + self.state = 451 self.pbx_container_item_proxy_section() - self.state = 433 + self.state = 455 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,5,self._ctx) if la_ == 1: - self.state = 432 + self.state = 454 self.pbx_copy_files_build_phase_section() - self.state = 436 + self.state = 458 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,6,self._ctx) if la_ == 1: - self.state = 435 + self.state = 457 self.pbx_file_reference_section() - self.state = 439 + self.state = 461 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,7,self._ctx) if la_ == 1: - self.state = 438 + self.state = 460 + self.pbx_file_system_synchronized_build_file_exception_set_section() + + + self.state = 464 + self._errHandler.sync(self) + la_ = self._interp.adaptivePredict(self._input,8,self._ctx) + if la_ == 1: + self.state = 463 + self.pbx_file_system_synchronized_root_group_section() + + + self.state = 467 + self._errHandler.sync(self) + la_ = self._interp.adaptivePredict(self._input,9,self._ctx) + if la_ == 1: + self.state = 466 self.pbx_frameworks_build_phase_section() - self.state = 441 + self.state = 469 self.pbx_group_section() - self.state = 443 + self.state = 471 self._errHandler.sync(self) - la_ = self._interp.adaptivePredict(self._input,8,self._ctx) + la_ = self._interp.adaptivePredict(self._input,10,self._ctx) if la_ == 1: - self.state = 442 + self.state = 470 self.pbx_headers_build_phase_section() - self.state = 446 + self.state = 474 self._errHandler.sync(self) - la_ = self._interp.adaptivePredict(self._input,9,self._ctx) + la_ = self._interp.adaptivePredict(self._input,11,self._ctx) if la_ == 1: - self.state = 445 + self.state = 473 self.pbx_legacy_target_section() - self.state = 449 + self.state = 477 self._errHandler.sync(self) - la_ = self._interp.adaptivePredict(self._input,10,self._ctx) + la_ = self._interp.adaptivePredict(self._input,12,self._ctx) if la_ == 1: - self.state = 448 + self.state = 476 self.pbx_native_target_section() - self.state = 451 + self.state = 479 self.pbx_project_section() - self.state = 453 + self.state = 481 self._errHandler.sync(self) - la_ = self._interp.adaptivePredict(self._input,11,self._ctx) + la_ = self._interp.adaptivePredict(self._input,13,self._ctx) if la_ == 1: - self.state = 452 + self.state = 480 self.pbx_reference_proxy_section() - self.state = 456 + self.state = 484 self._errHandler.sync(self) - la_ = self._interp.adaptivePredict(self._input,12,self._ctx) + la_ = self._interp.adaptivePredict(self._input,14,self._ctx) if la_ == 1: - self.state = 455 + self.state = 483 self.pbx_resources_build_phase_section() - self.state = 459 + self.state = 487 self._errHandler.sync(self) - la_ = self._interp.adaptivePredict(self._input,13,self._ctx) + la_ = self._interp.adaptivePredict(self._input,15,self._ctx) if la_ == 1: - self.state = 458 + self.state = 486 self.pbx_shell_script_build_phase_section() - self.state = 462 + self.state = 490 self._errHandler.sync(self) - la_ = self._interp.adaptivePredict(self._input,14,self._ctx) + la_ = self._interp.adaptivePredict(self._input,16,self._ctx) if la_ == 1: - self.state = 461 + self.state = 489 self.pbx_shell_build_phase_section() - self.state = 465 + self.state = 493 self._errHandler.sync(self) - la_ = self._interp.adaptivePredict(self._input,15,self._ctx) + la_ = self._interp.adaptivePredict(self._input,17,self._ctx) if la_ == 1: - self.state = 464 + self.state = 492 self.pbx_sources_build_phase_section() - self.state = 468 + self.state = 496 self._errHandler.sync(self) - la_ = self._interp.adaptivePredict(self._input,16,self._ctx) + la_ = self._interp.adaptivePredict(self._input,18,self._ctx) if la_ == 1: - self.state = 467 + self.state = 495 self.pbx_target_dependency_section() - self.state = 471 + self.state = 499 self._errHandler.sync(self) - la_ = self._interp.adaptivePredict(self._input,17,self._ctx) + la_ = self._interp.adaptivePredict(self._input,19,self._ctx) if la_ == 1: - self.state = 470 + self.state = 498 self.pbx_variant_group_section() - self.state = 473 + self.state = 501 self.xc_build_configuration_section() - self.state = 474 + self.state = 502 self.xc_configuration_list_section() - self.state = 476 + self.state = 504 self._errHandler.sync(self) - la_ = self._interp.adaptivePredict(self._input,18,self._ctx) + la_ = self._interp.adaptivePredict(self._input,20,self._ctx) if la_ == 1: - self.state = 475 + self.state = 503 self.xc_remote_swift_package_reference_section() - self.state = 479 + self.state = 507 self._errHandler.sync(self) - la_ = self._interp.adaptivePredict(self._input,19,self._ctx) + la_ = self._interp.adaptivePredict(self._input,21,self._ctx) if la_ == 1: - self.state = 478 + self.state = 506 self.xc_swift_package_product_dependency_section() - self.state = 482 + self.state = 510 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==149: - self.state = 481 + if _la==156: + self.state = 509 self.xc_version_group_section() - self.state = 484 + self.state = 512 self.match(PBXProjParser.T__1) - self.state = 485 + self.state = 513 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -1899,13 +1990,13 @@ def root_object(self): self.enterRule(localctx, 12, self.RULE_root_object) try: self.enterOuterAlt(localctx, 1) - self.state = 487 + self.state = 515 self.match(PBXProjParser.ROOT_OBJECT) - self.state = 488 + self.state = 516 self.match(PBXProjParser.T__2) - self.state = 489 + self.state = 517 self.match(PBXProjParser.REFERENCE) - self.state = 490 + self.state = 518 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -1950,19 +2041,19 @@ def pbx_aggregate_target_section(self): self.enterRule(localctx, 14, self.RULE_pbx_aggregate_target_section) try: self.enterOuterAlt(localctx, 1) - self.state = 493 + self.state = 521 self._errHandler.sync(self) _alt = 1 while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt == 1: - self.state = 492 + self.state = 520 self.pbx_aggregate_target() else: raise NoViableAltException(self) - self.state = 495 + self.state = 523 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,21,self._ctx) + _alt = self._interp.adaptivePredict(self._input,23,self._ctx) except RecognitionException as re: localctx.exception = re @@ -2007,19 +2098,19 @@ def pbx_build_file_section(self): self.enterRule(localctx, 16, self.RULE_pbx_build_file_section) try: self.enterOuterAlt(localctx, 1) - self.state = 498 + self.state = 526 self._errHandler.sync(self) _alt = 1 while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt == 1: - self.state = 497 + self.state = 525 self.pbx_build_file() else: raise NoViableAltException(self) - self.state = 500 + self.state = 528 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,22,self._ctx) + _alt = self._interp.adaptivePredict(self._input,24,self._ctx) except RecognitionException as re: localctx.exception = re @@ -2064,19 +2155,19 @@ def pbx_build_rule_section(self): self.enterRule(localctx, 18, self.RULE_pbx_build_rule_section) try: self.enterOuterAlt(localctx, 1) - self.state = 503 + self.state = 531 self._errHandler.sync(self) _alt = 1 while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt == 1: - self.state = 502 + self.state = 530 self.pbx_build_rule() else: raise NoViableAltException(self) - self.state = 505 + self.state = 533 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,23,self._ctx) + _alt = self._interp.adaptivePredict(self._input,25,self._ctx) except RecognitionException as re: localctx.exception = re @@ -2121,19 +2212,19 @@ def pbx_build_style_section(self): self.enterRule(localctx, 20, self.RULE_pbx_build_style_section) try: self.enterOuterAlt(localctx, 1) - self.state = 508 + self.state = 536 self._errHandler.sync(self) _alt = 1 while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt == 1: - self.state = 507 + self.state = 535 self.pbx_build_style() else: raise NoViableAltException(self) - self.state = 510 + self.state = 538 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,24,self._ctx) + _alt = self._interp.adaptivePredict(self._input,26,self._ctx) except RecognitionException as re: localctx.exception = re @@ -2178,19 +2269,19 @@ def pbx_container_item_proxy_section(self): self.enterRule(localctx, 22, self.RULE_pbx_container_item_proxy_section) try: self.enterOuterAlt(localctx, 1) - self.state = 513 + self.state = 541 self._errHandler.sync(self) _alt = 1 while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt == 1: - self.state = 512 + self.state = 540 self.pbx_container_item_proxy() else: raise NoViableAltException(self) - self.state = 515 + self.state = 543 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,25,self._ctx) + _alt = self._interp.adaptivePredict(self._input,27,self._ctx) except RecognitionException as re: localctx.exception = re @@ -2235,19 +2326,19 @@ def pbx_copy_files_build_phase_section(self): self.enterRule(localctx, 24, self.RULE_pbx_copy_files_build_phase_section) try: self.enterOuterAlt(localctx, 1) - self.state = 518 + self.state = 546 self._errHandler.sync(self) _alt = 1 while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt == 1: - self.state = 517 + self.state = 545 self.pbx_copy_files_build_phase() else: raise NoViableAltException(self) - self.state = 520 + self.state = 548 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,26,self._ctx) + _alt = self._interp.adaptivePredict(self._input,28,self._ctx) except RecognitionException as re: localctx.exception = re @@ -2292,19 +2383,133 @@ def pbx_file_reference_section(self): self.enterRule(localctx, 26, self.RULE_pbx_file_reference_section) try: self.enterOuterAlt(localctx, 1) - self.state = 523 + self.state = 551 self._errHandler.sync(self) _alt = 1 while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt == 1: - self.state = 522 + self.state = 550 self.pbx_file_reference() else: raise NoViableAltException(self) - self.state = 525 + self.state = 553 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,27,self._ctx) + _alt = self._interp.adaptivePredict(self._input,29,self._ctx) + + except RecognitionException as re: + localctx.exception = re + self._errHandler.reportError(self, re) + self._errHandler.recover(self, re) + finally: + self.exitRule() + return localctx + + + class Pbx_file_system_synchronized_build_file_exception_set_sectionContext(ParserRuleContext): + __slots__ = 'parser' + + def __init__(self, parser, parent:ParserRuleContext=None, invokingState:int=-1): + super().__init__(parent, invokingState) + self.parser = parser + + def pbx_file_system_synchronized_build_file_exception_set(self, i:int=None): + if i is None: + return self.getTypedRuleContexts(PBXProjParser.Pbx_file_system_synchronized_build_file_exception_setContext) + else: + return self.getTypedRuleContext(PBXProjParser.Pbx_file_system_synchronized_build_file_exception_setContext,i) + + + def getRuleIndex(self): + return PBXProjParser.RULE_pbx_file_system_synchronized_build_file_exception_set_section + + def enterRule(self, listener:ParseTreeListener): + if hasattr( listener, "enterPbx_file_system_synchronized_build_file_exception_set_section" ): + listener.enterPbx_file_system_synchronized_build_file_exception_set_section(self) + + def exitRule(self, listener:ParseTreeListener): + if hasattr( listener, "exitPbx_file_system_synchronized_build_file_exception_set_section" ): + listener.exitPbx_file_system_synchronized_build_file_exception_set_section(self) + + + + + def pbx_file_system_synchronized_build_file_exception_set_section(self): + + localctx = PBXProjParser.Pbx_file_system_synchronized_build_file_exception_set_sectionContext(self, self._ctx, self.state) + self.enterRule(localctx, 28, self.RULE_pbx_file_system_synchronized_build_file_exception_set_section) + try: + self.enterOuterAlt(localctx, 1) + self.state = 556 + self._errHandler.sync(self) + _alt = 1 + while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: + if _alt == 1: + self.state = 555 + self.pbx_file_system_synchronized_build_file_exception_set() + + else: + raise NoViableAltException(self) + self.state = 558 + self._errHandler.sync(self) + _alt = self._interp.adaptivePredict(self._input,30,self._ctx) + + except RecognitionException as re: + localctx.exception = re + self._errHandler.reportError(self, re) + self._errHandler.recover(self, re) + finally: + self.exitRule() + return localctx + + + class Pbx_file_system_synchronized_root_group_sectionContext(ParserRuleContext): + __slots__ = 'parser' + + def __init__(self, parser, parent:ParserRuleContext=None, invokingState:int=-1): + super().__init__(parent, invokingState) + self.parser = parser + + def pbx_file_system_synchronized_root_group(self, i:int=None): + if i is None: + return self.getTypedRuleContexts(PBXProjParser.Pbx_file_system_synchronized_root_groupContext) + else: + return self.getTypedRuleContext(PBXProjParser.Pbx_file_system_synchronized_root_groupContext,i) + + + def getRuleIndex(self): + return PBXProjParser.RULE_pbx_file_system_synchronized_root_group_section + + def enterRule(self, listener:ParseTreeListener): + if hasattr( listener, "enterPbx_file_system_synchronized_root_group_section" ): + listener.enterPbx_file_system_synchronized_root_group_section(self) + + def exitRule(self, listener:ParseTreeListener): + if hasattr( listener, "exitPbx_file_system_synchronized_root_group_section" ): + listener.exitPbx_file_system_synchronized_root_group_section(self) + + + + + def pbx_file_system_synchronized_root_group_section(self): + + localctx = PBXProjParser.Pbx_file_system_synchronized_root_group_sectionContext(self, self._ctx, self.state) + self.enterRule(localctx, 30, self.RULE_pbx_file_system_synchronized_root_group_section) + try: + self.enterOuterAlt(localctx, 1) + self.state = 561 + self._errHandler.sync(self) + _alt = 1 + while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: + if _alt == 1: + self.state = 560 + self.pbx_file_system_synchronized_root_group() + + else: + raise NoViableAltException(self) + self.state = 563 + self._errHandler.sync(self) + _alt = self._interp.adaptivePredict(self._input,31,self._ctx) except RecognitionException as re: localctx.exception = re @@ -2346,22 +2551,22 @@ def exitRule(self, listener:ParseTreeListener): def pbx_frameworks_build_phase_section(self): localctx = PBXProjParser.Pbx_frameworks_build_phase_sectionContext(self, self._ctx, self.state) - self.enterRule(localctx, 28, self.RULE_pbx_frameworks_build_phase_section) + self.enterRule(localctx, 32, self.RULE_pbx_frameworks_build_phase_section) try: self.enterOuterAlt(localctx, 1) - self.state = 528 + self.state = 566 self._errHandler.sync(self) _alt = 1 while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt == 1: - self.state = 527 + self.state = 565 self.pbx_frameworks_build_phase() else: raise NoViableAltException(self) - self.state = 530 + self.state = 568 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,28,self._ctx) + _alt = self._interp.adaptivePredict(self._input,32,self._ctx) except RecognitionException as re: localctx.exception = re @@ -2403,22 +2608,22 @@ def exitRule(self, listener:ParseTreeListener): def pbx_group_section(self): localctx = PBXProjParser.Pbx_group_sectionContext(self, self._ctx, self.state) - self.enterRule(localctx, 30, self.RULE_pbx_group_section) + self.enterRule(localctx, 34, self.RULE_pbx_group_section) try: self.enterOuterAlt(localctx, 1) - self.state = 533 + self.state = 571 self._errHandler.sync(self) _alt = 1 while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt == 1: - self.state = 532 + self.state = 570 self.pbx_group() else: raise NoViableAltException(self) - self.state = 535 + self.state = 573 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,29,self._ctx) + _alt = self._interp.adaptivePredict(self._input,33,self._ctx) except RecognitionException as re: localctx.exception = re @@ -2460,22 +2665,22 @@ def exitRule(self, listener:ParseTreeListener): def pbx_headers_build_phase_section(self): localctx = PBXProjParser.Pbx_headers_build_phase_sectionContext(self, self._ctx, self.state) - self.enterRule(localctx, 32, self.RULE_pbx_headers_build_phase_section) + self.enterRule(localctx, 36, self.RULE_pbx_headers_build_phase_section) try: self.enterOuterAlt(localctx, 1) - self.state = 538 + self.state = 576 self._errHandler.sync(self) _alt = 1 while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt == 1: - self.state = 537 + self.state = 575 self.pbx_headers_build_phase() else: raise NoViableAltException(self) - self.state = 540 + self.state = 578 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,30,self._ctx) + _alt = self._interp.adaptivePredict(self._input,34,self._ctx) except RecognitionException as re: localctx.exception = re @@ -2517,22 +2722,22 @@ def exitRule(self, listener:ParseTreeListener): def pbx_native_target_section(self): localctx = PBXProjParser.Pbx_native_target_sectionContext(self, self._ctx, self.state) - self.enterRule(localctx, 34, self.RULE_pbx_native_target_section) + self.enterRule(localctx, 38, self.RULE_pbx_native_target_section) try: self.enterOuterAlt(localctx, 1) - self.state = 543 + self.state = 581 self._errHandler.sync(self) _alt = 1 while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt == 1: - self.state = 542 + self.state = 580 self.pbx_native_target() else: raise NoViableAltException(self) - self.state = 545 + self.state = 583 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,31,self._ctx) + _alt = self._interp.adaptivePredict(self._input,35,self._ctx) except RecognitionException as re: localctx.exception = re @@ -2574,22 +2779,22 @@ def exitRule(self, listener:ParseTreeListener): def pbx_legacy_target_section(self): localctx = PBXProjParser.Pbx_legacy_target_sectionContext(self, self._ctx, self.state) - self.enterRule(localctx, 36, self.RULE_pbx_legacy_target_section) + self.enterRule(localctx, 40, self.RULE_pbx_legacy_target_section) try: self.enterOuterAlt(localctx, 1) - self.state = 548 + self.state = 586 self._errHandler.sync(self) _alt = 1 while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt == 1: - self.state = 547 + self.state = 585 self.pbx_legacy_target() else: raise NoViableAltException(self) - self.state = 550 + self.state = 588 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,32,self._ctx) + _alt = self._interp.adaptivePredict(self._input,36,self._ctx) except RecognitionException as re: localctx.exception = re @@ -2631,22 +2836,22 @@ def exitRule(self, listener:ParseTreeListener): def pbx_project_section(self): localctx = PBXProjParser.Pbx_project_sectionContext(self, self._ctx, self.state) - self.enterRule(localctx, 38, self.RULE_pbx_project_section) + self.enterRule(localctx, 42, self.RULE_pbx_project_section) try: self.enterOuterAlt(localctx, 1) - self.state = 553 + self.state = 591 self._errHandler.sync(self) _alt = 1 while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt == 1: - self.state = 552 + self.state = 590 self.pbx_project() else: raise NoViableAltException(self) - self.state = 555 + self.state = 593 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,33,self._ctx) + _alt = self._interp.adaptivePredict(self._input,37,self._ctx) except RecognitionException as re: localctx.exception = re @@ -2688,22 +2893,22 @@ def exitRule(self, listener:ParseTreeListener): def pbx_reference_proxy_section(self): localctx = PBXProjParser.Pbx_reference_proxy_sectionContext(self, self._ctx, self.state) - self.enterRule(localctx, 40, self.RULE_pbx_reference_proxy_section) + self.enterRule(localctx, 44, self.RULE_pbx_reference_proxy_section) try: self.enterOuterAlt(localctx, 1) - self.state = 558 + self.state = 596 self._errHandler.sync(self) _alt = 1 while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt == 1: - self.state = 557 + self.state = 595 self.pbx_reference_proxy() else: raise NoViableAltException(self) - self.state = 560 + self.state = 598 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,34,self._ctx) + _alt = self._interp.adaptivePredict(self._input,38,self._ctx) except RecognitionException as re: localctx.exception = re @@ -2745,22 +2950,22 @@ def exitRule(self, listener:ParseTreeListener): def pbx_resources_build_phase_section(self): localctx = PBXProjParser.Pbx_resources_build_phase_sectionContext(self, self._ctx, self.state) - self.enterRule(localctx, 42, self.RULE_pbx_resources_build_phase_section) + self.enterRule(localctx, 46, self.RULE_pbx_resources_build_phase_section) try: self.enterOuterAlt(localctx, 1) - self.state = 563 + self.state = 601 self._errHandler.sync(self) _alt = 1 while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt == 1: - self.state = 562 + self.state = 600 self.pbx_resources_build_phase() else: raise NoViableAltException(self) - self.state = 565 + self.state = 603 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,35,self._ctx) + _alt = self._interp.adaptivePredict(self._input,39,self._ctx) except RecognitionException as re: localctx.exception = re @@ -2802,22 +3007,22 @@ def exitRule(self, listener:ParseTreeListener): def pbx_shell_script_build_phase_section(self): localctx = PBXProjParser.Pbx_shell_script_build_phase_sectionContext(self, self._ctx, self.state) - self.enterRule(localctx, 44, self.RULE_pbx_shell_script_build_phase_section) + self.enterRule(localctx, 48, self.RULE_pbx_shell_script_build_phase_section) try: self.enterOuterAlt(localctx, 1) - self.state = 568 + self.state = 606 self._errHandler.sync(self) _alt = 1 while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt == 1: - self.state = 567 + self.state = 605 self.pbx_shell_script_build_phase() else: raise NoViableAltException(self) - self.state = 570 + self.state = 608 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,36,self._ctx) + _alt = self._interp.adaptivePredict(self._input,40,self._ctx) except RecognitionException as re: localctx.exception = re @@ -2859,22 +3064,22 @@ def exitRule(self, listener:ParseTreeListener): def pbx_shell_build_phase_section(self): localctx = PBXProjParser.Pbx_shell_build_phase_sectionContext(self, self._ctx, self.state) - self.enterRule(localctx, 46, self.RULE_pbx_shell_build_phase_section) + self.enterRule(localctx, 50, self.RULE_pbx_shell_build_phase_section) try: self.enterOuterAlt(localctx, 1) - self.state = 573 + self.state = 611 self._errHandler.sync(self) _alt = 1 while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt == 1: - self.state = 572 + self.state = 610 self.pbx_shell_build_phase() else: raise NoViableAltException(self) - self.state = 575 + self.state = 613 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,37,self._ctx) + _alt = self._interp.adaptivePredict(self._input,41,self._ctx) except RecognitionException as re: localctx.exception = re @@ -2916,22 +3121,22 @@ def exitRule(self, listener:ParseTreeListener): def pbx_sources_build_phase_section(self): localctx = PBXProjParser.Pbx_sources_build_phase_sectionContext(self, self._ctx, self.state) - self.enterRule(localctx, 48, self.RULE_pbx_sources_build_phase_section) + self.enterRule(localctx, 52, self.RULE_pbx_sources_build_phase_section) try: self.enterOuterAlt(localctx, 1) - self.state = 578 + self.state = 616 self._errHandler.sync(self) _alt = 1 while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt == 1: - self.state = 577 + self.state = 615 self.pbx_sources_build_phase() else: raise NoViableAltException(self) - self.state = 580 + self.state = 618 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,38,self._ctx) + _alt = self._interp.adaptivePredict(self._input,42,self._ctx) except RecognitionException as re: localctx.exception = re @@ -2973,22 +3178,22 @@ def exitRule(self, listener:ParseTreeListener): def pbx_target_dependency_section(self): localctx = PBXProjParser.Pbx_target_dependency_sectionContext(self, self._ctx, self.state) - self.enterRule(localctx, 50, self.RULE_pbx_target_dependency_section) + self.enterRule(localctx, 54, self.RULE_pbx_target_dependency_section) try: self.enterOuterAlt(localctx, 1) - self.state = 583 + self.state = 621 self._errHandler.sync(self) _alt = 1 while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt == 1: - self.state = 582 + self.state = 620 self.pbx_target_dependency() else: raise NoViableAltException(self) - self.state = 585 + self.state = 623 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,39,self._ctx) + _alt = self._interp.adaptivePredict(self._input,43,self._ctx) except RecognitionException as re: localctx.exception = re @@ -3030,22 +3235,22 @@ def exitRule(self, listener:ParseTreeListener): def pbx_variant_group_section(self): localctx = PBXProjParser.Pbx_variant_group_sectionContext(self, self._ctx, self.state) - self.enterRule(localctx, 52, self.RULE_pbx_variant_group_section) + self.enterRule(localctx, 56, self.RULE_pbx_variant_group_section) try: self.enterOuterAlt(localctx, 1) - self.state = 588 + self.state = 626 self._errHandler.sync(self) _alt = 1 while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt == 1: - self.state = 587 + self.state = 625 self.pbx_variant_group() else: raise NoViableAltException(self) - self.state = 590 + self.state = 628 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,40,self._ctx) + _alt = self._interp.adaptivePredict(self._input,44,self._ctx) except RecognitionException as re: localctx.exception = re @@ -3087,22 +3292,22 @@ def exitRule(self, listener:ParseTreeListener): def xc_build_configuration_section(self): localctx = PBXProjParser.Xc_build_configuration_sectionContext(self, self._ctx, self.state) - self.enterRule(localctx, 54, self.RULE_xc_build_configuration_section) + self.enterRule(localctx, 58, self.RULE_xc_build_configuration_section) try: self.enterOuterAlt(localctx, 1) - self.state = 593 + self.state = 631 self._errHandler.sync(self) _alt = 1 while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt == 1: - self.state = 592 + self.state = 630 self.xc_build_configuration() else: raise NoViableAltException(self) - self.state = 595 + self.state = 633 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,41,self._ctx) + _alt = self._interp.adaptivePredict(self._input,45,self._ctx) except RecognitionException as re: localctx.exception = re @@ -3144,22 +3349,22 @@ def exitRule(self, listener:ParseTreeListener): def xc_configuration_list_section(self): localctx = PBXProjParser.Xc_configuration_list_sectionContext(self, self._ctx, self.state) - self.enterRule(localctx, 56, self.RULE_xc_configuration_list_section) + self.enterRule(localctx, 60, self.RULE_xc_configuration_list_section) try: self.enterOuterAlt(localctx, 1) - self.state = 598 + self.state = 636 self._errHandler.sync(self) _alt = 1 while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt == 1: - self.state = 597 + self.state = 635 self.xc_configuration_list() else: raise NoViableAltException(self) - self.state = 600 + self.state = 638 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,42,self._ctx) + _alt = self._interp.adaptivePredict(self._input,46,self._ctx) except RecognitionException as re: localctx.exception = re @@ -3201,22 +3406,22 @@ def exitRule(self, listener:ParseTreeListener): def xc_remote_swift_package_reference_section(self): localctx = PBXProjParser.Xc_remote_swift_package_reference_sectionContext(self, self._ctx, self.state) - self.enterRule(localctx, 58, self.RULE_xc_remote_swift_package_reference_section) + self.enterRule(localctx, 62, self.RULE_xc_remote_swift_package_reference_section) try: self.enterOuterAlt(localctx, 1) - self.state = 603 + self.state = 641 self._errHandler.sync(self) _alt = 1 while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt == 1: - self.state = 602 + self.state = 640 self.xc_remote_swift_package_reference() else: raise NoViableAltException(self) - self.state = 605 + self.state = 643 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,43,self._ctx) + _alt = self._interp.adaptivePredict(self._input,47,self._ctx) except RecognitionException as re: localctx.exception = re @@ -3258,22 +3463,22 @@ def exitRule(self, listener:ParseTreeListener): def xc_swift_package_product_dependency_section(self): localctx = PBXProjParser.Xc_swift_package_product_dependency_sectionContext(self, self._ctx, self.state) - self.enterRule(localctx, 60, self.RULE_xc_swift_package_product_dependency_section) + self.enterRule(localctx, 64, self.RULE_xc_swift_package_product_dependency_section) try: self.enterOuterAlt(localctx, 1) - self.state = 608 + self.state = 646 self._errHandler.sync(self) _alt = 1 while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt == 1: - self.state = 607 + self.state = 645 self.xc_swift_package_product_dependency() else: raise NoViableAltException(self) - self.state = 610 + self.state = 648 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,44,self._ctx) + _alt = self._interp.adaptivePredict(self._input,48,self._ctx) except RecognitionException as re: localctx.exception = re @@ -3315,20 +3520,20 @@ def exitRule(self, listener:ParseTreeListener): def xc_version_group_section(self): localctx = PBXProjParser.Xc_version_group_sectionContext(self, self._ctx, self.state) - self.enterRule(localctx, 62, self.RULE_xc_version_group_section) + self.enterRule(localctx, 66, self.RULE_xc_version_group_section) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 613 + self.state = 651 self._errHandler.sync(self) _la = self._input.LA(1) while True: - self.state = 612 + self.state = 650 self.xc_version_group() - self.state = 615 + self.state = 653 self._errHandler.sync(self) _la = self._input.LA(1) - if not (_la==149): + if not (_la==156): break except RecognitionException as re: @@ -3399,53 +3604,53 @@ def exitRule(self, listener:ParseTreeListener): def pbx_aggregate_target(self): localctx = PBXProjParser.Pbx_aggregate_targetContext(self, self._ctx, self.state) - self.enterRule(localctx, 64, self.RULE_pbx_aggregate_target) + self.enterRule(localctx, 68, self.RULE_pbx_aggregate_target) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 617 + self.state = 655 self.match(PBXProjParser.REFERENCE) - self.state = 618 + self.state = 656 self.match(PBXProjParser.T__2) - self.state = 619 + self.state = 657 self.match(PBXProjParser.T__0) - self.state = 620 + self.state = 658 self.isa_pbx_aggregate_target() - self.state = 621 + self.state = 659 self.build_configuration_list() - self.state = 622 + self.state = 660 self.build_phases() - self.state = 624 + self.state = 662 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==135: - self.state = 623 + if _la==140: + self.state = 661 self.build_settings() - self.state = 627 + self.state = 665 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==53: - self.state = 626 + if _la==55: + self.state = 664 self.comments() - self.state = 629 + self.state = 667 self.dependencies() - self.state = 630 + self.state = 668 self.name() - self.state = 632 + self.state = 670 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==83: - self.state = 631 + if _la==87: + self.state = 669 self.product_name() - self.state = 634 + self.state = 672 self.match(PBXProjParser.T__1) - self.state = 635 + self.state = 673 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -3507,61 +3712,61 @@ def exitRule(self, listener:ParseTreeListener): def pbx_build_file(self): localctx = PBXProjParser.Pbx_build_fileContext(self, self._ctx, self.state) - self.enterRule(localctx, 66, self.RULE_pbx_build_file) + self.enterRule(localctx, 70, self.RULE_pbx_build_file) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 637 + self.state = 675 self.match(PBXProjParser.REFERENCE) - self.state = 638 + self.state = 676 self.match(PBXProjParser.T__2) - self.state = 639 + self.state = 677 self.match(PBXProjParser.T__0) - self.state = 640 + self.state = 678 self.isa_pbx_build_file() - self.state = 642 + self.state = 680 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==46: - self.state = 641 + if _la==48: + self.state = 679 self.file_ref() - self.state = 645 + self.state = 683 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==61: - self.state = 644 + if _la==65: + self.state = 682 self.platform_filter() - self.state = 648 + self.state = 686 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==62: - self.state = 647 + if _la==66: + self.state = 685 self.platform_filters() - self.state = 651 + self.state = 689 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==47: - self.state = 650 + if _la==49: + self.state = 688 self.product_ref() - self.state = 654 + self.state = 692 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==144: - self.state = 653 + if _la==149: + self.state = 691 self.settings() - self.state = 656 + self.state = 694 self.match(PBXProjParser.T__1) - self.state = 657 + self.state = 695 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -3635,55 +3840,55 @@ def exitRule(self, listener:ParseTreeListener): def pbx_build_rule(self): localctx = PBXProjParser.Pbx_build_ruleContext(self, self._ctx, self.state) - self.enterRule(localctx, 68, self.RULE_pbx_build_rule) + self.enterRule(localctx, 72, self.RULE_pbx_build_rule) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 659 + self.state = 697 self.match(PBXProjParser.REFERENCE) - self.state = 660 + self.state = 698 self.match(PBXProjParser.T__2) - self.state = 661 + self.state = 699 self.match(PBXProjParser.T__0) - self.state = 662 + self.state = 700 self.isa_pbx_build_rule() - self.state = 663 + self.state = 701 self.compiler_spec() - self.state = 665 + self.state = 703 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==91: - self.state = 664 + if _la==95: + self.state = 702 self.file_patterns() - self.state = 667 + self.state = 705 self.file_type() - self.state = 668 + self.state = 706 self.input_files() - self.state = 669 + self.state = 707 self.is_editable() - self.state = 670 + self.state = 708 self.output_files() - self.state = 672 + self.state = 710 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==95: - self.state = 671 + if _la==99: + self.state = 709 self.run_once_per_arch() - self.state = 675 + self.state = 713 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==96: - self.state = 674 + if _la==100: + self.state = 712 self.script() - self.state = 677 + self.state = 715 self.match(PBXProjParser.T__1) - self.state = 678 + self.state = 716 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -3733,37 +3938,37 @@ def exitRule(self, listener:ParseTreeListener): def pbx_build_style(self): localctx = PBXProjParser.Pbx_build_styleContext(self, self._ctx, self.state) - self.enterRule(localctx, 70, self.RULE_pbx_build_style) + self.enterRule(localctx, 74, self.RULE_pbx_build_style) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 680 + self.state = 718 self.match(PBXProjParser.REFERENCE) - self.state = 681 + self.state = 719 self.match(PBXProjParser.T__2) - self.state = 682 + self.state = 720 self.match(PBXProjParser.T__0) - self.state = 683 + self.state = 721 self.isa_pbx_build_style() - self.state = 685 + self.state = 723 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==135: - self.state = 684 + if _la==140: + self.state = 722 self.build_settings() - self.state = 688 + self.state = 726 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==69: - self.state = 687 + if _la==73: + self.state = 725 self.name() - self.state = 690 + self.state = 728 self.match(PBXProjParser.T__1) - self.state = 691 + self.state = 729 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -3821,28 +4026,28 @@ def exitRule(self, listener:ParseTreeListener): def pbx_container_item_proxy(self): localctx = PBXProjParser.Pbx_container_item_proxyContext(self, self._ctx, self.state) - self.enterRule(localctx, 72, self.RULE_pbx_container_item_proxy) + self.enterRule(localctx, 76, self.RULE_pbx_container_item_proxy) try: self.enterOuterAlt(localctx, 1) - self.state = 693 + self.state = 731 self.match(PBXProjParser.REFERENCE) - self.state = 694 + self.state = 732 self.match(PBXProjParser.T__2) - self.state = 695 + self.state = 733 self.match(PBXProjParser.T__0) - self.state = 696 + self.state = 734 self.isa_pbx_container_item_proxy() - self.state = 697 + self.state = 735 self.container_portal() - self.state = 698 + self.state = 736 self.proxy_type() - self.state = 699 + self.state = 737 self.remote_global_id_string() - self.state = 700 + self.state = 738 self.remote_info() - self.state = 701 + self.state = 739 self.match(PBXProjParser.T__1) - self.state = 702 + self.state = 740 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -3908,51 +4113,51 @@ def exitRule(self, listener:ParseTreeListener): def pbx_copy_files_build_phase(self): localctx = PBXProjParser.Pbx_copy_files_build_phaseContext(self, self._ctx, self.state) - self.enterRule(localctx, 74, self.RULE_pbx_copy_files_build_phase) + self.enterRule(localctx, 78, self.RULE_pbx_copy_files_build_phase) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 704 + self.state = 742 self.match(PBXProjParser.REFERENCE) - self.state = 705 + self.state = 743 self.match(PBXProjParser.T__2) - self.state = 706 + self.state = 744 self.match(PBXProjParser.T__0) - self.state = 707 + self.state = 745 self.isa_pbx_copy_files_build_phase() - self.state = 708 + self.state = 746 self.build_action_mask() - self.state = 710 + self.state = 748 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==137: - self.state = 709 + if _la==142: + self.state = 747 self.dst_path() - self.state = 712 + self.state = 750 self.dst_subfolder_spec() - self.state = 714 + self.state = 752 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==73: - self.state = 713 + if _la==77: + self.state = 751 self.files() - self.state = 717 + self.state = 755 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==69: - self.state = 716 + if _la==73: + self.state = 754 self.name() - self.state = 719 + self.state = 757 self.run_only_for_deployment_postprocessing() - self.state = 720 + self.state = 758 self.match(PBXProjParser.T__1) - self.state = 721 + self.state = 759 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -4061,157 +4266,309 @@ def exitRule(self, listener:ParseTreeListener): def pbx_file_reference(self): localctx = PBXProjParser.Pbx_file_referenceContext(self, self._ctx, self.state) - self.enterRule(localctx, 76, self.RULE_pbx_file_reference) + self.enterRule(localctx, 80, self.RULE_pbx_file_reference) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 723 + self.state = 761 self.match(PBXProjParser.REFERENCE) - self.state = 724 + self.state = 762 self.match(PBXProjParser.T__2) - self.state = 725 + self.state = 763 self.match(PBXProjParser.T__0) - self.state = 726 + self.state = 764 self.isa_pbx_file_reference() - self.state = 728 + self.state = 766 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==53: - self.state = 727 + if _la==55: + self.state = 765 self.comments() - self.state = 731 + self.state = 769 self._errHandler.sync(self) - la_ = self._interp.adaptivePredict(self._input,63,self._ctx) + la_ = self._interp.adaptivePredict(self._input,67,self._ctx) if la_ == 1: - self.state = 730 + self.state = 768 self.file_encoding() - self.state = 734 + self.state = 772 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==54: - self.state = 733 + if _la==56: + self.state = 771 self.explicit_file_type() - self.state = 737 + self.state = 775 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==52: - self.state = 736 + if _la==54: + self.state = 774 self.file_encoding() - self.state = 740 + self.state = 778 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==56: - self.state = 739 + if _la==60: + self.state = 777 self.include_in_index() - self.state = 743 + self.state = 781 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==57: - self.state = 742 + if _la==61: + self.state = 780 self.indent_width() - self.state = 746 + self.state = 784 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==55: - self.state = 745 + if _la==59: + self.state = 783 self.last_known_file_type() - self.state = 749 + self.state = 787 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==86: - self.state = 748 + if _la==90: + self.state = 786 self.line_ending() - self.state = 752 + self.state = 790 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==69: - self.state = 751 + if _la==73: + self.state = 789 self.name() - self.state = 755 + self.state = 793 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==70: - self.state = 754 + if _la==74: + self.state = 792 self.path() - self.state = 758 + self.state = 796 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==89: - self.state = 757 + if _la==93: + self.state = 795 self.ref_type() - self.state = 761 + self.state = 799 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==88: - self.state = 760 + if _la==92: + self.state = 798 self.plist_structure_definition_identifier() - self.state = 764 + self.state = 802 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==71: - self.state = 763 + if _la==75: + self.state = 801 self.source_tree() - self.state = 767 + self.state = 805 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==58: - self.state = 766 + if _la==62: + self.state = 804 self.tab_width() - self.state = 770 + self.state = 808 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==87: - self.state = 769 + if _la==91: + self.state = 807 self.xc_language_specification_identifier() - self.state = 773 + self.state = 811 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==59: - self.state = 772 + if _la==63: + self.state = 810 self.uses_tabs() - self.state = 776 + self.state = 814 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==60: - self.state = 775 + if _la==64: + self.state = 813 self.wraps_lines() - self.state = 778 + self.state = 816 + self.match(PBXProjParser.T__1) + self.state = 817 + self.match(PBXProjParser.T__3) + except RecognitionException as re: + localctx.exception = re + self._errHandler.reportError(self, re) + self._errHandler.recover(self, re) + finally: + self.exitRule() + return localctx + + + class Pbx_file_system_synchronized_build_file_exception_setContext(ParserRuleContext): + __slots__ = 'parser' + + def __init__(self, parser, parent:ParserRuleContext=None, invokingState:int=-1): + super().__init__(parent, invokingState) + self.parser = parser + + def REFERENCE(self): + return self.getToken(PBXProjParser.REFERENCE, 0) + + def isa_pbx_file_system_synchronized_build_file_exception_set(self): + return self.getTypedRuleContext(PBXProjParser.Isa_pbx_file_system_synchronized_build_file_exception_setContext,0) + + + def membership_exceptions(self): + return self.getTypedRuleContext(PBXProjParser.Membership_exceptionsContext,0) + + + def target(self): + return self.getTypedRuleContext(PBXProjParser.TargetContext,0) + + + def getRuleIndex(self): + return PBXProjParser.RULE_pbx_file_system_synchronized_build_file_exception_set + + def enterRule(self, listener:ParseTreeListener): + if hasattr( listener, "enterPbx_file_system_synchronized_build_file_exception_set" ): + listener.enterPbx_file_system_synchronized_build_file_exception_set(self) + + def exitRule(self, listener:ParseTreeListener): + if hasattr( listener, "exitPbx_file_system_synchronized_build_file_exception_set" ): + listener.exitPbx_file_system_synchronized_build_file_exception_set(self) + + + + + def pbx_file_system_synchronized_build_file_exception_set(self): + + localctx = PBXProjParser.Pbx_file_system_synchronized_build_file_exception_setContext(self, self._ctx, self.state) + self.enterRule(localctx, 82, self.RULE_pbx_file_system_synchronized_build_file_exception_set) + try: + self.enterOuterAlt(localctx, 1) + self.state = 819 + self.match(PBXProjParser.REFERENCE) + self.state = 820 + self.match(PBXProjParser.T__2) + self.state = 821 + self.match(PBXProjParser.T__0) + self.state = 822 + self.isa_pbx_file_system_synchronized_build_file_exception_set() + self.state = 823 + self.membership_exceptions() + self.state = 824 + self.target() + self.state = 825 + self.match(PBXProjParser.T__1) + self.state = 826 + self.match(PBXProjParser.T__3) + except RecognitionException as re: + localctx.exception = re + self._errHandler.reportError(self, re) + self._errHandler.recover(self, re) + finally: + self.exitRule() + return localctx + + + class Pbx_file_system_synchronized_root_groupContext(ParserRuleContext): + __slots__ = 'parser' + + def __init__(self, parser, parent:ParserRuleContext=None, invokingState:int=-1): + super().__init__(parent, invokingState) + self.parser = parser + + def REFERENCE(self): + return self.getToken(PBXProjParser.REFERENCE, 0) + + def isa_pbx_file_system_synchronized_root_group(self): + return self.getTypedRuleContext(PBXProjParser.Isa_pbx_file_system_synchronized_root_groupContext,0) + + + def exceptions(self): + return self.getTypedRuleContext(PBXProjParser.ExceptionsContext,0) + + + def explicit_file_types(self): + return self.getTypedRuleContext(PBXProjParser.Explicit_file_typesContext,0) + + + def explicit_folders(self): + return self.getTypedRuleContext(PBXProjParser.Explicit_foldersContext,0) + + + def path(self): + return self.getTypedRuleContext(PBXProjParser.PathContext,0) + + + def source_tree(self): + return self.getTypedRuleContext(PBXProjParser.Source_treeContext,0) + + + def getRuleIndex(self): + return PBXProjParser.RULE_pbx_file_system_synchronized_root_group + + def enterRule(self, listener:ParseTreeListener): + if hasattr( listener, "enterPbx_file_system_synchronized_root_group" ): + listener.enterPbx_file_system_synchronized_root_group(self) + + def exitRule(self, listener:ParseTreeListener): + if hasattr( listener, "exitPbx_file_system_synchronized_root_group" ): + listener.exitPbx_file_system_synchronized_root_group(self) + + + + + def pbx_file_system_synchronized_root_group(self): + + localctx = PBXProjParser.Pbx_file_system_synchronized_root_groupContext(self, self._ctx, self.state) + self.enterRule(localctx, 84, self.RULE_pbx_file_system_synchronized_root_group) + try: + self.enterOuterAlt(localctx, 1) + self.state = 828 + self.match(PBXProjParser.REFERENCE) + self.state = 829 + self.match(PBXProjParser.T__2) + self.state = 830 + self.match(PBXProjParser.T__0) + self.state = 831 + self.isa_pbx_file_system_synchronized_root_group() + self.state = 832 + self.exceptions() + self.state = 833 + self.explicit_file_types() + self.state = 834 + self.explicit_folders() + self.state = 835 + self.path() + self.state = 836 + self.source_tree() + self.state = 837 self.match(PBXProjParser.T__1) - self.state = 779 + self.state = 838 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -4265,26 +4622,26 @@ def exitRule(self, listener:ParseTreeListener): def pbx_frameworks_build_phase(self): localctx = PBXProjParser.Pbx_frameworks_build_phaseContext(self, self._ctx, self.state) - self.enterRule(localctx, 78, self.RULE_pbx_frameworks_build_phase) + self.enterRule(localctx, 86, self.RULE_pbx_frameworks_build_phase) try: self.enterOuterAlt(localctx, 1) - self.state = 781 + self.state = 840 self.match(PBXProjParser.REFERENCE) - self.state = 782 + self.state = 841 self.match(PBXProjParser.T__2) - self.state = 783 + self.state = 842 self.match(PBXProjParser.T__0) - self.state = 784 + self.state = 843 self.isa_pbx_frameworks_build_phase() - self.state = 785 + self.state = 844 self.build_action_mask() - self.state = 786 + self.state = 845 self.files() - self.state = 787 + self.state = 846 self.run_only_for_deployment_postprocessing() - self.state = 788 + self.state = 847 self.match(PBXProjParser.T__1) - self.state = 789 + self.state = 848 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -4366,89 +4723,89 @@ def exitRule(self, listener:ParseTreeListener): def pbx_group(self): localctx = PBXProjParser.Pbx_groupContext(self, self._ctx, self.state) - self.enterRule(localctx, 80, self.RULE_pbx_group) + self.enterRule(localctx, 88, self.RULE_pbx_group) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 791 + self.state = 850 self.match(PBXProjParser.REFERENCE) - self.state = 792 + self.state = 851 self.match(PBXProjParser.T__2) - self.state = 793 + self.state = 852 self.match(PBXProjParser.T__0) - self.state = 794 + self.state = 853 self.isa_pbx_group() - self.state = 795 + self.state = 854 self.children() - self.state = 797 + self.state = 856 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==53: - self.state = 796 + if _la==55: + self.state = 855 self.comments() - self.state = 800 + self.state = 859 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==57: - self.state = 799 + if _la==61: + self.state = 858 self.indent_width() - self.state = 803 + self.state = 862 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==56: - self.state = 802 + if _la==60: + self.state = 861 self.include_in_index() - self.state = 806 + self.state = 865 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==69: - self.state = 805 + if _la==73: + self.state = 864 self.name() - self.state = 809 + self.state = 868 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==70: - self.state = 808 + if _la==74: + self.state = 867 self.path() - self.state = 811 + self.state = 870 self.source_tree() - self.state = 813 + self.state = 872 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==58: - self.state = 812 + if _la==62: + self.state = 871 self.tab_width() - self.state = 816 + self.state = 875 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==59: - self.state = 815 + if _la==63: + self.state = 874 self.uses_tabs() - self.state = 819 + self.state = 878 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==60: - self.state = 818 + if _la==64: + self.state = 877 self.wraps_lines() - self.state = 821 + self.state = 880 self.match(PBXProjParser.T__1) - self.state = 822 + self.state = 881 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -4502,26 +4859,26 @@ def exitRule(self, listener:ParseTreeListener): def pbx_headers_build_phase(self): localctx = PBXProjParser.Pbx_headers_build_phaseContext(self, self._ctx, self.state) - self.enterRule(localctx, 82, self.RULE_pbx_headers_build_phase) + self.enterRule(localctx, 90, self.RULE_pbx_headers_build_phase) try: self.enterOuterAlt(localctx, 1) - self.state = 824 + self.state = 883 self.match(PBXProjParser.REFERENCE) - self.state = 825 + self.state = 884 self.match(PBXProjParser.T__2) - self.state = 826 + self.state = 885 self.match(PBXProjParser.T__0) - self.state = 827 + self.state = 886 self.isa_pbx_header_build_phase() - self.state = 828 + self.state = 887 self.build_action_mask() - self.state = 829 + self.state = 888 self.files() - self.state = 830 + self.state = 889 self.run_only_for_deployment_postprocessing() - self.state = 831 + self.state = 890 self.match(PBXProjParser.T__1) - self.state = 832 + self.state = 891 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -4611,75 +4968,75 @@ def exitRule(self, listener:ParseTreeListener): def pbx_native_target(self): localctx = PBXProjParser.Pbx_native_targetContext(self, self._ctx, self.state) - self.enterRule(localctx, 84, self.RULE_pbx_native_target) + self.enterRule(localctx, 92, self.RULE_pbx_native_target) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 834 + self.state = 893 self.match(PBXProjParser.REFERENCE) - self.state = 835 + self.state = 894 self.match(PBXProjParser.T__2) - self.state = 836 + self.state = 895 self.match(PBXProjParser.T__0) - self.state = 837 + self.state = 896 self.isa_pbx_native_target() - self.state = 838 + self.state = 897 self.build_configuration_list() - self.state = 839 + self.state = 898 self.build_phases() - self.state = 840 + self.state = 899 self.build_rules() - self.state = 842 + self.state = 901 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==53: - self.state = 841 + if _la==55: + self.state = 900 self.comments() - self.state = 845 + self.state = 904 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==135: - self.state = 844 + if _la==140: + self.state = 903 self.build_settings() - self.state = 847 + self.state = 906 self.dependencies() - self.state = 848 + self.state = 907 self.name() - self.state = 850 + self.state = 909 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==64: - self.state = 849 + if _la==68: + self.state = 908 self.product_install_path() - self.state = 853 + self.state = 912 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==68: - self.state = 852 + if _la==72: + self.state = 911 self.package_product_dependencies() - self.state = 855 + self.state = 914 self.product_name() - self.state = 857 + self.state = 916 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==84: - self.state = 856 + if _la==88: + self.state = 915 self.product_reference() - self.state = 859 + self.state = 918 self.product_type() - self.state = 860 + self.state = 919 self.match(PBXProjParser.T__1) - self.state = 861 + self.state = 920 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -4757,38 +5114,38 @@ def exitRule(self, listener:ParseTreeListener): def pbx_legacy_target(self): localctx = PBXProjParser.Pbx_legacy_targetContext(self, self._ctx, self.state) - self.enterRule(localctx, 86, self.RULE_pbx_legacy_target) + self.enterRule(localctx, 94, self.RULE_pbx_legacy_target) try: self.enterOuterAlt(localctx, 1) - self.state = 863 + self.state = 922 self.match(PBXProjParser.REFERENCE) - self.state = 864 + self.state = 923 self.match(PBXProjParser.T__2) - self.state = 865 + self.state = 924 self.match(PBXProjParser.T__0) - self.state = 866 + self.state = 925 self.isa_pbx_legacy_target() - self.state = 867 + self.state = 926 self.build_arguments_string() - self.state = 868 + self.state = 927 self.build_configuration_list() - self.state = 869 + self.state = 928 self.build_phases() - self.state = 870 + self.state = 929 self.build_tool_path() - self.state = 871 + self.state = 930 self.build_working_directory() - self.state = 872 + self.state = 931 self.dependencies() - self.state = 873 + self.state = 932 self.name() - self.state = 874 + self.state = 933 self.pass_build_settings_in_environment() - self.state = 875 + self.state = 934 self.product_name() - self.state = 876 + self.state = 935 self.match(PBXProjParser.T__1) - self.state = 877 + self.state = 936 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -4861,6 +5218,10 @@ def package_references(self): return self.getTypedRuleContext(PBXProjParser.Package_referencesContext,0) + def preferred_project_object_version(self): + return self.getTypedRuleContext(PBXProjParser.Preferred_project_object_versionContext,0) + + def product_ref_group(self): return self.getTypedRuleContext(PBXProjParser.Product_ref_groupContext,0) @@ -4890,111 +5251,119 @@ def exitRule(self, listener:ParseTreeListener): def pbx_project(self): localctx = PBXProjParser.Pbx_projectContext(self, self._ctx, self.state) - self.enterRule(localctx, 88, self.RULE_pbx_project) + self.enterRule(localctx, 96, self.RULE_pbx_project) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 879 + self.state = 938 self.match(PBXProjParser.REFERENCE) - self.state = 880 + self.state = 939 self.match(PBXProjParser.T__2) - self.state = 881 + self.state = 940 self.match(PBXProjParser.T__0) - self.state = 882 + self.state = 941 self.isa_pbx_project() - self.state = 884 + self.state = 943 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==97: - self.state = 883 + if _la==101: + self.state = 942 self.attributes() - self.state = 886 + self.state = 945 self.build_configuration_list() - self.state = 888 + self.state = 947 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==135: - self.state = 887 + if _la==140: + self.state = 946 self.build_settings() - self.state = 891 + self.state = 950 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==136: - self.state = 890 + if _la==141: + self.state = 949 self.build_styles() - self.state = 894 + self.state = 953 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==111: - self.state = 893 + if _la==115: + self.state = 952 self.compatibility_version() - self.state = 897 + self.state = 956 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==112: - self.state = 896 + if _la==116: + self.state = 955 self.development_region() - self.state = 899 + self.state = 958 self.has_scanned_for_encodings() - self.state = 901 + self.state = 960 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==114: - self.state = 900 + if _la==118: + self.state = 959 self.known_regions() - self.state = 903 + self.state = 962 self.main_group() - self.state = 905 + self.state = 964 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==117: - self.state = 904 + if _la==121: + self.state = 963 self.package_references() - self.state = 908 + self.state = 967 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==116: - self.state = 907 + if _la==122: + self.state = 966 + self.preferred_project_object_version() + + + self.state = 970 + self._errHandler.sync(self) + _la = self._input.LA(1) + if _la==120: + self.state = 969 self.product_ref_group() - self.state = 910 + self.state = 972 self.project_dir_path() - self.state = 912 + self.state = 974 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==119: - self.state = 911 + if _la==124: + self.state = 973 self.project_references() - self.state = 915 + self.state = 977 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==120: - self.state = 914 + if _la==125: + self.state = 976 self.project_root() - self.state = 917 + self.state = 979 self.targets() - self.state = 918 + self.state = 980 self.match(PBXProjParser.T__1) - self.state = 919 + self.state = 981 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -5056,37 +5425,37 @@ def exitRule(self, listener:ParseTreeListener): def pbx_reference_proxy(self): localctx = PBXProjParser.Pbx_reference_proxyContext(self, self._ctx, self.state) - self.enterRule(localctx, 90, self.RULE_pbx_reference_proxy) + self.enterRule(localctx, 98, self.RULE_pbx_reference_proxy) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 921 + self.state = 983 self.match(PBXProjParser.REFERENCE) - self.state = 922 + self.state = 984 self.match(PBXProjParser.T__2) - self.state = 923 + self.state = 985 self.match(PBXProjParser.T__0) - self.state = 924 + self.state = 986 self.isa_pbx_reference_proxy() - self.state = 925 + self.state = 987 self.file_type() - self.state = 927 + self.state = 989 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==69: - self.state = 926 + if _la==73: + self.state = 988 self.name() - self.state = 929 + self.state = 991 self.path() - self.state = 930 + self.state = 992 self.remote_ref() - self.state = 931 + self.state = 993 self.source_tree() - self.state = 932 + self.state = 994 self.match(PBXProjParser.T__1) - self.state = 933 + self.state = 995 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -5140,26 +5509,26 @@ def exitRule(self, listener:ParseTreeListener): def pbx_resources_build_phase(self): localctx = PBXProjParser.Pbx_resources_build_phaseContext(self, self._ctx, self.state) - self.enterRule(localctx, 92, self.RULE_pbx_resources_build_phase) + self.enterRule(localctx, 100, self.RULE_pbx_resources_build_phase) try: self.enterOuterAlt(localctx, 1) - self.state = 935 + self.state = 997 self.match(PBXProjParser.REFERENCE) - self.state = 936 + self.state = 998 self.match(PBXProjParser.T__2) - self.state = 937 + self.state = 999 self.match(PBXProjParser.T__0) - self.state = 938 + self.state = 1000 self.isa_pbx_resources_build_phase() - self.state = 939 + self.state = 1001 self.build_action_mask() - self.state = 940 + self.state = 1002 self.files() - self.state = 941 + self.state = 1003 self.run_only_for_deployment_postprocessing() - self.state = 942 + self.state = 1004 self.match(PBXProjParser.T__1) - self.state = 943 + self.state = 1005 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -5249,87 +5618,87 @@ def exitRule(self, listener:ParseTreeListener): def pbx_shell_script_build_phase(self): localctx = PBXProjParser.Pbx_shell_script_build_phaseContext(self, self._ctx, self.state) - self.enterRule(localctx, 94, self.RULE_pbx_shell_script_build_phase) + self.enterRule(localctx, 102, self.RULE_pbx_shell_script_build_phase) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 945 + self.state = 1007 self.match(PBXProjParser.REFERENCE) - self.state = 946 + self.state = 1008 self.match(PBXProjParser.T__2) - self.state = 947 + self.state = 1009 self.match(PBXProjParser.T__0) - self.state = 948 + self.state = 1010 self.isa_pbx_shell_script_build_phase() - self.state = 950 + self.state = 1012 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==45: - self.state = 949 + if _la==47: + self.state = 1011 self.always_out_of_date() - self.state = 952 + self.state = 1014 self.build_action_mask() - self.state = 953 + self.state = 1015 self.files() - self.state = 955 + self.state = 1017 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==122: - self.state = 954 + if _la==127: + self.state = 1016 self.input_file_list_paths() - self.state = 958 + self.state = 1020 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==123: - self.state = 957 + if _la==128: + self.state = 1019 self.input_paths() - self.state = 961 + self.state = 1023 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==69: - self.state = 960 + if _la==73: + self.state = 1022 self.name() - self.state = 964 + self.state = 1026 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==124: - self.state = 963 + if _la==129: + self.state = 1025 self.output_file_list_paths() - self.state = 967 + self.state = 1029 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==125: - self.state = 966 + if _la==130: + self.state = 1028 self.output_paths() - self.state = 969 + self.state = 1031 self.run_only_for_deployment_postprocessing() - self.state = 970 + self.state = 1032 self.shell_path() - self.state = 971 + self.state = 1033 self.shell_script() - self.state = 973 + self.state = 1035 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==129: - self.state = 972 + if _la==134: + self.state = 1034 self.show_env_vars_in_log() - self.state = 975 + self.state = 1037 self.match(PBXProjParser.T__1) - self.state = 976 + self.state = 1038 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -5411,40 +5780,40 @@ def exitRule(self, listener:ParseTreeListener): def pbx_shell_build_phase(self): localctx = PBXProjParser.Pbx_shell_build_phaseContext(self, self._ctx, self.state) - self.enterRule(localctx, 96, self.RULE_pbx_shell_build_phase) + self.enterRule(localctx, 104, self.RULE_pbx_shell_build_phase) try: self.enterOuterAlt(localctx, 1) - self.state = 978 + self.state = 1040 self.match(PBXProjParser.REFERENCE) - self.state = 979 + self.state = 1041 self.match(PBXProjParser.T__2) - self.state = 980 + self.state = 1042 self.match(PBXProjParser.T__0) - self.state = 981 + self.state = 1043 self.isa_pbx_shell_build_phase() - self.state = 982 + self.state = 1044 self.build_action_mask() - self.state = 983 + self.state = 1045 self.files() - self.state = 984 + self.state = 1046 self.input_file_list_paths() - self.state = 985 + self.state = 1047 self.input_paths() - self.state = 986 + self.state = 1048 self.name() - self.state = 987 + self.state = 1049 self.output_file_list_paths() - self.state = 988 + self.state = 1050 self.output_paths() - self.state = 989 + self.state = 1051 self.run_only_for_deployment_postprocessing() - self.state = 990 + self.state = 1052 self.shell_path() - self.state = 991 + self.state = 1053 self.shell() - self.state = 992 + self.state = 1054 self.match(PBXProjParser.T__1) - self.state = 993 + self.state = 1055 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -5498,26 +5867,26 @@ def exitRule(self, listener:ParseTreeListener): def pbx_sources_build_phase(self): localctx = PBXProjParser.Pbx_sources_build_phaseContext(self, self._ctx, self.state) - self.enterRule(localctx, 98, self.RULE_pbx_sources_build_phase) + self.enterRule(localctx, 106, self.RULE_pbx_sources_build_phase) try: self.enterOuterAlt(localctx, 1) - self.state = 995 + self.state = 1057 self.match(PBXProjParser.REFERENCE) - self.state = 996 + self.state = 1058 self.match(PBXProjParser.T__2) - self.state = 997 + self.state = 1059 self.match(PBXProjParser.T__0) - self.state = 998 + self.state = 1060 self.isa_pbx_sources_build_phase() - self.state = 999 + self.state = 1061 self.build_action_mask() - self.state = 1000 + self.state = 1062 self.files() - self.state = 1001 + self.state = 1063 self.run_only_for_deployment_postprocessing() - self.state = 1002 + self.state = 1064 self.match(PBXProjParser.T__1) - self.state = 1003 + self.state = 1065 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -5583,69 +5952,69 @@ def exitRule(self, listener:ParseTreeListener): def pbx_target_dependency(self): localctx = PBXProjParser.Pbx_target_dependencyContext(self, self._ctx, self.state) - self.enterRule(localctx, 100, self.RULE_pbx_target_dependency) + self.enterRule(localctx, 108, self.RULE_pbx_target_dependency) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1005 + self.state = 1067 self.match(PBXProjParser.REFERENCE) - self.state = 1006 + self.state = 1068 self.match(PBXProjParser.T__2) - self.state = 1007 + self.state = 1069 self.match(PBXProjParser.T__0) - self.state = 1008 + self.state = 1070 self.isa_pbx_target_dependency() - self.state = 1010 + self.state = 1072 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==69: - self.state = 1009 + if _la==73: + self.state = 1071 self.name() - self.state = 1013 + self.state = 1075 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==61: - self.state = 1012 + if _la==65: + self.state = 1074 self.platform_filter() - self.state = 1016 + self.state = 1078 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==62: - self.state = 1015 + if _la==66: + self.state = 1077 self.platform_filters() - self.state = 1019 + self.state = 1081 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==47: - self.state = 1018 + if _la==49: + self.state = 1080 self.product_ref() - self.state = 1022 + self.state = 1084 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==130: - self.state = 1021 + if _la==135: + self.state = 1083 self.target() - self.state = 1025 + self.state = 1087 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==131: - self.state = 1024 + if _la==136: + self.state = 1086 self.target_proxy() - self.state = 1027 + self.state = 1089 self.match(PBXProjParser.T__1) - self.state = 1028 + self.state = 1090 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -5703,35 +6072,35 @@ def exitRule(self, listener:ParseTreeListener): def pbx_variant_group(self): localctx = PBXProjParser.Pbx_variant_groupContext(self, self._ctx, self.state) - self.enterRule(localctx, 102, self.RULE_pbx_variant_group) + self.enterRule(localctx, 110, self.RULE_pbx_variant_group) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1030 + self.state = 1092 self.match(PBXProjParser.REFERENCE) - self.state = 1031 + self.state = 1093 self.match(PBXProjParser.T__2) - self.state = 1032 + self.state = 1094 self.match(PBXProjParser.T__0) - self.state = 1033 + self.state = 1095 self.isa_pbx_variant_group() - self.state = 1034 + self.state = 1096 self.children() - self.state = 1035 + self.state = 1097 self.name() - self.state = 1037 + self.state = 1099 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==70: - self.state = 1036 + if _la==74: + self.state = 1098 self.path() - self.state = 1039 + self.state = 1101 self.source_tree() - self.state = 1040 + self.state = 1102 self.match(PBXProjParser.T__1) - self.state = 1041 + self.state = 1103 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -5785,33 +6154,33 @@ def exitRule(self, listener:ParseTreeListener): def xc_build_configuration(self): localctx = PBXProjParser.Xc_build_configurationContext(self, self._ctx, self.state) - self.enterRule(localctx, 104, self.RULE_xc_build_configuration) + self.enterRule(localctx, 112, self.RULE_xc_build_configuration) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1043 + self.state = 1105 self.match(PBXProjParser.REFERENCE) - self.state = 1044 + self.state = 1106 self.match(PBXProjParser.T__2) - self.state = 1045 + self.state = 1107 self.match(PBXProjParser.T__0) - self.state = 1046 + self.state = 1108 self.isa_xc_build_configuration() - self.state = 1048 + self.state = 1110 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==134: - self.state = 1047 + if _la==139: + self.state = 1109 self.base_configuration_reference() - self.state = 1050 + self.state = 1112 self.build_settings() - self.state = 1051 + self.state = 1113 self.name() - self.state = 1052 + self.state = 1114 self.match(PBXProjParser.T__1) - self.state = 1053 + self.state = 1115 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -5865,33 +6234,33 @@ def exitRule(self, listener:ParseTreeListener): def xc_configuration_list(self): localctx = PBXProjParser.Xc_configuration_listContext(self, self._ctx, self.state) - self.enterRule(localctx, 106, self.RULE_xc_configuration_list) + self.enterRule(localctx, 114, self.RULE_xc_configuration_list) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1055 + self.state = 1117 self.match(PBXProjParser.REFERENCE) - self.state = 1056 + self.state = 1118 self.match(PBXProjParser.T__2) - self.state = 1057 + self.state = 1119 self.match(PBXProjParser.T__0) - self.state = 1058 + self.state = 1120 self.isa_xc_configuration_list() - self.state = 1059 + self.state = 1121 self.build_configurations() - self.state = 1060 + self.state = 1122 self.default_configuration_is_visible() - self.state = 1062 + self.state = 1124 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==143: - self.state = 1061 + if _la==148: + self.state = 1123 self.default_configuration_name() - self.state = 1064 + self.state = 1126 self.match(PBXProjParser.T__1) - self.state = 1065 + self.state = 1127 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -5941,24 +6310,24 @@ def exitRule(self, listener:ParseTreeListener): def xc_remote_swift_package_reference(self): localctx = PBXProjParser.Xc_remote_swift_package_referenceContext(self, self._ctx, self.state) - self.enterRule(localctx, 108, self.RULE_xc_remote_swift_package_reference) + self.enterRule(localctx, 116, self.RULE_xc_remote_swift_package_reference) try: self.enterOuterAlt(localctx, 1) - self.state = 1067 + self.state = 1129 self.match(PBXProjParser.REFERENCE) - self.state = 1068 + self.state = 1130 self.match(PBXProjParser.T__2) - self.state = 1069 + self.state = 1131 self.match(PBXProjParser.T__0) - self.state = 1070 + self.state = 1132 self.isa_xc_remote_swift_package_reference() - self.state = 1071 + self.state = 1133 self.repository_url() - self.state = 1072 + self.state = 1134 self.requirement() - self.state = 1073 + self.state = 1135 self.match(PBXProjParser.T__1) - self.state = 1074 + self.state = 1136 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -6008,31 +6377,31 @@ def exitRule(self, listener:ParseTreeListener): def xc_swift_package_product_dependency(self): localctx = PBXProjParser.Xc_swift_package_product_dependencyContext(self, self._ctx, self.state) - self.enterRule(localctx, 110, self.RULE_xc_swift_package_product_dependency) + self.enterRule(localctx, 118, self.RULE_xc_swift_package_product_dependency) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1076 + self.state = 1138 self.match(PBXProjParser.REFERENCE) - self.state = 1077 + self.state = 1139 self.match(PBXProjParser.T__2) - self.state = 1078 + self.state = 1140 self.match(PBXProjParser.T__0) - self.state = 1079 + self.state = 1141 self.isa_xc_swift_package_product_dependency() - self.state = 1081 + self.state = 1143 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==67: - self.state = 1080 + if _la==71: + self.state = 1142 self.xc_package() - self.state = 1083 + self.state = 1145 self.product_name() - self.state = 1084 + self.state = 1146 self.match(PBXProjParser.T__1) - self.state = 1085 + self.state = 1147 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -6098,39 +6467,39 @@ def exitRule(self, listener:ParseTreeListener): def xc_version_group(self): localctx = PBXProjParser.Xc_version_groupContext(self, self._ctx, self.state) - self.enterRule(localctx, 112, self.RULE_xc_version_group) + self.enterRule(localctx, 120, self.RULE_xc_version_group) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1087 + self.state = 1149 self.match(PBXProjParser.REFERENCE) - self.state = 1088 + self.state = 1150 self.match(PBXProjParser.T__2) - self.state = 1089 + self.state = 1151 self.match(PBXProjParser.T__0) - self.state = 1090 + self.state = 1152 self.isa_xc_version_group() - self.state = 1091 + self.state = 1153 self.children() - self.state = 1092 + self.state = 1154 self.current_version() - self.state = 1094 + self.state = 1156 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==69: - self.state = 1093 + if _la==73: + self.state = 1155 self.name() - self.state = 1096 + self.state = 1158 self.path() - self.state = 1097 + self.state = 1159 self.source_tree() - self.state = 1098 + self.state = 1160 self.version_group_type() - self.state = 1099 + self.state = 1161 self.match(PBXProjParser.T__1) - self.state = 1100 + self.state = 1162 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -6171,16 +6540,16 @@ def exitRule(self, listener:ParseTreeListener): def isa_pbx_aggregate_target(self): localctx = PBXProjParser.Isa_pbx_aggregate_targetContext(self, self._ctx, self.state) - self.enterRule(localctx, 114, self.RULE_isa_pbx_aggregate_target) + self.enterRule(localctx, 122, self.RULE_isa_pbx_aggregate_target) try: self.enterOuterAlt(localctx, 1) - self.state = 1102 + self.state = 1164 self.match(PBXProjParser.ISA) - self.state = 1103 + self.state = 1165 self.match(PBXProjParser.T__2) - self.state = 1104 + self.state = 1166 self.match(PBXProjParser.PBX_AGGREGATE_TARGET) - self.state = 1105 + self.state = 1167 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -6221,16 +6590,16 @@ def exitRule(self, listener:ParseTreeListener): def isa_pbx_build_file(self): localctx = PBXProjParser.Isa_pbx_build_fileContext(self, self._ctx, self.state) - self.enterRule(localctx, 116, self.RULE_isa_pbx_build_file) + self.enterRule(localctx, 124, self.RULE_isa_pbx_build_file) try: self.enterOuterAlt(localctx, 1) - self.state = 1107 + self.state = 1169 self.match(PBXProjParser.ISA) - self.state = 1108 + self.state = 1170 self.match(PBXProjParser.T__2) - self.state = 1109 + self.state = 1171 self.match(PBXProjParser.PBX_BUILD_FILE) - self.state = 1110 + self.state = 1172 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -6271,16 +6640,16 @@ def exitRule(self, listener:ParseTreeListener): def isa_pbx_build_rule(self): localctx = PBXProjParser.Isa_pbx_build_ruleContext(self, self._ctx, self.state) - self.enterRule(localctx, 118, self.RULE_isa_pbx_build_rule) + self.enterRule(localctx, 126, self.RULE_isa_pbx_build_rule) try: self.enterOuterAlt(localctx, 1) - self.state = 1112 + self.state = 1174 self.match(PBXProjParser.ISA) - self.state = 1113 + self.state = 1175 self.match(PBXProjParser.T__2) - self.state = 1114 + self.state = 1176 self.match(PBXProjParser.PBX_BUILD_RULE) - self.state = 1115 + self.state = 1177 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -6321,16 +6690,16 @@ def exitRule(self, listener:ParseTreeListener): def isa_pbx_build_style(self): localctx = PBXProjParser.Isa_pbx_build_styleContext(self, self._ctx, self.state) - self.enterRule(localctx, 120, self.RULE_isa_pbx_build_style) + self.enterRule(localctx, 128, self.RULE_isa_pbx_build_style) try: self.enterOuterAlt(localctx, 1) - self.state = 1117 + self.state = 1179 self.match(PBXProjParser.ISA) - self.state = 1118 + self.state = 1180 self.match(PBXProjParser.T__2) - self.state = 1119 + self.state = 1181 self.match(PBXProjParser.PBX_BUILD_STYLE) - self.state = 1120 + self.state = 1182 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -6371,16 +6740,16 @@ def exitRule(self, listener:ParseTreeListener): def isa_pbx_container_item_proxy(self): localctx = PBXProjParser.Isa_pbx_container_item_proxyContext(self, self._ctx, self.state) - self.enterRule(localctx, 122, self.RULE_isa_pbx_container_item_proxy) + self.enterRule(localctx, 130, self.RULE_isa_pbx_container_item_proxy) try: self.enterOuterAlt(localctx, 1) - self.state = 1122 + self.state = 1184 self.match(PBXProjParser.ISA) - self.state = 1123 + self.state = 1185 self.match(PBXProjParser.T__2) - self.state = 1124 + self.state = 1186 self.match(PBXProjParser.PBX_CONTAINER_ITEM_PROXY) - self.state = 1125 + self.state = 1187 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -6421,16 +6790,16 @@ def exitRule(self, listener:ParseTreeListener): def isa_pbx_copy_files_build_phase(self): localctx = PBXProjParser.Isa_pbx_copy_files_build_phaseContext(self, self._ctx, self.state) - self.enterRule(localctx, 124, self.RULE_isa_pbx_copy_files_build_phase) + self.enterRule(localctx, 132, self.RULE_isa_pbx_copy_files_build_phase) try: self.enterOuterAlt(localctx, 1) - self.state = 1127 + self.state = 1189 self.match(PBXProjParser.ISA) - self.state = 1128 + self.state = 1190 self.match(PBXProjParser.T__2) - self.state = 1129 + self.state = 1191 self.match(PBXProjParser.PBX_COPY_FILES_BUILD_PHASE) - self.state = 1130 + self.state = 1192 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -6471,16 +6840,116 @@ def exitRule(self, listener:ParseTreeListener): def isa_pbx_file_reference(self): localctx = PBXProjParser.Isa_pbx_file_referenceContext(self, self._ctx, self.state) - self.enterRule(localctx, 126, self.RULE_isa_pbx_file_reference) + self.enterRule(localctx, 134, self.RULE_isa_pbx_file_reference) + try: + self.enterOuterAlt(localctx, 1) + self.state = 1194 + self.match(PBXProjParser.ISA) + self.state = 1195 + self.match(PBXProjParser.T__2) + self.state = 1196 + self.match(PBXProjParser.PBX_FILE_REFERENCE) + self.state = 1197 + self.match(PBXProjParser.T__3) + except RecognitionException as re: + localctx.exception = re + self._errHandler.reportError(self, re) + self._errHandler.recover(self, re) + finally: + self.exitRule() + return localctx + + + class Isa_pbx_file_system_synchronized_build_file_exception_setContext(ParserRuleContext): + __slots__ = 'parser' + + def __init__(self, parser, parent:ParserRuleContext=None, invokingState:int=-1): + super().__init__(parent, invokingState) + self.parser = parser + + def ISA(self): + return self.getToken(PBXProjParser.ISA, 0) + + def PBX_FILE_SYSTEM_SYNCHRONIZED_BUILD_FILE_EXCEPTION_SET(self): + return self.getToken(PBXProjParser.PBX_FILE_SYSTEM_SYNCHRONIZED_BUILD_FILE_EXCEPTION_SET, 0) + + def getRuleIndex(self): + return PBXProjParser.RULE_isa_pbx_file_system_synchronized_build_file_exception_set + + def enterRule(self, listener:ParseTreeListener): + if hasattr( listener, "enterIsa_pbx_file_system_synchronized_build_file_exception_set" ): + listener.enterIsa_pbx_file_system_synchronized_build_file_exception_set(self) + + def exitRule(self, listener:ParseTreeListener): + if hasattr( listener, "exitIsa_pbx_file_system_synchronized_build_file_exception_set" ): + listener.exitIsa_pbx_file_system_synchronized_build_file_exception_set(self) + + + + + def isa_pbx_file_system_synchronized_build_file_exception_set(self): + + localctx = PBXProjParser.Isa_pbx_file_system_synchronized_build_file_exception_setContext(self, self._ctx, self.state) + self.enterRule(localctx, 136, self.RULE_isa_pbx_file_system_synchronized_build_file_exception_set) + try: + self.enterOuterAlt(localctx, 1) + self.state = 1199 + self.match(PBXProjParser.ISA) + self.state = 1200 + self.match(PBXProjParser.T__2) + self.state = 1201 + self.match(PBXProjParser.PBX_FILE_SYSTEM_SYNCHRONIZED_BUILD_FILE_EXCEPTION_SET) + self.state = 1202 + self.match(PBXProjParser.T__3) + except RecognitionException as re: + localctx.exception = re + self._errHandler.reportError(self, re) + self._errHandler.recover(self, re) + finally: + self.exitRule() + return localctx + + + class Isa_pbx_file_system_synchronized_root_groupContext(ParserRuleContext): + __slots__ = 'parser' + + def __init__(self, parser, parent:ParserRuleContext=None, invokingState:int=-1): + super().__init__(parent, invokingState) + self.parser = parser + + def ISA(self): + return self.getToken(PBXProjParser.ISA, 0) + + def PBX_FILE_SYSTEM_SYNCHRONIZED_ROOT_GROUP(self): + return self.getToken(PBXProjParser.PBX_FILE_SYSTEM_SYNCHRONIZED_ROOT_GROUP, 0) + + def getRuleIndex(self): + return PBXProjParser.RULE_isa_pbx_file_system_synchronized_root_group + + def enterRule(self, listener:ParseTreeListener): + if hasattr( listener, "enterIsa_pbx_file_system_synchronized_root_group" ): + listener.enterIsa_pbx_file_system_synchronized_root_group(self) + + def exitRule(self, listener:ParseTreeListener): + if hasattr( listener, "exitIsa_pbx_file_system_synchronized_root_group" ): + listener.exitIsa_pbx_file_system_synchronized_root_group(self) + + + + + def isa_pbx_file_system_synchronized_root_group(self): + + localctx = PBXProjParser.Isa_pbx_file_system_synchronized_root_groupContext(self, self._ctx, self.state) + self.enterRule(localctx, 138, self.RULE_isa_pbx_file_system_synchronized_root_group) try: self.enterOuterAlt(localctx, 1) - self.state = 1132 + self.state = 1204 self.match(PBXProjParser.ISA) - self.state = 1133 + self.state = 1205 self.match(PBXProjParser.T__2) - self.state = 1134 - self.match(PBXProjParser.PBX_FILE_REFERENCE) - self.state = 1135 + self.state = 1206 + self.match(PBXProjParser.PBX_FILE_SYSTEM_SYNCHRONIZED_ROOT_GROUP) + self.state = 1207 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -6521,16 +6990,16 @@ def exitRule(self, listener:ParseTreeListener): def isa_pbx_frameworks_build_phase(self): localctx = PBXProjParser.Isa_pbx_frameworks_build_phaseContext(self, self._ctx, self.state) - self.enterRule(localctx, 128, self.RULE_isa_pbx_frameworks_build_phase) + self.enterRule(localctx, 140, self.RULE_isa_pbx_frameworks_build_phase) try: self.enterOuterAlt(localctx, 1) - self.state = 1137 + self.state = 1209 self.match(PBXProjParser.ISA) - self.state = 1138 + self.state = 1210 self.match(PBXProjParser.T__2) - self.state = 1139 + self.state = 1211 self.match(PBXProjParser.PBX_FRAMEWORKS_BUILD_PHASE) - self.state = 1140 + self.state = 1212 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -6571,16 +7040,16 @@ def exitRule(self, listener:ParseTreeListener): def isa_pbx_group(self): localctx = PBXProjParser.Isa_pbx_groupContext(self, self._ctx, self.state) - self.enterRule(localctx, 130, self.RULE_isa_pbx_group) + self.enterRule(localctx, 142, self.RULE_isa_pbx_group) try: self.enterOuterAlt(localctx, 1) - self.state = 1142 + self.state = 1214 self.match(PBXProjParser.ISA) - self.state = 1143 + self.state = 1215 self.match(PBXProjParser.T__2) - self.state = 1144 + self.state = 1216 self.match(PBXProjParser.PBX_GROUP) - self.state = 1145 + self.state = 1217 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -6621,16 +7090,16 @@ def exitRule(self, listener:ParseTreeListener): def isa_pbx_header_build_phase(self): localctx = PBXProjParser.Isa_pbx_header_build_phaseContext(self, self._ctx, self.state) - self.enterRule(localctx, 132, self.RULE_isa_pbx_header_build_phase) + self.enterRule(localctx, 144, self.RULE_isa_pbx_header_build_phase) try: self.enterOuterAlt(localctx, 1) - self.state = 1147 + self.state = 1219 self.match(PBXProjParser.ISA) - self.state = 1148 + self.state = 1220 self.match(PBXProjParser.T__2) - self.state = 1149 + self.state = 1221 self.match(PBXProjParser.PBX_HEADERS_BUILD_PHASE) - self.state = 1150 + self.state = 1222 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -6671,16 +7140,16 @@ def exitRule(self, listener:ParseTreeListener): def isa_pbx_native_target(self): localctx = PBXProjParser.Isa_pbx_native_targetContext(self, self._ctx, self.state) - self.enterRule(localctx, 134, self.RULE_isa_pbx_native_target) + self.enterRule(localctx, 146, self.RULE_isa_pbx_native_target) try: self.enterOuterAlt(localctx, 1) - self.state = 1152 + self.state = 1224 self.match(PBXProjParser.ISA) - self.state = 1153 + self.state = 1225 self.match(PBXProjParser.T__2) - self.state = 1154 + self.state = 1226 self.match(PBXProjParser.PBX_NATIVE_TARGET) - self.state = 1155 + self.state = 1227 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -6721,16 +7190,16 @@ def exitRule(self, listener:ParseTreeListener): def isa_pbx_legacy_target(self): localctx = PBXProjParser.Isa_pbx_legacy_targetContext(self, self._ctx, self.state) - self.enterRule(localctx, 136, self.RULE_isa_pbx_legacy_target) + self.enterRule(localctx, 148, self.RULE_isa_pbx_legacy_target) try: self.enterOuterAlt(localctx, 1) - self.state = 1157 + self.state = 1229 self.match(PBXProjParser.ISA) - self.state = 1158 + self.state = 1230 self.match(PBXProjParser.T__2) - self.state = 1159 + self.state = 1231 self.match(PBXProjParser.PBX_LEGACY_TARGET) - self.state = 1160 + self.state = 1232 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -6771,16 +7240,16 @@ def exitRule(self, listener:ParseTreeListener): def isa_pbx_project(self): localctx = PBXProjParser.Isa_pbx_projectContext(self, self._ctx, self.state) - self.enterRule(localctx, 138, self.RULE_isa_pbx_project) + self.enterRule(localctx, 150, self.RULE_isa_pbx_project) try: self.enterOuterAlt(localctx, 1) - self.state = 1162 + self.state = 1234 self.match(PBXProjParser.ISA) - self.state = 1163 + self.state = 1235 self.match(PBXProjParser.T__2) - self.state = 1164 + self.state = 1236 self.match(PBXProjParser.PBX_PROJECT) - self.state = 1165 + self.state = 1237 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -6821,16 +7290,16 @@ def exitRule(self, listener:ParseTreeListener): def isa_pbx_reference_proxy(self): localctx = PBXProjParser.Isa_pbx_reference_proxyContext(self, self._ctx, self.state) - self.enterRule(localctx, 140, self.RULE_isa_pbx_reference_proxy) + self.enterRule(localctx, 152, self.RULE_isa_pbx_reference_proxy) try: self.enterOuterAlt(localctx, 1) - self.state = 1167 + self.state = 1239 self.match(PBXProjParser.ISA) - self.state = 1168 + self.state = 1240 self.match(PBXProjParser.T__2) - self.state = 1169 + self.state = 1241 self.match(PBXProjParser.PBX_REFERENCE_PROXY) - self.state = 1170 + self.state = 1242 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -6871,16 +7340,16 @@ def exitRule(self, listener:ParseTreeListener): def isa_pbx_resources_build_phase(self): localctx = PBXProjParser.Isa_pbx_resources_build_phaseContext(self, self._ctx, self.state) - self.enterRule(localctx, 142, self.RULE_isa_pbx_resources_build_phase) + self.enterRule(localctx, 154, self.RULE_isa_pbx_resources_build_phase) try: self.enterOuterAlt(localctx, 1) - self.state = 1172 + self.state = 1244 self.match(PBXProjParser.ISA) - self.state = 1173 + self.state = 1245 self.match(PBXProjParser.T__2) - self.state = 1174 + self.state = 1246 self.match(PBXProjParser.PBX_RESOURCES_BUILD_PHASE) - self.state = 1175 + self.state = 1247 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -6921,16 +7390,16 @@ def exitRule(self, listener:ParseTreeListener): def isa_pbx_shell_script_build_phase(self): localctx = PBXProjParser.Isa_pbx_shell_script_build_phaseContext(self, self._ctx, self.state) - self.enterRule(localctx, 144, self.RULE_isa_pbx_shell_script_build_phase) + self.enterRule(localctx, 156, self.RULE_isa_pbx_shell_script_build_phase) try: self.enterOuterAlt(localctx, 1) - self.state = 1177 + self.state = 1249 self.match(PBXProjParser.ISA) - self.state = 1178 + self.state = 1250 self.match(PBXProjParser.T__2) - self.state = 1179 + self.state = 1251 self.match(PBXProjParser.PBX_SHELL_SCRIPT_BUILD_PHASE) - self.state = 1180 + self.state = 1252 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -6971,16 +7440,16 @@ def exitRule(self, listener:ParseTreeListener): def isa_pbx_shell_build_phase(self): localctx = PBXProjParser.Isa_pbx_shell_build_phaseContext(self, self._ctx, self.state) - self.enterRule(localctx, 146, self.RULE_isa_pbx_shell_build_phase) + self.enterRule(localctx, 158, self.RULE_isa_pbx_shell_build_phase) try: self.enterOuterAlt(localctx, 1) - self.state = 1182 + self.state = 1254 self.match(PBXProjParser.ISA) - self.state = 1183 + self.state = 1255 self.match(PBXProjParser.T__2) - self.state = 1184 + self.state = 1256 self.match(PBXProjParser.PBX_SHELL_BUILD_PHASE) - self.state = 1185 + self.state = 1257 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -7021,16 +7490,16 @@ def exitRule(self, listener:ParseTreeListener): def isa_pbx_sources_build_phase(self): localctx = PBXProjParser.Isa_pbx_sources_build_phaseContext(self, self._ctx, self.state) - self.enterRule(localctx, 148, self.RULE_isa_pbx_sources_build_phase) + self.enterRule(localctx, 160, self.RULE_isa_pbx_sources_build_phase) try: self.enterOuterAlt(localctx, 1) - self.state = 1187 + self.state = 1259 self.match(PBXProjParser.ISA) - self.state = 1188 + self.state = 1260 self.match(PBXProjParser.T__2) - self.state = 1189 + self.state = 1261 self.match(PBXProjParser.PBX_SOURCES_BUILD_PHASE) - self.state = 1190 + self.state = 1262 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -7071,16 +7540,16 @@ def exitRule(self, listener:ParseTreeListener): def isa_pbx_target_dependency(self): localctx = PBXProjParser.Isa_pbx_target_dependencyContext(self, self._ctx, self.state) - self.enterRule(localctx, 150, self.RULE_isa_pbx_target_dependency) + self.enterRule(localctx, 162, self.RULE_isa_pbx_target_dependency) try: self.enterOuterAlt(localctx, 1) - self.state = 1192 + self.state = 1264 self.match(PBXProjParser.ISA) - self.state = 1193 + self.state = 1265 self.match(PBXProjParser.T__2) - self.state = 1194 + self.state = 1266 self.match(PBXProjParser.PBX_TARGET_DEPENDENCY) - self.state = 1195 + self.state = 1267 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -7121,16 +7590,16 @@ def exitRule(self, listener:ParseTreeListener): def isa_pbx_variant_group(self): localctx = PBXProjParser.Isa_pbx_variant_groupContext(self, self._ctx, self.state) - self.enterRule(localctx, 152, self.RULE_isa_pbx_variant_group) + self.enterRule(localctx, 164, self.RULE_isa_pbx_variant_group) try: self.enterOuterAlt(localctx, 1) - self.state = 1197 + self.state = 1269 self.match(PBXProjParser.ISA) - self.state = 1198 + self.state = 1270 self.match(PBXProjParser.T__2) - self.state = 1199 + self.state = 1271 self.match(PBXProjParser.PBX_VARIANT_GROUP) - self.state = 1200 + self.state = 1272 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -7171,16 +7640,16 @@ def exitRule(self, listener:ParseTreeListener): def isa_xc_build_configuration(self): localctx = PBXProjParser.Isa_xc_build_configurationContext(self, self._ctx, self.state) - self.enterRule(localctx, 154, self.RULE_isa_xc_build_configuration) + self.enterRule(localctx, 166, self.RULE_isa_xc_build_configuration) try: self.enterOuterAlt(localctx, 1) - self.state = 1202 + self.state = 1274 self.match(PBXProjParser.ISA) - self.state = 1203 + self.state = 1275 self.match(PBXProjParser.T__2) - self.state = 1204 + self.state = 1276 self.match(PBXProjParser.XC_BUILD_CONFIGURATION) - self.state = 1205 + self.state = 1277 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -7221,16 +7690,16 @@ def exitRule(self, listener:ParseTreeListener): def isa_xc_configuration_list(self): localctx = PBXProjParser.Isa_xc_configuration_listContext(self, self._ctx, self.state) - self.enterRule(localctx, 156, self.RULE_isa_xc_configuration_list) + self.enterRule(localctx, 168, self.RULE_isa_xc_configuration_list) try: self.enterOuterAlt(localctx, 1) - self.state = 1207 + self.state = 1279 self.match(PBXProjParser.ISA) - self.state = 1208 + self.state = 1280 self.match(PBXProjParser.T__2) - self.state = 1209 + self.state = 1281 self.match(PBXProjParser.XC_CONFIGURATION_LIST) - self.state = 1210 + self.state = 1282 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -7271,16 +7740,16 @@ def exitRule(self, listener:ParseTreeListener): def isa_xc_remote_swift_package_reference(self): localctx = PBXProjParser.Isa_xc_remote_swift_package_referenceContext(self, self._ctx, self.state) - self.enterRule(localctx, 158, self.RULE_isa_xc_remote_swift_package_reference) + self.enterRule(localctx, 170, self.RULE_isa_xc_remote_swift_package_reference) try: self.enterOuterAlt(localctx, 1) - self.state = 1212 + self.state = 1284 self.match(PBXProjParser.ISA) - self.state = 1213 + self.state = 1285 self.match(PBXProjParser.T__2) - self.state = 1214 + self.state = 1286 self.match(PBXProjParser.XC_REMOTE_SWIFT_PACKAGE_REFERENCE) - self.state = 1215 + self.state = 1287 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -7321,16 +7790,16 @@ def exitRule(self, listener:ParseTreeListener): def isa_xc_swift_package_product_dependency(self): localctx = PBXProjParser.Isa_xc_swift_package_product_dependencyContext(self, self._ctx, self.state) - self.enterRule(localctx, 160, self.RULE_isa_xc_swift_package_product_dependency) + self.enterRule(localctx, 172, self.RULE_isa_xc_swift_package_product_dependency) try: self.enterOuterAlt(localctx, 1) - self.state = 1217 + self.state = 1289 self.match(PBXProjParser.ISA) - self.state = 1218 + self.state = 1290 self.match(PBXProjParser.T__2) - self.state = 1219 + self.state = 1291 self.match(PBXProjParser.XC_SWIFT_PACKAGE_PRODUCT_DEPENDENCY) - self.state = 1220 + self.state = 1292 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -7371,16 +7840,16 @@ def exitRule(self, listener:ParseTreeListener): def isa_xc_version_group(self): localctx = PBXProjParser.Isa_xc_version_groupContext(self, self._ctx, self.state) - self.enterRule(localctx, 162, self.RULE_isa_xc_version_group) + self.enterRule(localctx, 174, self.RULE_isa_xc_version_group) try: self.enterOuterAlt(localctx, 1) - self.state = 1222 + self.state = 1294 self.match(PBXProjParser.ISA) - self.state = 1223 + self.state = 1295 self.match(PBXProjParser.T__2) - self.state = 1224 + self.state = 1296 self.match(PBXProjParser.XC_VERSION_GROUP) - self.state = 1225 + self.state = 1297 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -7421,16 +7890,16 @@ def exitRule(self, listener:ParseTreeListener): def always_out_of_date(self): localctx = PBXProjParser.Always_out_of_dateContext(self, self._ctx, self.state) - self.enterRule(localctx, 164, self.RULE_always_out_of_date) + self.enterRule(localctx, 176, self.RULE_always_out_of_date) try: self.enterOuterAlt(localctx, 1) - self.state = 1227 + self.state = 1299 self.match(PBXProjParser.ALWAYS_OUT_OF_DATE) - self.state = 1228 + self.state = 1300 self.match(PBXProjParser.T__2) - self.state = 1229 + self.state = 1301 self.match(PBXProjParser.NUMBER) - self.state = 1230 + self.state = 1302 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -7471,16 +7940,16 @@ def exitRule(self, listener:ParseTreeListener): def file_ref(self): localctx = PBXProjParser.File_refContext(self, self._ctx, self.state) - self.enterRule(localctx, 166, self.RULE_file_ref) + self.enterRule(localctx, 178, self.RULE_file_ref) try: self.enterOuterAlt(localctx, 1) - self.state = 1232 + self.state = 1304 self.match(PBXProjParser.FILE_REF) - self.state = 1233 + self.state = 1305 self.match(PBXProjParser.T__2) - self.state = 1234 + self.state = 1306 self.match(PBXProjParser.REFERENCE) - self.state = 1235 + self.state = 1307 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -7521,16 +7990,16 @@ def exitRule(self, listener:ParseTreeListener): def product_ref(self): localctx = PBXProjParser.Product_refContext(self, self._ctx, self.state) - self.enterRule(localctx, 168, self.RULE_product_ref) + self.enterRule(localctx, 180, self.RULE_product_ref) try: self.enterOuterAlt(localctx, 1) - self.state = 1237 + self.state = 1309 self.match(PBXProjParser.PRODUCT_REF) - self.state = 1238 + self.state = 1310 self.match(PBXProjParser.T__2) - self.state = 1239 + self.state = 1311 self.match(PBXProjParser.REFERENCE) - self.state = 1240 + self.state = 1312 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -7571,16 +8040,16 @@ def exitRule(self, listener:ParseTreeListener): def container_portal(self): localctx = PBXProjParser.Container_portalContext(self, self._ctx, self.state) - self.enterRule(localctx, 170, self.RULE_container_portal) + self.enterRule(localctx, 182, self.RULE_container_portal) try: self.enterOuterAlt(localctx, 1) - self.state = 1242 + self.state = 1314 self.match(PBXProjParser.CONTAINER_PORTAL) - self.state = 1243 + self.state = 1315 self.match(PBXProjParser.T__2) - self.state = 1244 + self.state = 1316 self.match(PBXProjParser.REFERENCE) - self.state = 1245 + self.state = 1317 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -7621,16 +8090,16 @@ def exitRule(self, listener:ParseTreeListener): def proxy_type(self): localctx = PBXProjParser.Proxy_typeContext(self, self._ctx, self.state) - self.enterRule(localctx, 172, self.RULE_proxy_type) + self.enterRule(localctx, 184, self.RULE_proxy_type) try: self.enterOuterAlt(localctx, 1) - self.state = 1247 + self.state = 1319 self.match(PBXProjParser.PROXY_TYPE) - self.state = 1248 + self.state = 1320 self.match(PBXProjParser.T__2) - self.state = 1249 + self.state = 1321 self.match(PBXProjParser.NUMBER) - self.state = 1250 + self.state = 1322 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -7671,16 +8140,16 @@ def exitRule(self, listener:ParseTreeListener): def remote_global_id_string(self): localctx = PBXProjParser.Remote_global_id_stringContext(self, self._ctx, self.state) - self.enterRule(localctx, 174, self.RULE_remote_global_id_string) + self.enterRule(localctx, 186, self.RULE_remote_global_id_string) try: self.enterOuterAlt(localctx, 1) - self.state = 1252 + self.state = 1324 self.match(PBXProjParser.REMOTE_GLOBAL_ID_STRING) - self.state = 1253 + self.state = 1325 self.match(PBXProjParser.T__2) - self.state = 1254 + self.state = 1326 self.match(PBXProjParser.REFERENCE) - self.state = 1255 + self.state = 1327 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -7722,16 +8191,16 @@ def exitRule(self, listener:ParseTreeListener): def remote_info(self): localctx = PBXProjParser.Remote_infoContext(self, self._ctx, self.state) - self.enterRule(localctx, 176, self.RULE_remote_info) + self.enterRule(localctx, 188, self.RULE_remote_info) try: self.enterOuterAlt(localctx, 1) - self.state = 1257 + self.state = 1329 self.match(PBXProjParser.REMOTE_INFO) - self.state = 1258 + self.state = 1330 self.match(PBXProjParser.T__2) - self.state = 1259 + self.state = 1331 self.str_number_variable() - self.state = 1260 + self.state = 1332 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -7772,16 +8241,16 @@ def exitRule(self, listener:ParseTreeListener): def file_encoding(self): localctx = PBXProjParser.File_encodingContext(self, self._ctx, self.state) - self.enterRule(localctx, 178, self.RULE_file_encoding) + self.enterRule(localctx, 190, self.RULE_file_encoding) try: self.enterOuterAlt(localctx, 1) - self.state = 1262 + self.state = 1334 self.match(PBXProjParser.FILE_ENCODING) - self.state = 1263 + self.state = 1335 self.match(PBXProjParser.T__2) - self.state = 1264 + self.state = 1336 self.match(PBXProjParser.NUMBER) - self.state = 1265 + self.state = 1337 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -7807,32 +8276,150 @@ def str_number_variable(self): def getRuleIndex(self): - return PBXProjParser.RULE_comments + return PBXProjParser.RULE_comments + + def enterRule(self, listener:ParseTreeListener): + if hasattr( listener, "enterComments" ): + listener.enterComments(self) + + def exitRule(self, listener:ParseTreeListener): + if hasattr( listener, "exitComments" ): + listener.exitComments(self) + + + + + def comments(self): + + localctx = PBXProjParser.CommentsContext(self, self._ctx, self.state) + self.enterRule(localctx, 192, self.RULE_comments) + try: + self.enterOuterAlt(localctx, 1) + self.state = 1339 + self.match(PBXProjParser.COMMENTS) + self.state = 1340 + self.match(PBXProjParser.T__2) + self.state = 1341 + self.str_number_variable() + self.state = 1342 + self.match(PBXProjParser.T__3) + except RecognitionException as re: + localctx.exception = re + self._errHandler.reportError(self, re) + self._errHandler.recover(self, re) + finally: + self.exitRule() + return localctx + + + class Explicit_file_typeContext(ParserRuleContext): + __slots__ = 'parser' + + def __init__(self, parser, parent:ParserRuleContext=None, invokingState:int=-1): + super().__init__(parent, invokingState) + self.parser = parser + + def EXPLICIT_FILE_TYPE(self): + return self.getToken(PBXProjParser.EXPLICIT_FILE_TYPE, 0) + + def str_number_variable(self): + return self.getTypedRuleContext(PBXProjParser.Str_number_variableContext,0) + + + def getRuleIndex(self): + return PBXProjParser.RULE_explicit_file_type + + def enterRule(self, listener:ParseTreeListener): + if hasattr( listener, "enterExplicit_file_type" ): + listener.enterExplicit_file_type(self) + + def exitRule(self, listener:ParseTreeListener): + if hasattr( listener, "exitExplicit_file_type" ): + listener.exitExplicit_file_type(self) + + + + + def explicit_file_type(self): + + localctx = PBXProjParser.Explicit_file_typeContext(self, self._ctx, self.state) + self.enterRule(localctx, 194, self.RULE_explicit_file_type) + try: + self.enterOuterAlt(localctx, 1) + self.state = 1344 + self.match(PBXProjParser.EXPLICIT_FILE_TYPE) + self.state = 1345 + self.match(PBXProjParser.T__2) + self.state = 1346 + self.str_number_variable() + self.state = 1347 + self.match(PBXProjParser.T__3) + except RecognitionException as re: + localctx.exception = re + self._errHandler.reportError(self, re) + self._errHandler.recover(self, re) + finally: + self.exitRule() + return localctx + + + class Explicit_file_typesContext(ParserRuleContext): + __slots__ = 'parser' + + def __init__(self, parser, parent:ParserRuleContext=None, invokingState:int=-1): + super().__init__(parent, invokingState) + self.parser = parser + + def EXPLICIT_FILE_TYPES(self): + return self.getToken(PBXProjParser.EXPLICIT_FILE_TYPES, 0) + + def key_value(self, i:int=None): + if i is None: + return self.getTypedRuleContexts(PBXProjParser.Key_valueContext) + else: + return self.getTypedRuleContext(PBXProjParser.Key_valueContext,i) + + + def getRuleIndex(self): + return PBXProjParser.RULE_explicit_file_types def enterRule(self, listener:ParseTreeListener): - if hasattr( listener, "enterComments" ): - listener.enterComments(self) + if hasattr( listener, "enterExplicit_file_types" ): + listener.enterExplicit_file_types(self) def exitRule(self, listener:ParseTreeListener): - if hasattr( listener, "exitComments" ): - listener.exitComments(self) + if hasattr( listener, "exitExplicit_file_types" ): + listener.exitExplicit_file_types(self) - def comments(self): + def explicit_file_types(self): - localctx = PBXProjParser.CommentsContext(self, self._ctx, self.state) - self.enterRule(localctx, 180, self.RULE_comments) + localctx = PBXProjParser.Explicit_file_typesContext(self, self._ctx, self.state) + self.enterRule(localctx, 196, self.RULE_explicit_file_types) + self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1267 - self.match(PBXProjParser.COMMENTS) - self.state = 1268 + self.state = 1349 + self.match(PBXProjParser.EXPLICIT_FILE_TYPES) + self.state = 1350 self.match(PBXProjParser.T__2) - self.state = 1269 - self.str_number_variable() - self.state = 1270 + self.state = 1351 + self.match(PBXProjParser.T__0) + self.state = 1355 + self._errHandler.sync(self) + _la = self._input.LA(1) + while (((_la) & ~0x3f) == 0 and ((1 << _la) & -141015588143360) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & 4026523647) != 0): + self.state = 1352 + self.key_value() + self.state = 1357 + self._errHandler.sync(self) + _la = self._input.LA(1) + + self.state = 1358 + self.match(PBXProjParser.T__1) + self.state = 1359 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -7843,47 +8430,47 @@ def comments(self): return localctx - class Explicit_file_typeContext(ParserRuleContext): + class Explicit_foldersContext(ParserRuleContext): __slots__ = 'parser' def __init__(self, parser, parent:ParserRuleContext=None, invokingState:int=-1): super().__init__(parent, invokingState) self.parser = parser - def EXPLICIT_FILE_TYPE(self): - return self.getToken(PBXProjParser.EXPLICIT_FILE_TYPE, 0) + def EXPLICIT_FOLDERS(self): + return self.getToken(PBXProjParser.EXPLICIT_FOLDERS, 0) - def str_number_variable(self): - return self.getTypedRuleContext(PBXProjParser.Str_number_variableContext,0) + def any_string_list(self): + return self.getTypedRuleContext(PBXProjParser.Any_string_listContext,0) def getRuleIndex(self): - return PBXProjParser.RULE_explicit_file_type + return PBXProjParser.RULE_explicit_folders def enterRule(self, listener:ParseTreeListener): - if hasattr( listener, "enterExplicit_file_type" ): - listener.enterExplicit_file_type(self) + if hasattr( listener, "enterExplicit_folders" ): + listener.enterExplicit_folders(self) def exitRule(self, listener:ParseTreeListener): - if hasattr( listener, "exitExplicit_file_type" ): - listener.exitExplicit_file_type(self) + if hasattr( listener, "exitExplicit_folders" ): + listener.exitExplicit_folders(self) - def explicit_file_type(self): + def explicit_folders(self): - localctx = PBXProjParser.Explicit_file_typeContext(self, self._ctx, self.state) - self.enterRule(localctx, 182, self.RULE_explicit_file_type) + localctx = PBXProjParser.Explicit_foldersContext(self, self._ctx, self.state) + self.enterRule(localctx, 198, self.RULE_explicit_folders) try: self.enterOuterAlt(localctx, 1) - self.state = 1272 - self.match(PBXProjParser.EXPLICIT_FILE_TYPE) - self.state = 1273 + self.state = 1361 + self.match(PBXProjParser.EXPLICIT_FOLDERS) + self.state = 1362 self.match(PBXProjParser.T__2) - self.state = 1274 - self.str_number_variable() - self.state = 1275 + self.state = 1363 + self.any_string_list() + self.state = 1364 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -7925,16 +8512,16 @@ def exitRule(self, listener:ParseTreeListener): def last_known_file_type(self): localctx = PBXProjParser.Last_known_file_typeContext(self, self._ctx, self.state) - self.enterRule(localctx, 184, self.RULE_last_known_file_type) + self.enterRule(localctx, 200, self.RULE_last_known_file_type) try: self.enterOuterAlt(localctx, 1) - self.state = 1277 + self.state = 1366 self.match(PBXProjParser.LAST_KNOWN_FILE_TYPE) - self.state = 1278 + self.state = 1367 self.match(PBXProjParser.T__2) - self.state = 1279 + self.state = 1368 self.str_number_variable() - self.state = 1280 + self.state = 1369 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -7975,16 +8562,16 @@ def exitRule(self, listener:ParseTreeListener): def include_in_index(self): localctx = PBXProjParser.Include_in_indexContext(self, self._ctx, self.state) - self.enterRule(localctx, 186, self.RULE_include_in_index) + self.enterRule(localctx, 202, self.RULE_include_in_index) try: self.enterOuterAlt(localctx, 1) - self.state = 1282 + self.state = 1371 self.match(PBXProjParser.INCLUDE_IN_INDEX) - self.state = 1283 + self.state = 1372 self.match(PBXProjParser.T__2) - self.state = 1284 + self.state = 1373 self.match(PBXProjParser.NUMBER) - self.state = 1285 + self.state = 1374 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -8025,16 +8612,16 @@ def exitRule(self, listener:ParseTreeListener): def indent_width(self): localctx = PBXProjParser.Indent_widthContext(self, self._ctx, self.state) - self.enterRule(localctx, 188, self.RULE_indent_width) + self.enterRule(localctx, 204, self.RULE_indent_width) try: self.enterOuterAlt(localctx, 1) - self.state = 1287 + self.state = 1376 self.match(PBXProjParser.INDENT_WIDTH) - self.state = 1288 + self.state = 1377 self.match(PBXProjParser.T__2) - self.state = 1289 + self.state = 1378 self.match(PBXProjParser.NUMBER) - self.state = 1290 + self.state = 1379 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -8075,16 +8662,16 @@ def exitRule(self, listener:ParseTreeListener): def tab_width(self): localctx = PBXProjParser.Tab_widthContext(self, self._ctx, self.state) - self.enterRule(localctx, 190, self.RULE_tab_width) + self.enterRule(localctx, 206, self.RULE_tab_width) try: self.enterOuterAlt(localctx, 1) - self.state = 1292 + self.state = 1381 self.match(PBXProjParser.TAB_WIDTH) - self.state = 1293 + self.state = 1382 self.match(PBXProjParser.T__2) - self.state = 1294 + self.state = 1383 self.match(PBXProjParser.NUMBER) - self.state = 1295 + self.state = 1384 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -8125,16 +8712,16 @@ def exitRule(self, listener:ParseTreeListener): def uses_tabs(self): localctx = PBXProjParser.Uses_tabsContext(self, self._ctx, self.state) - self.enterRule(localctx, 192, self.RULE_uses_tabs) + self.enterRule(localctx, 208, self.RULE_uses_tabs) try: self.enterOuterAlt(localctx, 1) - self.state = 1297 + self.state = 1386 self.match(PBXProjParser.USES_TABS) - self.state = 1298 + self.state = 1387 self.match(PBXProjParser.T__2) - self.state = 1299 + self.state = 1388 self.match(PBXProjParser.NUMBER) - self.state = 1300 + self.state = 1389 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -8175,16 +8762,16 @@ def exitRule(self, listener:ParseTreeListener): def wraps_lines(self): localctx = PBXProjParser.Wraps_linesContext(self, self._ctx, self.state) - self.enterRule(localctx, 194, self.RULE_wraps_lines) + self.enterRule(localctx, 210, self.RULE_wraps_lines) try: self.enterOuterAlt(localctx, 1) - self.state = 1302 + self.state = 1391 self.match(PBXProjParser.WRAPS_LINES) - self.state = 1303 + self.state = 1392 self.match(PBXProjParser.T__2) - self.state = 1304 + self.state = 1393 self.match(PBXProjParser.NUMBER) - self.state = 1305 + self.state = 1394 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -8226,16 +8813,16 @@ def exitRule(self, listener:ParseTreeListener): def platform_filter(self): localctx = PBXProjParser.Platform_filterContext(self, self._ctx, self.state) - self.enterRule(localctx, 196, self.RULE_platform_filter) + self.enterRule(localctx, 212, self.RULE_platform_filter) try: self.enterOuterAlt(localctx, 1) - self.state = 1307 + self.state = 1396 self.match(PBXProjParser.PLATFORM_FILTER) - self.state = 1308 + self.state = 1397 self.match(PBXProjParser.T__2) - self.state = 1309 + self.state = 1398 self.any_string() - self.state = 1310 + self.state = 1399 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -8277,16 +8864,16 @@ def exitRule(self, listener:ParseTreeListener): def platform_filters(self): localctx = PBXProjParser.Platform_filtersContext(self, self._ctx, self.state) - self.enterRule(localctx, 198, self.RULE_platform_filters) + self.enterRule(localctx, 214, self.RULE_platform_filters) try: self.enterOuterAlt(localctx, 1) - self.state = 1312 + self.state = 1401 self.match(PBXProjParser.PLATFORM_FILTERS) - self.state = 1313 + self.state = 1402 self.match(PBXProjParser.T__2) - self.state = 1314 + self.state = 1403 self.any_string_list() - self.state = 1315 + self.state = 1404 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -8328,16 +8915,16 @@ def exitRule(self, listener:ParseTreeListener): def children(self): localctx = PBXProjParser.ChildrenContext(self, self._ctx, self.state) - self.enterRule(localctx, 200, self.RULE_children) + self.enterRule(localctx, 216, self.RULE_children) try: self.enterOuterAlt(localctx, 1) - self.state = 1317 + self.state = 1406 self.match(PBXProjParser.CHILDREN) - self.state = 1318 + self.state = 1407 self.match(PBXProjParser.T__2) - self.state = 1319 + self.state = 1408 self.reference_list() - self.state = 1320 + self.state = 1409 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -8379,16 +8966,16 @@ def exitRule(self, listener:ParseTreeListener): def product_install_path(self): localctx = PBXProjParser.Product_install_pathContext(self, self._ctx, self.state) - self.enterRule(localctx, 202, self.RULE_product_install_path) + self.enterRule(localctx, 218, self.RULE_product_install_path) try: self.enterOuterAlt(localctx, 1) - self.state = 1322 + self.state = 1411 self.match(PBXProjParser.PRODUCT_INSTALL_PATH) - self.state = 1323 + self.state = 1412 self.match(PBXProjParser.T__2) - self.state = 1324 + self.state = 1413 self.any_string() - self.state = 1325 + self.state = 1414 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -8429,16 +9016,16 @@ def exitRule(self, listener:ParseTreeListener): def repository_url(self): localctx = PBXProjParser.Repository_urlContext(self, self._ctx, self.state) - self.enterRule(localctx, 204, self.RULE_repository_url) + self.enterRule(localctx, 220, self.RULE_repository_url) try: self.enterOuterAlt(localctx, 1) - self.state = 1327 + self.state = 1416 self.match(PBXProjParser.REPOSITORY_URL) - self.state = 1328 + self.state = 1417 self.match(PBXProjParser.T__2) - self.state = 1329 + self.state = 1418 self.match(PBXProjParser.QUOTED_STRING) - self.state = 1330 + self.state = 1419 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -8483,29 +9070,29 @@ def exitRule(self, listener:ParseTreeListener): def requirement(self): localctx = PBXProjParser.RequirementContext(self, self._ctx, self.state) - self.enterRule(localctx, 206, self.RULE_requirement) + self.enterRule(localctx, 222, self.RULE_requirement) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1332 + self.state = 1421 self.match(PBXProjParser.REQUIREMENT) - self.state = 1333 + self.state = 1422 self.match(PBXProjParser.T__2) - self.state = 1334 + self.state = 1423 self.match(PBXProjParser.T__0) - self.state = 1338 + self.state = 1427 self._errHandler.sync(self) _la = self._input.LA(1) - while (((_la) & ~0x3f) == 0 and ((1 << _la) & -35253897527552) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & 31457023) != 0): - self.state = 1335 + while (((_la) & ~0x3f) == 0 and ((1 << _la) & -141015588143360) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & 4026523647) != 0): + self.state = 1424 self.key_value() - self.state = 1340 + self.state = 1429 self._errHandler.sync(self) _la = self._input.LA(1) - self.state = 1341 + self.state = 1430 self.match(PBXProjParser.T__1) - self.state = 1342 + self.state = 1431 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -8546,16 +9133,16 @@ def exitRule(self, listener:ParseTreeListener): def xc_package(self): localctx = PBXProjParser.Xc_packageContext(self, self._ctx, self.state) - self.enterRule(localctx, 208, self.RULE_xc_package) + self.enterRule(localctx, 224, self.RULE_xc_package) try: self.enterOuterAlt(localctx, 1) - self.state = 1344 + self.state = 1433 self.match(PBXProjParser.PACKAGE) - self.state = 1345 + self.state = 1434 self.match(PBXProjParser.T__2) - self.state = 1346 + self.state = 1435 self.match(PBXProjParser.REFERENCE) - self.state = 1347 + self.state = 1436 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -8597,16 +9184,16 @@ def exitRule(self, listener:ParseTreeListener): def package_product_dependencies(self): localctx = PBXProjParser.Package_product_dependenciesContext(self, self._ctx, self.state) - self.enterRule(localctx, 210, self.RULE_package_product_dependencies) + self.enterRule(localctx, 226, self.RULE_package_product_dependencies) try: self.enterOuterAlt(localctx, 1) - self.state = 1349 + self.state = 1438 self.match(PBXProjParser.PACKAGE_PRODUCT_DEPENDENCIES) - self.state = 1350 + self.state = 1439 self.match(PBXProjParser.T__2) - self.state = 1351 + self.state = 1440 self.reference_list() - self.state = 1352 + self.state = 1441 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -8648,16 +9235,16 @@ def exitRule(self, listener:ParseTreeListener): def name(self): localctx = PBXProjParser.NameContext(self, self._ctx, self.state) - self.enterRule(localctx, 212, self.RULE_name) + self.enterRule(localctx, 228, self.RULE_name) try: self.enterOuterAlt(localctx, 1) - self.state = 1354 + self.state = 1443 self.match(PBXProjParser.NAME) - self.state = 1355 + self.state = 1444 self.match(PBXProjParser.T__2) - self.state = 1356 + self.state = 1445 self.any_string() - self.state = 1357 + self.state = 1446 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -8699,16 +9286,16 @@ def exitRule(self, listener:ParseTreeListener): def path(self): localctx = PBXProjParser.PathContext(self, self._ctx, self.state) - self.enterRule(localctx, 214, self.RULE_path) + self.enterRule(localctx, 230, self.RULE_path) try: self.enterOuterAlt(localctx, 1) - self.state = 1359 + self.state = 1448 self.match(PBXProjParser.PATH) - self.state = 1360 + self.state = 1449 self.match(PBXProjParser.T__2) - self.state = 1361 + self.state = 1450 self.str_number_variable() - self.state = 1362 + self.state = 1451 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -8750,16 +9337,16 @@ def exitRule(self, listener:ParseTreeListener): def source_tree(self): localctx = PBXProjParser.Source_treeContext(self, self._ctx, self.state) - self.enterRule(localctx, 216, self.RULE_source_tree) + self.enterRule(localctx, 232, self.RULE_source_tree) try: self.enterOuterAlt(localctx, 1) - self.state = 1364 + self.state = 1453 self.match(PBXProjParser.SOURCE_TREE) - self.state = 1365 + self.state = 1454 self.match(PBXProjParser.T__2) - self.state = 1366 + self.state = 1455 self.any_string() - self.state = 1367 + self.state = 1456 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -8800,16 +9387,16 @@ def exitRule(self, listener:ParseTreeListener): def build_action_mask(self): localctx = PBXProjParser.Build_action_maskContext(self, self._ctx, self.state) - self.enterRule(localctx, 218, self.RULE_build_action_mask) + self.enterRule(localctx, 234, self.RULE_build_action_mask) try: self.enterOuterAlt(localctx, 1) - self.state = 1369 + self.state = 1458 self.match(PBXProjParser.BUILD_ACTION_MASK) - self.state = 1370 + self.state = 1459 self.match(PBXProjParser.T__2) - self.state = 1371 + self.state = 1460 self.match(PBXProjParser.NUMBER) - self.state = 1372 + self.state = 1461 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -8851,16 +9438,16 @@ def exitRule(self, listener:ParseTreeListener): def files(self): localctx = PBXProjParser.FilesContext(self, self._ctx, self.state) - self.enterRule(localctx, 220, self.RULE_files) + self.enterRule(localctx, 236, self.RULE_files) try: self.enterOuterAlt(localctx, 1) - self.state = 1374 + self.state = 1463 self.match(PBXProjParser.FILES) - self.state = 1375 + self.state = 1464 self.match(PBXProjParser.T__2) - self.state = 1376 + self.state = 1465 self.reference_list() - self.state = 1377 + self.state = 1466 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -8901,16 +9488,16 @@ def exitRule(self, listener:ParseTreeListener): def run_only_for_deployment_postprocessing(self): localctx = PBXProjParser.Run_only_for_deployment_postprocessingContext(self, self._ctx, self.state) - self.enterRule(localctx, 222, self.RULE_run_only_for_deployment_postprocessing) + self.enterRule(localctx, 238, self.RULE_run_only_for_deployment_postprocessing) try: self.enterOuterAlt(localctx, 1) - self.state = 1379 + self.state = 1468 self.match(PBXProjParser.RUN_ONLY_FOR_DEPLOYMENT_POSTPROCESSING) - self.state = 1380 + self.state = 1469 self.match(PBXProjParser.T__2) - self.state = 1381 + self.state = 1470 self.match(PBXProjParser.NUMBER) - self.state = 1382 + self.state = 1471 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -8951,25 +9538,25 @@ def exitRule(self, listener:ParseTreeListener): def reference_list(self): localctx = PBXProjParser.Reference_listContext(self, self._ctx, self.state) - self.enterRule(localctx, 224, self.RULE_reference_list) + self.enterRule(localctx, 240, self.RULE_reference_list) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1384 + self.state = 1473 self.match(PBXProjParser.T__4) - self.state = 1389 + self.state = 1478 self._errHandler.sync(self) _la = self._input.LA(1) - while _la==149: - self.state = 1385 + while _la==156: + self.state = 1474 self.match(PBXProjParser.REFERENCE) - self.state = 1386 + self.state = 1475 self.match(PBXProjParser.T__5) - self.state = 1391 + self.state = 1480 self._errHandler.sync(self) _la = self._input.LA(1) - self.state = 1392 + self.state = 1481 self.match(PBXProjParser.T__6) except RecognitionException as re: localctx.exception = re @@ -9011,48 +9598,48 @@ def exitRule(self, listener:ParseTreeListener): def any_string_list(self): localctx = PBXProjParser.Any_string_listContext(self, self._ctx, self.state) - self.enterRule(localctx, 226, self.RULE_any_string_list) + self.enterRule(localctx, 242, self.RULE_any_string_list) self._la = 0 # Token type try: - self.state = 1410 + self.state = 1499 self._errHandler.sync(self) - la_ = self._interp.adaptivePredict(self._input,125,self._ctx) + la_ = self._interp.adaptivePredict(self._input,131,self._ctx) if la_ == 1: self.enterOuterAlt(localctx, 1) - self.state = 1394 + self.state = 1483 self.match(PBXProjParser.T__4) - self.state = 1395 + self.state = 1484 self.match(PBXProjParser.T__6) pass elif la_ == 2: self.enterOuterAlt(localctx, 2) - self.state = 1396 + self.state = 1485 self.match(PBXProjParser.T__4) - self.state = 1397 + self.state = 1486 self.str_number_variable() - self.state = 1402 + self.state = 1491 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,123,self._ctx) + _alt = self._interp.adaptivePredict(self._input,129,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt==1: - self.state = 1398 + self.state = 1487 self.match(PBXProjParser.T__5) - self.state = 1399 + self.state = 1488 self.str_number_variable() - self.state = 1404 + self.state = 1493 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,123,self._ctx) + _alt = self._interp.adaptivePredict(self._input,129,self._ctx) - self.state = 1406 + self.state = 1495 self._errHandler.sync(self) _la = self._input.LA(1) if _la==6: - self.state = 1405 + self.state = 1494 self.match(PBXProjParser.T__5) - self.state = 1408 + self.state = 1497 self.match(PBXProjParser.T__6) pass @@ -9096,25 +9683,25 @@ def exitRule(self, listener:ParseTreeListener): def non_quoted_strings_list(self): localctx = PBXProjParser.Non_quoted_strings_listContext(self, self._ctx, self.state) - self.enterRule(localctx, 228, self.RULE_non_quoted_strings_list) + self.enterRule(localctx, 244, self.RULE_non_quoted_strings_list) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1412 + self.state = 1501 self.match(PBXProjParser.T__4) - self.state = 1417 + self.state = 1506 self._errHandler.sync(self) _la = self._input.LA(1) - while _la==151: - self.state = 1413 + while _la==158: + self.state = 1502 self.match(PBXProjParser.NON_QUOTED_STRING) - self.state = 1414 + self.state = 1503 self.match(PBXProjParser.T__5) - self.state = 1419 + self.state = 1508 self._errHandler.sync(self) _la = self._input.LA(1) - self.state = 1420 + self.state = 1509 self.match(PBXProjParser.T__6) except RecognitionException as re: localctx.exception = re @@ -9155,16 +9742,16 @@ def exitRule(self, listener:ParseTreeListener): def build_configuration_list(self): localctx = PBXProjParser.Build_configuration_listContext(self, self._ctx, self.state) - self.enterRule(localctx, 230, self.RULE_build_configuration_list) + self.enterRule(localctx, 246, self.RULE_build_configuration_list) try: self.enterOuterAlt(localctx, 1) - self.state = 1422 + self.state = 1511 self.match(PBXProjParser.BUILD_CONFIGURATION_LIST) - self.state = 1423 + self.state = 1512 self.match(PBXProjParser.T__2) - self.state = 1424 + self.state = 1513 self.match(PBXProjParser.REFERENCE) - self.state = 1425 + self.state = 1514 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -9206,16 +9793,16 @@ def exitRule(self, listener:ParseTreeListener): def build_phases(self): localctx = PBXProjParser.Build_phasesContext(self, self._ctx, self.state) - self.enterRule(localctx, 232, self.RULE_build_phases) + self.enterRule(localctx, 248, self.RULE_build_phases) try: self.enterOuterAlt(localctx, 1) - self.state = 1427 + self.state = 1516 self.match(PBXProjParser.BUILD_PHASES) - self.state = 1428 + self.state = 1517 self.match(PBXProjParser.T__2) - self.state = 1429 + self.state = 1518 self.reference_list() - self.state = 1430 + self.state = 1519 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -9257,16 +9844,16 @@ def exitRule(self, listener:ParseTreeListener): def build_rules(self): localctx = PBXProjParser.Build_rulesContext(self, self._ctx, self.state) - self.enterRule(localctx, 234, self.RULE_build_rules) + self.enterRule(localctx, 250, self.RULE_build_rules) try: self.enterOuterAlt(localctx, 1) - self.state = 1432 + self.state = 1521 self.match(PBXProjParser.BUILD_RULES) - self.state = 1433 + self.state = 1522 self.match(PBXProjParser.T__2) - self.state = 1434 + self.state = 1523 self.reference_list() - self.state = 1435 + self.state = 1524 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -9308,16 +9895,16 @@ def exitRule(self, listener:ParseTreeListener): def build_arguments_string(self): localctx = PBXProjParser.Build_arguments_stringContext(self, self._ctx, self.state) - self.enterRule(localctx, 236, self.RULE_build_arguments_string) + self.enterRule(localctx, 252, self.RULE_build_arguments_string) try: self.enterOuterAlt(localctx, 1) - self.state = 1437 + self.state = 1526 self.match(PBXProjParser.BUILD_ARGUMENTS_STRING) - self.state = 1438 + self.state = 1527 self.match(PBXProjParser.T__2) - self.state = 1439 + self.state = 1528 self.any_string() - self.state = 1440 + self.state = 1529 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -9359,16 +9946,16 @@ def exitRule(self, listener:ParseTreeListener): def build_tool_path(self): localctx = PBXProjParser.Build_tool_pathContext(self, self._ctx, self.state) - self.enterRule(localctx, 238, self.RULE_build_tool_path) + self.enterRule(localctx, 254, self.RULE_build_tool_path) try: self.enterOuterAlt(localctx, 1) - self.state = 1442 + self.state = 1531 self.match(PBXProjParser.BUILD_TOOL_PATH) - self.state = 1443 + self.state = 1532 self.match(PBXProjParser.T__2) - self.state = 1444 + self.state = 1533 self.any_string() - self.state = 1445 + self.state = 1534 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -9410,16 +9997,16 @@ def exitRule(self, listener:ParseTreeListener): def build_working_directory(self): localctx = PBXProjParser.Build_working_directoryContext(self, self._ctx, self.state) - self.enterRule(localctx, 240, self.RULE_build_working_directory) + self.enterRule(localctx, 256, self.RULE_build_working_directory) try: self.enterOuterAlt(localctx, 1) - self.state = 1447 + self.state = 1536 self.match(PBXProjParser.BUILD_WORKING_DIRECTORY) - self.state = 1448 + self.state = 1537 self.match(PBXProjParser.T__2) - self.state = 1449 + self.state = 1538 self.any_string() - self.state = 1450 + self.state = 1539 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -9460,16 +10047,16 @@ def exitRule(self, listener:ParseTreeListener): def pass_build_settings_in_environment(self): localctx = PBXProjParser.Pass_build_settings_in_environmentContext(self, self._ctx, self.state) - self.enterRule(localctx, 242, self.RULE_pass_build_settings_in_environment) + self.enterRule(localctx, 258, self.RULE_pass_build_settings_in_environment) try: self.enterOuterAlt(localctx, 1) - self.state = 1452 + self.state = 1541 self.match(PBXProjParser.PASS_BUILD_SETTINGS_IN_ENVIRONMENT) - self.state = 1453 + self.state = 1542 self.match(PBXProjParser.T__2) - self.state = 1454 + self.state = 1543 self.match(PBXProjParser.NUMBER) - self.state = 1455 + self.state = 1544 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -9511,16 +10098,16 @@ def exitRule(self, listener:ParseTreeListener): def dependencies(self): localctx = PBXProjParser.DependenciesContext(self, self._ctx, self.state) - self.enterRule(localctx, 244, self.RULE_dependencies) + self.enterRule(localctx, 260, self.RULE_dependencies) try: self.enterOuterAlt(localctx, 1) - self.state = 1457 + self.state = 1546 self.match(PBXProjParser.DEPENDENCIES) - self.state = 1458 + self.state = 1547 self.match(PBXProjParser.T__2) - self.state = 1459 + self.state = 1548 self.reference_list() - self.state = 1460 + self.state = 1549 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -9562,16 +10149,16 @@ def exitRule(self, listener:ParseTreeListener): def product_name(self): localctx = PBXProjParser.Product_nameContext(self, self._ctx, self.state) - self.enterRule(localctx, 246, self.RULE_product_name) + self.enterRule(localctx, 262, self.RULE_product_name) try: self.enterOuterAlt(localctx, 1) - self.state = 1462 + self.state = 1551 self.match(PBXProjParser.PRODUCT_NAME) - self.state = 1463 + self.state = 1552 self.match(PBXProjParser.T__2) - self.state = 1464 + self.state = 1553 self.str_number_variable() - self.state = 1465 + self.state = 1554 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -9612,16 +10199,16 @@ def exitRule(self, listener:ParseTreeListener): def product_reference(self): localctx = PBXProjParser.Product_referenceContext(self, self._ctx, self.state) - self.enterRule(localctx, 248, self.RULE_product_reference) + self.enterRule(localctx, 264, self.RULE_product_reference) try: self.enterOuterAlt(localctx, 1) - self.state = 1467 + self.state = 1556 self.match(PBXProjParser.PRODUCT_REFERENCE) - self.state = 1468 + self.state = 1557 self.match(PBXProjParser.T__2) - self.state = 1469 + self.state = 1558 self.match(PBXProjParser.REFERENCE) - self.state = 1470 + self.state = 1559 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -9662,16 +10249,16 @@ def exitRule(self, listener:ParseTreeListener): def product_type(self): localctx = PBXProjParser.Product_typeContext(self, self._ctx, self.state) - self.enterRule(localctx, 250, self.RULE_product_type) + self.enterRule(localctx, 266, self.RULE_product_type) try: self.enterOuterAlt(localctx, 1) - self.state = 1472 + self.state = 1561 self.match(PBXProjParser.PRODUCT_TYPE) - self.state = 1473 + self.state = 1562 self.match(PBXProjParser.T__2) - self.state = 1474 + self.state = 1563 self.match(PBXProjParser.QUOTED_STRING) - self.state = 1475 + self.state = 1564 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -9712,16 +10299,16 @@ def exitRule(self, listener:ParseTreeListener): def line_ending(self): localctx = PBXProjParser.Line_endingContext(self, self._ctx, self.state) - self.enterRule(localctx, 252, self.RULE_line_ending) + self.enterRule(localctx, 268, self.RULE_line_ending) try: self.enterOuterAlt(localctx, 1) - self.state = 1477 + self.state = 1566 self.match(PBXProjParser.LINE_ENDING) - self.state = 1478 + self.state = 1567 self.match(PBXProjParser.T__2) - self.state = 1479 + self.state = 1568 self.match(PBXProjParser.NUMBER) - self.state = 1480 + self.state = 1569 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -9763,16 +10350,16 @@ def exitRule(self, listener:ParseTreeListener): def xc_language_specification_identifier(self): localctx = PBXProjParser.Xc_language_specification_identifierContext(self, self._ctx, self.state) - self.enterRule(localctx, 254, self.RULE_xc_language_specification_identifier) + self.enterRule(localctx, 270, self.RULE_xc_language_specification_identifier) try: self.enterOuterAlt(localctx, 1) - self.state = 1482 + self.state = 1571 self.match(PBXProjParser.XC_LANGUAGE_SPECIFICATION_IDENTIFIER) - self.state = 1483 + self.state = 1572 self.match(PBXProjParser.T__2) - self.state = 1484 + self.state = 1573 self.str_number_variable() - self.state = 1485 + self.state = 1574 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -9814,16 +10401,16 @@ def exitRule(self, listener:ParseTreeListener): def plist_structure_definition_identifier(self): localctx = PBXProjParser.Plist_structure_definition_identifierContext(self, self._ctx, self.state) - self.enterRule(localctx, 256, self.RULE_plist_structure_definition_identifier) + self.enterRule(localctx, 272, self.RULE_plist_structure_definition_identifier) try: self.enterOuterAlt(localctx, 1) - self.state = 1487 + self.state = 1576 self.match(PBXProjParser.PLIST_STRUCTURE_DEFINITION_IDENTIFIER) - self.state = 1488 + self.state = 1577 self.match(PBXProjParser.T__2) - self.state = 1489 + self.state = 1578 self.str_number_variable() - self.state = 1490 + self.state = 1579 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -9864,16 +10451,16 @@ def exitRule(self, listener:ParseTreeListener): def ref_type(self): localctx = PBXProjParser.Ref_typeContext(self, self._ctx, self.state) - self.enterRule(localctx, 258, self.RULE_ref_type) + self.enterRule(localctx, 274, self.RULE_ref_type) try: self.enterOuterAlt(localctx, 1) - self.state = 1492 + self.state = 1581 self.match(PBXProjParser.REF_TYPE) - self.state = 1493 + self.state = 1582 self.match(PBXProjParser.T__2) - self.state = 1494 + self.state = 1583 self.match(PBXProjParser.NUMBER) - self.state = 1495 + self.state = 1584 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -9915,16 +10502,16 @@ def exitRule(self, listener:ParseTreeListener): def compiler_spec(self): localctx = PBXProjParser.Compiler_specContext(self, self._ctx, self.state) - self.enterRule(localctx, 260, self.RULE_compiler_spec) + self.enterRule(localctx, 276, self.RULE_compiler_spec) try: self.enterOuterAlt(localctx, 1) - self.state = 1497 + self.state = 1586 self.match(PBXProjParser.COMPILER_SPEC) - self.state = 1498 + self.state = 1587 self.match(PBXProjParser.T__2) - self.state = 1499 + self.state = 1588 self.any_string() - self.state = 1500 + self.state = 1589 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -9966,16 +10553,16 @@ def exitRule(self, listener:ParseTreeListener): def file_patterns(self): localctx = PBXProjParser.File_patternsContext(self, self._ctx, self.state) - self.enterRule(localctx, 262, self.RULE_file_patterns) + self.enterRule(localctx, 278, self.RULE_file_patterns) try: self.enterOuterAlt(localctx, 1) - self.state = 1502 + self.state = 1591 self.match(PBXProjParser.FILE_PATTERNS) - self.state = 1503 + self.state = 1592 self.match(PBXProjParser.T__2) - self.state = 1504 + self.state = 1593 self.any_string() - self.state = 1505 + self.state = 1594 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -10017,16 +10604,16 @@ def exitRule(self, listener:ParseTreeListener): def input_files(self): localctx = PBXProjParser.Input_filesContext(self, self._ctx, self.state) - self.enterRule(localctx, 264, self.RULE_input_files) + self.enterRule(localctx, 280, self.RULE_input_files) try: self.enterOuterAlt(localctx, 1) - self.state = 1507 + self.state = 1596 self.match(PBXProjParser.INPUT_FILES) - self.state = 1508 + self.state = 1597 self.match(PBXProjParser.T__2) - self.state = 1509 + self.state = 1598 self.any_string_list() - self.state = 1510 + self.state = 1599 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -10067,16 +10654,16 @@ def exitRule(self, listener:ParseTreeListener): def is_editable(self): localctx = PBXProjParser.Is_editableContext(self, self._ctx, self.state) - self.enterRule(localctx, 266, self.RULE_is_editable) + self.enterRule(localctx, 282, self.RULE_is_editable) try: self.enterOuterAlt(localctx, 1) - self.state = 1512 + self.state = 1601 self.match(PBXProjParser.IS_EDITABLE) - self.state = 1513 + self.state = 1602 self.match(PBXProjParser.T__2) - self.state = 1514 + self.state = 1603 self.match(PBXProjParser.NUMBER) - self.state = 1515 + self.state = 1604 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -10118,16 +10705,16 @@ def exitRule(self, listener:ParseTreeListener): def output_files(self): localctx = PBXProjParser.Output_filesContext(self, self._ctx, self.state) - self.enterRule(localctx, 268, self.RULE_output_files) + self.enterRule(localctx, 284, self.RULE_output_files) try: self.enterOuterAlt(localctx, 1) - self.state = 1517 + self.state = 1606 self.match(PBXProjParser.OUTPUT_FILES) - self.state = 1518 + self.state = 1607 self.match(PBXProjParser.T__2) - self.state = 1519 + self.state = 1608 self.any_string_list() - self.state = 1520 + self.state = 1609 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -10168,16 +10755,16 @@ def exitRule(self, listener:ParseTreeListener): def run_once_per_arch(self): localctx = PBXProjParser.Run_once_per_archContext(self, self._ctx, self.state) - self.enterRule(localctx, 270, self.RULE_run_once_per_arch) + self.enterRule(localctx, 286, self.RULE_run_once_per_arch) try: self.enterOuterAlt(localctx, 1) - self.state = 1522 + self.state = 1611 self.match(PBXProjParser.RUN_ONCE_PER_ARCH) - self.state = 1523 + self.state = 1612 self.match(PBXProjParser.T__2) - self.state = 1524 + self.state = 1613 self.match(PBXProjParser.NUMBER) - self.state = 1525 + self.state = 1614 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -10219,16 +10806,16 @@ def exitRule(self, listener:ParseTreeListener): def script(self): localctx = PBXProjParser.ScriptContext(self, self._ctx, self.state) - self.enterRule(localctx, 272, self.RULE_script) + self.enterRule(localctx, 288, self.RULE_script) try: self.enterOuterAlt(localctx, 1) - self.state = 1527 + self.state = 1616 self.match(PBXProjParser.SCRIPT) - self.state = 1528 + self.state = 1617 self.match(PBXProjParser.T__2) - self.state = 1529 + self.state = 1618 self.any_string() - self.state = 1530 + self.state = 1619 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -10302,91 +10889,91 @@ def exitRule(self, listener:ParseTreeListener): def attributes(self): localctx = PBXProjParser.AttributesContext(self, self._ctx, self.state) - self.enterRule(localctx, 274, self.RULE_attributes) + self.enterRule(localctx, 290, self.RULE_attributes) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1532 + self.state = 1621 self.match(PBXProjParser.ATTRIBUTES) - self.state = 1533 + self.state = 1622 self.match(PBXProjParser.T__2) - self.state = 1534 + self.state = 1623 self.match(PBXProjParser.T__0) - self.state = 1536 + self.state = 1625 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==101: - self.state = 1535 + if _la==105: + self.state = 1624 self.build_targets_in_parallel() - self.state = 1539 + self.state = 1628 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==148: - self.state = 1538 + if _la==155: + self.state = 1627 self.class_prefix() - self.state = 1542 + self.state = 1631 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==99: - self.state = 1541 + if _la==103: + self.state = 1630 self.default_build_system_type_for_workspace() - self.state = 1545 + self.state = 1634 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==98: - self.state = 1544 + if _la==102: + self.state = 1633 self.last_swift_migration() - self.state = 1548 + self.state = 1637 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==100: - self.state = 1547 + if _la==104: + self.state = 1636 self.last_swift_update_check() - self.state = 1551 + self.state = 1640 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==102: - self.state = 1550 + if _la==106: + self.state = 1639 self.last_testing_upgrade_check() - self.state = 1554 + self.state = 1643 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==103: - self.state = 1553 + if _la==107: + self.state = 1642 self.last_upgrade_check() - self.state = 1557 + self.state = 1646 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==104: - self.state = 1556 + if _la==108: + self.state = 1645 self.organization_name() - self.state = 1560 + self.state = 1649 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==105: - self.state = 1559 + if _la==109: + self.state = 1648 self.target_attributes() - self.state = 1562 + self.state = 1651 self.match(PBXProjParser.T__1) - self.state = 1563 + self.state = 1652 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -10427,16 +11014,16 @@ def exitRule(self, listener:ParseTreeListener): def last_swift_migration(self): localctx = PBXProjParser.Last_swift_migrationContext(self, self._ctx, self.state) - self.enterRule(localctx, 276, self.RULE_last_swift_migration) + self.enterRule(localctx, 292, self.RULE_last_swift_migration) try: self.enterOuterAlt(localctx, 1) - self.state = 1565 + self.state = 1654 self.match(PBXProjParser.LAST_SWIFT_MIGRATION) - self.state = 1566 + self.state = 1655 self.match(PBXProjParser.T__2) - self.state = 1567 + self.state = 1656 self.match(PBXProjParser.NUMBER) - self.state = 1568 + self.state = 1657 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -10477,16 +11064,16 @@ def exitRule(self, listener:ParseTreeListener): def default_build_system_type_for_workspace(self): localctx = PBXProjParser.Default_build_system_type_for_workspaceContext(self, self._ctx, self.state) - self.enterRule(localctx, 278, self.RULE_default_build_system_type_for_workspace) + self.enterRule(localctx, 294, self.RULE_default_build_system_type_for_workspace) try: self.enterOuterAlt(localctx, 1) - self.state = 1570 + self.state = 1659 self.match(PBXProjParser.DEFAULT_BUILD_SYSTEM_TYPE_FOR_WORKSPACE) - self.state = 1571 + self.state = 1660 self.match(PBXProjParser.T__2) - self.state = 1572 + self.state = 1661 self.match(PBXProjParser.NON_QUOTED_STRING) - self.state = 1573 + self.state = 1662 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -10527,16 +11114,16 @@ def exitRule(self, listener:ParseTreeListener): def last_swift_update_check(self): localctx = PBXProjParser.Last_swift_update_checkContext(self, self._ctx, self.state) - self.enterRule(localctx, 280, self.RULE_last_swift_update_check) + self.enterRule(localctx, 296, self.RULE_last_swift_update_check) try: self.enterOuterAlt(localctx, 1) - self.state = 1575 + self.state = 1664 self.match(PBXProjParser.LAST_SWIFT_UPDATE_CHECK) - self.state = 1576 + self.state = 1665 self.match(PBXProjParser.T__2) - self.state = 1577 + self.state = 1666 self.match(PBXProjParser.NUMBER) - self.state = 1578 + self.state = 1667 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -10580,22 +11167,22 @@ def exitRule(self, listener:ParseTreeListener): def build_targets_in_parallel(self): localctx = PBXProjParser.Build_targets_in_parallelContext(self, self._ctx, self.state) - self.enterRule(localctx, 282, self.RULE_build_targets_in_parallel) + self.enterRule(localctx, 298, self.RULE_build_targets_in_parallel) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1580 + self.state = 1669 self.match(PBXProjParser.BUILD_INDEPENDENT_TARGETS_IN_PARALLEL) - self.state = 1581 + self.state = 1670 self.match(PBXProjParser.T__2) - self.state = 1582 + self.state = 1671 _la = self._input.LA(1) - if not(_la==13 or _la==151): + if not(_la==13 or _la==158): self._errHandler.recoverInline(self) else: self._errHandler.reportMatch(self) self.consume() - self.state = 1583 + self.state = 1672 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -10636,16 +11223,16 @@ def exitRule(self, listener:ParseTreeListener): def last_testing_upgrade_check(self): localctx = PBXProjParser.Last_testing_upgrade_checkContext(self, self._ctx, self.state) - self.enterRule(localctx, 284, self.RULE_last_testing_upgrade_check) + self.enterRule(localctx, 300, self.RULE_last_testing_upgrade_check) try: self.enterOuterAlt(localctx, 1) - self.state = 1585 + self.state = 1674 self.match(PBXProjParser.LAST_TESTING_UPGRADE_CHECK) - self.state = 1586 + self.state = 1675 self.match(PBXProjParser.T__2) - self.state = 1587 + self.state = 1676 self.match(PBXProjParser.NUMBER) - self.state = 1588 + self.state = 1677 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -10686,16 +11273,16 @@ def exitRule(self, listener:ParseTreeListener): def last_upgrade_check(self): localctx = PBXProjParser.Last_upgrade_checkContext(self, self._ctx, self.state) - self.enterRule(localctx, 286, self.RULE_last_upgrade_check) + self.enterRule(localctx, 302, self.RULE_last_upgrade_check) try: self.enterOuterAlt(localctx, 1) - self.state = 1590 + self.state = 1679 self.match(PBXProjParser.LAST_UPGRADE_CHECK) - self.state = 1591 + self.state = 1680 self.match(PBXProjParser.T__2) - self.state = 1592 + self.state = 1681 self.match(PBXProjParser.NUMBER) - self.state = 1593 + self.state = 1682 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -10737,16 +11324,16 @@ def exitRule(self, listener:ParseTreeListener): def organization_name(self): localctx = PBXProjParser.Organization_nameContext(self, self._ctx, self.state) - self.enterRule(localctx, 288, self.RULE_organization_name) + self.enterRule(localctx, 304, self.RULE_organization_name) try: self.enterOuterAlt(localctx, 1) - self.state = 1595 + self.state = 1684 self.match(PBXProjParser.ORGANIZATION_NAME) - self.state = 1596 + self.state = 1685 self.match(PBXProjParser.T__2) - self.state = 1597 + self.state = 1686 self.str_number_variable() - self.state = 1598 + self.state = 1687 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -10791,29 +11378,29 @@ def exitRule(self, listener:ParseTreeListener): def target_attributes(self): localctx = PBXProjParser.Target_attributesContext(self, self._ctx, self.state) - self.enterRule(localctx, 290, self.RULE_target_attributes) + self.enterRule(localctx, 306, self.RULE_target_attributes) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1600 + self.state = 1689 self.match(PBXProjParser.TARGET_ATTRIBUTES) - self.state = 1601 + self.state = 1690 self.match(PBXProjParser.T__2) - self.state = 1602 + self.state = 1691 self.match(PBXProjParser.T__0) - self.state = 1606 + self.state = 1695 self._errHandler.sync(self) _la = self._input.LA(1) - while _la==149: - self.state = 1603 + while _la==156: + self.state = 1692 self.target_attribute() - self.state = 1608 + self.state = 1697 self._errHandler.sync(self) _la = self._input.LA(1) - self.state = 1609 + self.state = 1698 self.match(PBXProjParser.T__1) - self.state = 1610 + self.state = 1699 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -10882,83 +11469,83 @@ def exitRule(self, listener:ParseTreeListener): def target_attribute(self): localctx = PBXProjParser.Target_attributeContext(self, self._ctx, self.state) - self.enterRule(localctx, 292, self.RULE_target_attribute) + self.enterRule(localctx, 308, self.RULE_target_attribute) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1612 + self.state = 1701 self.match(PBXProjParser.REFERENCE) - self.state = 1613 + self.state = 1702 self.match(PBXProjParser.T__2) - self.state = 1614 + self.state = 1703 self.match(PBXProjParser.T__0) - self.state = 1616 + self.state = 1705 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==106: - self.state = 1615 + if _la==110: + self.state = 1704 self.created_on_tools_version() - self.state = 1619 + self.state = 1708 self._errHandler.sync(self) - la_ = self._interp.adaptivePredict(self._input,138,self._ctx) + la_ = self._interp.adaptivePredict(self._input,144,self._ctx) if la_ == 1: - self.state = 1618 + self.state = 1707 self.test_target_id() - self.state = 1622 + self.state = 1711 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==108: - self.state = 1621 + if _la==112: + self.state = 1710 self.development_team() - self.state = 1625 + self.state = 1714 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==109: - self.state = 1624 + if _la==113: + self.state = 1713 self.development_team_name() - self.state = 1628 + self.state = 1717 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==98: - self.state = 1627 + if _la==102: + self.state = 1716 self.last_swift_migration() - self.state = 1631 + self.state = 1720 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==110: - self.state = 1630 + if _la==114: + self.state = 1719 self.provisioning_style() - self.state = 1634 + self.state = 1723 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==145: - self.state = 1633 + if _la==150: + self.state = 1722 self.system_capabilities() - self.state = 1637 + self.state = 1726 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==107: - self.state = 1636 + if _la==111: + self.state = 1725 self.test_target_id() - self.state = 1639 + self.state = 1728 self.match(PBXProjParser.T__1) - self.state = 1640 + self.state = 1729 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -10999,16 +11586,16 @@ def exitRule(self, listener:ParseTreeListener): def created_on_tools_version(self): localctx = PBXProjParser.Created_on_tools_versionContext(self, self._ctx, self.state) - self.enterRule(localctx, 294, self.RULE_created_on_tools_version) + self.enterRule(localctx, 310, self.RULE_created_on_tools_version) try: self.enterOuterAlt(localctx, 1) - self.state = 1642 + self.state = 1731 self.match(PBXProjParser.CREATED_ON_TOOLS_VERSION) - self.state = 1643 + self.state = 1732 self.match(PBXProjParser.T__2) - self.state = 1644 + self.state = 1733 self.match(PBXProjParser.NON_QUOTED_STRING) - self.state = 1645 + self.state = 1734 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -11049,16 +11636,16 @@ def exitRule(self, listener:ParseTreeListener): def test_target_id(self): localctx = PBXProjParser.Test_target_idContext(self, self._ctx, self.state) - self.enterRule(localctx, 296, self.RULE_test_target_id) + self.enterRule(localctx, 312, self.RULE_test_target_id) try: self.enterOuterAlt(localctx, 1) - self.state = 1647 + self.state = 1736 self.match(PBXProjParser.TEST_TARGET_ID) - self.state = 1648 + self.state = 1737 self.match(PBXProjParser.T__2) - self.state = 1649 + self.state = 1738 self.match(PBXProjParser.REFERENCE) - self.state = 1650 + self.state = 1739 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -11100,16 +11687,16 @@ def exitRule(self, listener:ParseTreeListener): def development_team(self): localctx = PBXProjParser.Development_teamContext(self, self._ctx, self.state) - self.enterRule(localctx, 298, self.RULE_development_team) + self.enterRule(localctx, 314, self.RULE_development_team) try: self.enterOuterAlt(localctx, 1) - self.state = 1652 + self.state = 1741 self.match(PBXProjParser.DEVELOPMENT_TEAM) - self.state = 1653 + self.state = 1742 self.match(PBXProjParser.T__2) - self.state = 1654 + self.state = 1743 self.any_string() - self.state = 1655 + self.state = 1744 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -11151,16 +11738,16 @@ def exitRule(self, listener:ParseTreeListener): def development_team_name(self): localctx = PBXProjParser.Development_team_nameContext(self, self._ctx, self.state) - self.enterRule(localctx, 300, self.RULE_development_team_name) + self.enterRule(localctx, 316, self.RULE_development_team_name) try: self.enterOuterAlt(localctx, 1) - self.state = 1657 + self.state = 1746 self.match(PBXProjParser.DEVELOPMENT_TEAM_NAME) - self.state = 1658 + self.state = 1747 self.match(PBXProjParser.T__2) - self.state = 1659 + self.state = 1748 self.any_string() - self.state = 1660 + self.state = 1749 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -11201,16 +11788,16 @@ def exitRule(self, listener:ParseTreeListener): def provisioning_style(self): localctx = PBXProjParser.Provisioning_styleContext(self, self._ctx, self.state) - self.enterRule(localctx, 302, self.RULE_provisioning_style) + self.enterRule(localctx, 318, self.RULE_provisioning_style) try: self.enterOuterAlt(localctx, 1) - self.state = 1662 + self.state = 1751 self.match(PBXProjParser.PROVISIONING_STYLE) - self.state = 1663 + self.state = 1752 self.match(PBXProjParser.T__2) - self.state = 1664 + self.state = 1753 self.match(PBXProjParser.NON_QUOTED_STRING) - self.state = 1665 + self.state = 1754 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -11251,16 +11838,16 @@ def exitRule(self, listener:ParseTreeListener): def compatibility_version(self): localctx = PBXProjParser.Compatibility_versionContext(self, self._ctx, self.state) - self.enterRule(localctx, 304, self.RULE_compatibility_version) + self.enterRule(localctx, 320, self.RULE_compatibility_version) try: self.enterOuterAlt(localctx, 1) - self.state = 1667 + self.state = 1756 self.match(PBXProjParser.COMPATIBILITY_VERSION) - self.state = 1668 + self.state = 1757 self.match(PBXProjParser.T__2) - self.state = 1669 + self.state = 1758 self.match(PBXProjParser.QUOTED_STRING) - self.state = 1670 + self.state = 1759 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -11301,16 +11888,16 @@ def exitRule(self, listener:ParseTreeListener): def development_region(self): localctx = PBXProjParser.Development_regionContext(self, self._ctx, self.state) - self.enterRule(localctx, 306, self.RULE_development_region) + self.enterRule(localctx, 322, self.RULE_development_region) try: self.enterOuterAlt(localctx, 1) - self.state = 1672 + self.state = 1761 self.match(PBXProjParser.DEVELOPMENT_REGION) - self.state = 1673 + self.state = 1762 self.match(PBXProjParser.T__2) - self.state = 1674 + self.state = 1763 self.match(PBXProjParser.NON_QUOTED_STRING) - self.state = 1675 + self.state = 1764 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -11351,16 +11938,16 @@ def exitRule(self, listener:ParseTreeListener): def has_scanned_for_encodings(self): localctx = PBXProjParser.Has_scanned_for_encodingsContext(self, self._ctx, self.state) - self.enterRule(localctx, 308, self.RULE_has_scanned_for_encodings) + self.enterRule(localctx, 324, self.RULE_has_scanned_for_encodings) try: self.enterOuterAlt(localctx, 1) - self.state = 1677 + self.state = 1766 self.match(PBXProjParser.HAS_SCANNED_FOR_ENCODINGS) - self.state = 1678 + self.state = 1767 self.match(PBXProjParser.T__2) - self.state = 1679 + self.state = 1768 self.match(PBXProjParser.NUMBER) - self.state = 1680 + self.state = 1769 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -11402,16 +11989,16 @@ def exitRule(self, listener:ParseTreeListener): def known_regions(self): localctx = PBXProjParser.Known_regionsContext(self, self._ctx, self.state) - self.enterRule(localctx, 310, self.RULE_known_regions) + self.enterRule(localctx, 326, self.RULE_known_regions) try: self.enterOuterAlt(localctx, 1) - self.state = 1682 + self.state = 1771 self.match(PBXProjParser.KNOWN_REGIONS) - self.state = 1683 + self.state = 1772 self.match(PBXProjParser.T__2) - self.state = 1684 + self.state = 1773 self.any_string_list() - self.state = 1685 + self.state = 1774 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -11452,16 +12039,16 @@ def exitRule(self, listener:ParseTreeListener): def main_group(self): localctx = PBXProjParser.Main_groupContext(self, self._ctx, self.state) - self.enterRule(localctx, 312, self.RULE_main_group) + self.enterRule(localctx, 328, self.RULE_main_group) try: self.enterOuterAlt(localctx, 1) - self.state = 1687 + self.state = 1776 self.match(PBXProjParser.MAIN_GROUP) - self.state = 1688 + self.state = 1777 self.match(PBXProjParser.T__2) - self.state = 1689 + self.state = 1778 self.match(PBXProjParser.REFERENCE) - self.state = 1690 + self.state = 1779 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -11502,16 +12089,16 @@ def exitRule(self, listener:ParseTreeListener): def product_ref_group(self): localctx = PBXProjParser.Product_ref_groupContext(self, self._ctx, self.state) - self.enterRule(localctx, 314, self.RULE_product_ref_group) + self.enterRule(localctx, 330, self.RULE_product_ref_group) try: self.enterOuterAlt(localctx, 1) - self.state = 1692 + self.state = 1781 self.match(PBXProjParser.PRODUCT_REF_GROUP) - self.state = 1693 + self.state = 1782 self.match(PBXProjParser.T__2) - self.state = 1694 + self.state = 1783 self.match(PBXProjParser.REFERENCE) - self.state = 1695 + self.state = 1784 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -11537,32 +12124,82 @@ def reference_list(self): def getRuleIndex(self): - return PBXProjParser.RULE_package_references + return PBXProjParser.RULE_package_references + + def enterRule(self, listener:ParseTreeListener): + if hasattr( listener, "enterPackage_references" ): + listener.enterPackage_references(self) + + def exitRule(self, listener:ParseTreeListener): + if hasattr( listener, "exitPackage_references" ): + listener.exitPackage_references(self) + + + + + def package_references(self): + + localctx = PBXProjParser.Package_referencesContext(self, self._ctx, self.state) + self.enterRule(localctx, 332, self.RULE_package_references) + try: + self.enterOuterAlt(localctx, 1) + self.state = 1786 + self.match(PBXProjParser.PACKAGE_REFERENCES) + self.state = 1787 + self.match(PBXProjParser.T__2) + self.state = 1788 + self.reference_list() + self.state = 1789 + self.match(PBXProjParser.T__3) + except RecognitionException as re: + localctx.exception = re + self._errHandler.reportError(self, re) + self._errHandler.recover(self, re) + finally: + self.exitRule() + return localctx + + + class Preferred_project_object_versionContext(ParserRuleContext): + __slots__ = 'parser' + + def __init__(self, parser, parent:ParserRuleContext=None, invokingState:int=-1): + super().__init__(parent, invokingState) + self.parser = parser + + def PREFERRED_PROJECT_OBJECT_VERSION(self): + return self.getToken(PBXProjParser.PREFERRED_PROJECT_OBJECT_VERSION, 0) + + def NUMBER(self): + return self.getToken(PBXProjParser.NUMBER, 0) + + def getRuleIndex(self): + return PBXProjParser.RULE_preferred_project_object_version def enterRule(self, listener:ParseTreeListener): - if hasattr( listener, "enterPackage_references" ): - listener.enterPackage_references(self) + if hasattr( listener, "enterPreferred_project_object_version" ): + listener.enterPreferred_project_object_version(self) def exitRule(self, listener:ParseTreeListener): - if hasattr( listener, "exitPackage_references" ): - listener.exitPackage_references(self) + if hasattr( listener, "exitPreferred_project_object_version" ): + listener.exitPreferred_project_object_version(self) - def package_references(self): + def preferred_project_object_version(self): - localctx = PBXProjParser.Package_referencesContext(self, self._ctx, self.state) - self.enterRule(localctx, 316, self.RULE_package_references) + localctx = PBXProjParser.Preferred_project_object_versionContext(self, self._ctx, self.state) + self.enterRule(localctx, 334, self.RULE_preferred_project_object_version) try: self.enterOuterAlt(localctx, 1) - self.state = 1697 - self.match(PBXProjParser.PACKAGE_REFERENCES) - self.state = 1698 + self.state = 1791 + self.match(PBXProjParser.PREFERRED_PROJECT_OBJECT_VERSION) + self.state = 1792 self.match(PBXProjParser.T__2) - self.state = 1699 - self.reference_list() - self.state = 1700 + self.state = 1793 + self.match(PBXProjParser.NUMBER) + self.state = 1794 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -11604,16 +12241,16 @@ def exitRule(self, listener:ParseTreeListener): def project_dir_path(self): localctx = PBXProjParser.Project_dir_pathContext(self, self._ctx, self.state) - self.enterRule(localctx, 318, self.RULE_project_dir_path) + self.enterRule(localctx, 336, self.RULE_project_dir_path) try: self.enterOuterAlt(localctx, 1) - self.state = 1702 + self.state = 1796 self.match(PBXProjParser.PRODUCT_DIR_PATH) - self.state = 1703 + self.state = 1797 self.match(PBXProjParser.T__2) - self.state = 1704 + self.state = 1798 self.any_string() - self.state = 1705 + self.state = 1799 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -11659,36 +12296,36 @@ def exitRule(self, listener:ParseTreeListener): def project_references(self): localctx = PBXProjParser.Project_referencesContext(self, self._ctx, self.state) - self.enterRule(localctx, 320, self.RULE_project_references) + self.enterRule(localctx, 338, self.RULE_project_references) try: - self.state = 1719 + self.state = 1813 self._errHandler.sync(self) - la_ = self._interp.adaptivePredict(self._input,145,self._ctx) + la_ = self._interp.adaptivePredict(self._input,151,self._ctx) if la_ == 1: self.enterOuterAlt(localctx, 1) - self.state = 1707 + self.state = 1801 self.match(PBXProjParser.PROJECT_REFERENCES) - self.state = 1708 + self.state = 1802 self.match(PBXProjParser.T__2) - self.state = 1709 + self.state = 1803 self.str_number_variable() - self.state = 1710 + self.state = 1804 self.match(PBXProjParser.T__3) pass elif la_ == 2: self.enterOuterAlt(localctx, 2) - self.state = 1712 + self.state = 1806 self.match(PBXProjParser.PROJECT_REFERENCES) - self.state = 1713 + self.state = 1807 self.match(PBXProjParser.T__2) - self.state = 1714 + self.state = 1808 self.match(PBXProjParser.T__4) - self.state = 1715 + self.state = 1809 self.project_references_list() - self.state = 1716 + self.state = 1810 self.match(PBXProjParser.T__6) - self.state = 1717 + self.state = 1811 self.match(PBXProjParser.T__3) pass @@ -11733,16 +12370,16 @@ def exitRule(self, listener:ParseTreeListener): def project_root(self): localctx = PBXProjParser.Project_rootContext(self, self._ctx, self.state) - self.enterRule(localctx, 322, self.RULE_project_root) + self.enterRule(localctx, 340, self.RULE_project_root) try: self.enterOuterAlt(localctx, 1) - self.state = 1721 + self.state = 1815 self.match(PBXProjParser.PROJECT_ROOT) - self.state = 1722 + self.state = 1816 self.match(PBXProjParser.T__2) - self.state = 1723 + self.state = 1817 self.any_string() - self.state = 1724 + self.state = 1818 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -11784,16 +12421,16 @@ def exitRule(self, listener:ParseTreeListener): def targets(self): localctx = PBXProjParser.TargetsContext(self, self._ctx, self.state) - self.enterRule(localctx, 324, self.RULE_targets) + self.enterRule(localctx, 342, self.RULE_targets) try: self.enterOuterAlt(localctx, 1) - self.state = 1726 + self.state = 1820 self.match(PBXProjParser.TARGETS) - self.state = 1727 + self.state = 1821 self.match(PBXProjParser.T__2) - self.state = 1728 + self.state = 1822 self.reference_list() - self.state = 1729 + self.state = 1823 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -11835,16 +12472,16 @@ def exitRule(self, listener:ParseTreeListener): def input_file_list_paths(self): localctx = PBXProjParser.Input_file_list_pathsContext(self, self._ctx, self.state) - self.enterRule(localctx, 326, self.RULE_input_file_list_paths) + self.enterRule(localctx, 344, self.RULE_input_file_list_paths) try: self.enterOuterAlt(localctx, 1) - self.state = 1731 + self.state = 1825 self.match(PBXProjParser.INPUT_FILE_LIST_PATHS) - self.state = 1732 + self.state = 1826 self.match(PBXProjParser.T__2) - self.state = 1733 + self.state = 1827 self.any_string_list() - self.state = 1734 + self.state = 1828 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -11886,16 +12523,16 @@ def exitRule(self, listener:ParseTreeListener): def input_paths(self): localctx = PBXProjParser.Input_pathsContext(self, self._ctx, self.state) - self.enterRule(localctx, 328, self.RULE_input_paths) + self.enterRule(localctx, 346, self.RULE_input_paths) try: self.enterOuterAlt(localctx, 1) - self.state = 1736 + self.state = 1830 self.match(PBXProjParser.INPUT_PATHS) - self.state = 1737 + self.state = 1831 self.match(PBXProjParser.T__2) - self.state = 1738 + self.state = 1832 self.any_string_list() - self.state = 1739 + self.state = 1833 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -11937,16 +12574,16 @@ def exitRule(self, listener:ParseTreeListener): def output_file_list_paths(self): localctx = PBXProjParser.Output_file_list_pathsContext(self, self._ctx, self.state) - self.enterRule(localctx, 330, self.RULE_output_file_list_paths) + self.enterRule(localctx, 348, self.RULE_output_file_list_paths) try: self.enterOuterAlt(localctx, 1) - self.state = 1741 + self.state = 1835 self.match(PBXProjParser.OUTPUT_FILE_LIST_PATHS) - self.state = 1742 + self.state = 1836 self.match(PBXProjParser.T__2) - self.state = 1743 + self.state = 1837 self.any_string_list() - self.state = 1744 + self.state = 1838 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -11988,16 +12625,16 @@ def exitRule(self, listener:ParseTreeListener): def output_paths(self): localctx = PBXProjParser.Output_pathsContext(self, self._ctx, self.state) - self.enterRule(localctx, 332, self.RULE_output_paths) + self.enterRule(localctx, 350, self.RULE_output_paths) try: self.enterOuterAlt(localctx, 1) - self.state = 1746 + self.state = 1840 self.match(PBXProjParser.OUTPUT_PATHS) - self.state = 1747 + self.state = 1841 self.match(PBXProjParser.T__2) - self.state = 1748 + self.state = 1842 self.any_string_list() - self.state = 1749 + self.state = 1843 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -12039,16 +12676,16 @@ def exitRule(self, listener:ParseTreeListener): def shell_path(self): localctx = PBXProjParser.Shell_pathContext(self, self._ctx, self.state) - self.enterRule(localctx, 334, self.RULE_shell_path) + self.enterRule(localctx, 352, self.RULE_shell_path) try: self.enterOuterAlt(localctx, 1) - self.state = 1751 + self.state = 1845 self.match(PBXProjParser.SHELL_PATH) - self.state = 1752 + self.state = 1846 self.match(PBXProjParser.T__2) - self.state = 1753 + self.state = 1847 self.any_string() - self.state = 1754 + self.state = 1848 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -12089,16 +12726,16 @@ def exitRule(self, listener:ParseTreeListener): def shell(self): localctx = PBXProjParser.ShellContext(self, self._ctx, self.state) - self.enterRule(localctx, 336, self.RULE_shell) + self.enterRule(localctx, 354, self.RULE_shell) try: self.enterOuterAlt(localctx, 1) - self.state = 1756 + self.state = 1850 self.match(PBXProjParser.SHELL) - self.state = 1757 + self.state = 1851 self.match(PBXProjParser.T__2) - self.state = 1758 + self.state = 1852 self.match(PBXProjParser.QUOTED_STRING) - self.state = 1759 + self.state = 1853 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -12140,16 +12777,16 @@ def exitRule(self, listener:ParseTreeListener): def shell_script(self): localctx = PBXProjParser.Shell_scriptContext(self, self._ctx, self.state) - self.enterRule(localctx, 338, self.RULE_shell_script) + self.enterRule(localctx, 356, self.RULE_shell_script) try: self.enterOuterAlt(localctx, 1) - self.state = 1761 + self.state = 1855 self.match(PBXProjParser.SHELL_SCRIPT) - self.state = 1762 + self.state = 1856 self.match(PBXProjParser.T__2) - self.state = 1763 + self.state = 1857 self.any_string() - self.state = 1764 + self.state = 1858 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -12190,16 +12827,16 @@ def exitRule(self, listener:ParseTreeListener): def show_env_vars_in_log(self): localctx = PBXProjParser.Show_env_vars_in_logContext(self, self._ctx, self.state) - self.enterRule(localctx, 340, self.RULE_show_env_vars_in_log) + self.enterRule(localctx, 358, self.RULE_show_env_vars_in_log) try: self.enterOuterAlt(localctx, 1) - self.state = 1766 + self.state = 1860 self.match(PBXProjParser.SHOW_ENV_VARS_IN_LOG) - self.state = 1767 + self.state = 1861 self.match(PBXProjParser.T__2) - self.state = 1768 + self.state = 1862 self.match(PBXProjParser.NUMBER) - self.state = 1769 + self.state = 1863 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -12240,16 +12877,16 @@ def exitRule(self, listener:ParseTreeListener): def target(self): localctx = PBXProjParser.TargetContext(self, self._ctx, self.state) - self.enterRule(localctx, 342, self.RULE_target) + self.enterRule(localctx, 360, self.RULE_target) try: self.enterOuterAlt(localctx, 1) - self.state = 1771 + self.state = 1865 self.match(PBXProjParser.TARGET) - self.state = 1772 + self.state = 1866 self.match(PBXProjParser.T__2) - self.state = 1773 + self.state = 1867 self.match(PBXProjParser.REFERENCE) - self.state = 1774 + self.state = 1868 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -12290,16 +12927,16 @@ def exitRule(self, listener:ParseTreeListener): def target_proxy(self): localctx = PBXProjParser.Target_proxyContext(self, self._ctx, self.state) - self.enterRule(localctx, 344, self.RULE_target_proxy) + self.enterRule(localctx, 362, self.RULE_target_proxy) try: self.enterOuterAlt(localctx, 1) - self.state = 1776 + self.state = 1870 self.match(PBXProjParser.TARGET_PROXY) - self.state = 1777 + self.state = 1871 self.match(PBXProjParser.T__2) - self.state = 1778 + self.state = 1872 self.match(PBXProjParser.REFERENCE) - self.state = 1779 + self.state = 1873 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -12341,16 +12978,16 @@ def exitRule(self, listener:ParseTreeListener): def file_type(self): localctx = PBXProjParser.File_typeContext(self, self._ctx, self.state) - self.enterRule(localctx, 346, self.RULE_file_type) + self.enterRule(localctx, 364, self.RULE_file_type) try: self.enterOuterAlt(localctx, 1) - self.state = 1781 + self.state = 1875 self.match(PBXProjParser.FILE_TYPE) - self.state = 1782 + self.state = 1876 self.match(PBXProjParser.T__2) - self.state = 1783 + self.state = 1877 self.str_number_variable() - self.state = 1784 + self.state = 1878 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -12391,16 +13028,16 @@ def exitRule(self, listener:ParseTreeListener): def remote_ref(self): localctx = PBXProjParser.Remote_refContext(self, self._ctx, self.state) - self.enterRule(localctx, 348, self.RULE_remote_ref) + self.enterRule(localctx, 366, self.RULE_remote_ref) try: self.enterOuterAlt(localctx, 1) - self.state = 1786 + self.state = 1880 self.match(PBXProjParser.REMOTE_REF) - self.state = 1787 + self.state = 1881 self.match(PBXProjParser.T__2) - self.state = 1788 + self.state = 1882 self.match(PBXProjParser.REFERENCE) - self.state = 1789 + self.state = 1883 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -12441,16 +13078,16 @@ def exitRule(self, listener:ParseTreeListener): def base_configuration_reference(self): localctx = PBXProjParser.Base_configuration_referenceContext(self, self._ctx, self.state) - self.enterRule(localctx, 350, self.RULE_base_configuration_reference) + self.enterRule(localctx, 368, self.RULE_base_configuration_reference) try: self.enterOuterAlt(localctx, 1) - self.state = 1791 + self.state = 1885 self.match(PBXProjParser.BASE_CONFIGURATION_REFERENCE) - self.state = 1792 + self.state = 1886 self.match(PBXProjParser.T__2) - self.state = 1793 + self.state = 1887 self.match(PBXProjParser.REFERENCE) - self.state = 1794 + self.state = 1888 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -12495,29 +13132,29 @@ def exitRule(self, listener:ParseTreeListener): def build_settings(self): localctx = PBXProjParser.Build_settingsContext(self, self._ctx, self.state) - self.enterRule(localctx, 352, self.RULE_build_settings) + self.enterRule(localctx, 370, self.RULE_build_settings) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1796 + self.state = 1890 self.match(PBXProjParser.BUILD_SETTINGS) - self.state = 1797 + self.state = 1891 self.match(PBXProjParser.T__2) - self.state = 1798 + self.state = 1892 self.match(PBXProjParser.T__0) - self.state = 1802 + self.state = 1896 self._errHandler.sync(self) _la = self._input.LA(1) - while (((_la) & ~0x3f) == 0 and ((1 << _la) & -35253897527552) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & 31457023) != 0): - self.state = 1799 + while (((_la) & ~0x3f) == 0 and ((1 << _la) & -141015588143360) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & 4026523647) != 0): + self.state = 1893 self.key_value() - self.state = 1804 + self.state = 1898 self._errHandler.sync(self) _la = self._input.LA(1) - self.state = 1805 + self.state = 1899 self.match(PBXProjParser.T__1) - self.state = 1806 + self.state = 1900 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -12559,16 +13196,16 @@ def exitRule(self, listener:ParseTreeListener): def build_styles(self): localctx = PBXProjParser.Build_stylesContext(self, self._ctx, self.state) - self.enterRule(localctx, 354, self.RULE_build_styles) + self.enterRule(localctx, 372, self.RULE_build_styles) try: self.enterOuterAlt(localctx, 1) - self.state = 1808 + self.state = 1902 self.match(PBXProjParser.BUILD_STYLES) - self.state = 1809 + self.state = 1903 self.match(PBXProjParser.T__2) - self.state = 1810 + self.state = 1904 self.reference_list() - self.state = 1811 + self.state = 1905 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -12610,16 +13247,16 @@ def exitRule(self, listener:ParseTreeListener): def dst_path(self): localctx = PBXProjParser.Dst_pathContext(self, self._ctx, self.state) - self.enterRule(localctx, 356, self.RULE_dst_path) + self.enterRule(localctx, 374, self.RULE_dst_path) try: self.enterOuterAlt(localctx, 1) - self.state = 1813 + self.state = 1907 self.match(PBXProjParser.DST_PATH) - self.state = 1814 + self.state = 1908 self.match(PBXProjParser.T__2) - self.state = 1815 + self.state = 1909 self.any_string() - self.state = 1816 + self.state = 1910 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -12660,16 +13297,16 @@ def exitRule(self, listener:ParseTreeListener): def dst_subfolder_spec(self): localctx = PBXProjParser.Dst_subfolder_specContext(self, self._ctx, self.state) - self.enterRule(localctx, 358, self.RULE_dst_subfolder_spec) + self.enterRule(localctx, 376, self.RULE_dst_subfolder_spec) try: self.enterOuterAlt(localctx, 1) - self.state = 1818 + self.state = 1912 self.match(PBXProjParser.DST_SUBFOLDER_SPEC) - self.state = 1819 + self.state = 1913 self.match(PBXProjParser.T__2) - self.state = 1820 + self.state = 1914 self.match(PBXProjParser.NUMBER) - self.state = 1821 + self.state = 1915 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -12711,17 +13348,17 @@ def exitRule(self, listener:ParseTreeListener): def project_references_list(self): localctx = PBXProjParser.Project_references_listContext(self, self._ctx, self.state) - self.enterRule(localctx, 360, self.RULE_project_references_list) + self.enterRule(localctx, 378, self.RULE_project_references_list) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1826 + self.state = 1920 self._errHandler.sync(self) _la = self._input.LA(1) while _la==1: - self.state = 1823 + self.state = 1917 self.project_references_list_element() - self.state = 1828 + self.state = 1922 self._errHandler.sync(self) _la = self._input.LA(1) @@ -12770,30 +13407,30 @@ def exitRule(self, listener:ParseTreeListener): def project_references_list_element(self): localctx = PBXProjParser.Project_references_list_elementContext(self, self._ctx, self.state) - self.enterRule(localctx, 362, self.RULE_project_references_list_element) + self.enterRule(localctx, 380, self.RULE_project_references_list_element) try: self.enterOuterAlt(localctx, 1) - self.state = 1829 + self.state = 1923 self.match(PBXProjParser.T__0) - self.state = 1830 + self.state = 1924 self.match(PBXProjParser.PRODUCT_GROUP) - self.state = 1831 + self.state = 1925 self.match(PBXProjParser.T__2) - self.state = 1832 + self.state = 1926 self.match(PBXProjParser.REFERENCE) - self.state = 1833 + self.state = 1927 self.match(PBXProjParser.T__3) - self.state = 1834 + self.state = 1928 self.match(PBXProjParser.PROJECT_REF) - self.state = 1835 + self.state = 1929 self.match(PBXProjParser.T__2) - self.state = 1836 + self.state = 1930 self.match(PBXProjParser.REFERENCE) - self.state = 1837 + self.state = 1931 self.match(PBXProjParser.T__3) - self.state = 1838 + self.state = 1932 self.match(PBXProjParser.T__1) - self.state = 1839 + self.state = 1933 self.match(PBXProjParser.T__5) except RecognitionException as re: localctx.exception = re @@ -12804,6 +13441,108 @@ def project_references_list_element(self): return localctx + class Membership_exceptionsContext(ParserRuleContext): + __slots__ = 'parser' + + def __init__(self, parser, parent:ParserRuleContext=None, invokingState:int=-1): + super().__init__(parent, invokingState) + self.parser = parser + + def MEMBERSHIP_EXCEPTIONS(self): + return self.getToken(PBXProjParser.MEMBERSHIP_EXCEPTIONS, 0) + + def any_string_list(self): + return self.getTypedRuleContext(PBXProjParser.Any_string_listContext,0) + + + def getRuleIndex(self): + return PBXProjParser.RULE_membership_exceptions + + def enterRule(self, listener:ParseTreeListener): + if hasattr( listener, "enterMembership_exceptions" ): + listener.enterMembership_exceptions(self) + + def exitRule(self, listener:ParseTreeListener): + if hasattr( listener, "exitMembership_exceptions" ): + listener.exitMembership_exceptions(self) + + + + + def membership_exceptions(self): + + localctx = PBXProjParser.Membership_exceptionsContext(self, self._ctx, self.state) + self.enterRule(localctx, 382, self.RULE_membership_exceptions) + try: + self.enterOuterAlt(localctx, 1) + self.state = 1935 + self.match(PBXProjParser.MEMBERSHIP_EXCEPTIONS) + self.state = 1936 + self.match(PBXProjParser.T__2) + self.state = 1937 + self.any_string_list() + self.state = 1938 + self.match(PBXProjParser.T__3) + except RecognitionException as re: + localctx.exception = re + self._errHandler.reportError(self, re) + self._errHandler.recover(self, re) + finally: + self.exitRule() + return localctx + + + class ExceptionsContext(ParserRuleContext): + __slots__ = 'parser' + + def __init__(self, parser, parent:ParserRuleContext=None, invokingState:int=-1): + super().__init__(parent, invokingState) + self.parser = parser + + def EXCEPTIONS(self): + return self.getToken(PBXProjParser.EXCEPTIONS, 0) + + def reference_list(self): + return self.getTypedRuleContext(PBXProjParser.Reference_listContext,0) + + + def getRuleIndex(self): + return PBXProjParser.RULE_exceptions + + def enterRule(self, listener:ParseTreeListener): + if hasattr( listener, "enterExceptions" ): + listener.enterExceptions(self) + + def exitRule(self, listener:ParseTreeListener): + if hasattr( listener, "exitExceptions" ): + listener.exitExceptions(self) + + + + + def exceptions(self): + + localctx = PBXProjParser.ExceptionsContext(self, self._ctx, self.state) + self.enterRule(localctx, 384, self.RULE_exceptions) + try: + self.enterOuterAlt(localctx, 1) + self.state = 1940 + self.match(PBXProjParser.EXCEPTIONS) + self.state = 1941 + self.match(PBXProjParser.T__2) + self.state = 1942 + self.reference_list() + self.state = 1943 + self.match(PBXProjParser.T__3) + except RecognitionException as re: + localctx.exception = re + self._errHandler.reportError(self, re) + self._errHandler.recover(self, re) + finally: + self.exitRule() + return localctx + + class Key_valueContext(ParserRuleContext): __slots__ = 'parser' @@ -12845,104 +13584,104 @@ def exitRule(self, listener:ParseTreeListener): def key_value(self): localctx = PBXProjParser.Key_valueContext(self, self._ctx, self.state) - self.enterRule(localctx, 364, self.RULE_key_value) + self.enterRule(localctx, 386, self.RULE_key_value) self._la = 0 # Token type try: - self.state = 1882 + self.state = 1986 self._errHandler.sync(self) - la_ = self._interp.adaptivePredict(self._input,151,self._ctx) + la_ = self._interp.adaptivePredict(self._input,157,self._ctx) if la_ == 1: self.enterOuterAlt(localctx, 1) - self.state = 1841 + self.state = 1945 self.str_number_variable() - self.state = 1842 + self.state = 1946 self.match(PBXProjParser.T__2) - self.state = 1843 + self.state = 1947 self.str_number_variable() - self.state = 1844 + self.state = 1948 self.match(PBXProjParser.T__3) pass elif la_ == 2: self.enterOuterAlt(localctx, 2) - self.state = 1846 + self.state = 1950 self.str_number_variable() - self.state = 1847 + self.state = 1951 self.match(PBXProjParser.T__2) - self.state = 1848 + self.state = 1952 self.match(PBXProjParser.NUMBER) - self.state = 1849 + self.state = 1953 self.match(PBXProjParser.T__3) pass elif la_ == 3: self.enterOuterAlt(localctx, 3) - self.state = 1851 + self.state = 1955 self.str_number_variable() - self.state = 1852 + self.state = 1956 self.match(PBXProjParser.T__2) - self.state = 1853 + self.state = 1957 self.match(PBXProjParser.ALPHA_NUMERIC) - self.state = 1854 + self.state = 1958 self.match(PBXProjParser.T__3) pass elif la_ == 4: self.enterOuterAlt(localctx, 4) - self.state = 1856 + self.state = 1960 self.str_number_variable() - self.state = 1857 + self.state = 1961 self.match(PBXProjParser.T__2) - self.state = 1858 + self.state = 1962 self.match(PBXProjParser.T__0) - self.state = 1859 + self.state = 1963 self.key_value() - self.state = 1860 + self.state = 1964 self.match(PBXProjParser.T__1) - self.state = 1861 + self.state = 1965 self.match(PBXProjParser.T__3) pass elif la_ == 5: self.enterOuterAlt(localctx, 5) - self.state = 1863 + self.state = 1967 self.str_number_variable() - self.state = 1864 + self.state = 1968 self.match(PBXProjParser.T__2) - self.state = 1865 + self.state = 1969 self.match(PBXProjParser.T__4) - self.state = 1867 + self.state = 1971 self._errHandler.sync(self) _la = self._input.LA(1) - if (((_la) & ~0x3f) == 0 and ((1 << _la) & -35253897527552) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & 31457023) != 0): - self.state = 1866 + if (((_la) & ~0x3f) == 0 and ((1 << _la) & -141015588143360) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & 4026523647) != 0): + self.state = 1970 self.str_number_variable() - self.state = 1873 + self.state = 1977 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,149,self._ctx) + _alt = self._interp.adaptivePredict(self._input,155,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt==1: - self.state = 1869 + self.state = 1973 self.match(PBXProjParser.T__5) - self.state = 1870 + self.state = 1974 self.str_number_variable() - self.state = 1875 + self.state = 1979 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,149,self._ctx) + _alt = self._interp.adaptivePredict(self._input,155,self._ctx) - self.state = 1877 + self.state = 1981 self._errHandler.sync(self) _la = self._input.LA(1) if _la==6: - self.state = 1876 + self.state = 1980 self.match(PBXProjParser.T__5) - self.state = 1879 + self.state = 1983 self.match(PBXProjParser.T__6) - self.state = 1880 + self.state = 1984 self.match(PBXProjParser.T__3) pass @@ -12987,16 +13726,16 @@ def exitRule(self, listener:ParseTreeListener): def build_configurations(self): localctx = PBXProjParser.Build_configurationsContext(self, self._ctx, self.state) - self.enterRule(localctx, 366, self.RULE_build_configurations) + self.enterRule(localctx, 388, self.RULE_build_configurations) try: self.enterOuterAlt(localctx, 1) - self.state = 1884 + self.state = 1988 self.match(PBXProjParser.BUILD_CONFIGURATIONS) - self.state = 1885 + self.state = 1989 self.match(PBXProjParser.T__2) - self.state = 1886 + self.state = 1990 self.reference_list() - self.state = 1887 + self.state = 1991 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -13037,16 +13776,16 @@ def exitRule(self, listener:ParseTreeListener): def default_configuration_is_visible(self): localctx = PBXProjParser.Default_configuration_is_visibleContext(self, self._ctx, self.state) - self.enterRule(localctx, 368, self.RULE_default_configuration_is_visible) + self.enterRule(localctx, 390, self.RULE_default_configuration_is_visible) try: self.enterOuterAlt(localctx, 1) - self.state = 1889 + self.state = 1993 self.match(PBXProjParser.DEFAULT_CONFIGURATION_IS_VISIBLE) - self.state = 1890 + self.state = 1994 self.match(PBXProjParser.T__2) - self.state = 1891 + self.state = 1995 self.match(PBXProjParser.NUMBER) - self.state = 1892 + self.state = 1996 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -13088,16 +13827,16 @@ def exitRule(self, listener:ParseTreeListener): def default_configuration_name(self): localctx = PBXProjParser.Default_configuration_nameContext(self, self._ctx, self.state) - self.enterRule(localctx, 370, self.RULE_default_configuration_name) + self.enterRule(localctx, 392, self.RULE_default_configuration_name) try: self.enterOuterAlt(localctx, 1) - self.state = 1894 + self.state = 1998 self.match(PBXProjParser.DEFAULT_CONFIGURATION_NAME) - self.state = 1895 + self.state = 1999 self.match(PBXProjParser.T__2) - self.state = 1896 + self.state = 2000 self.any_string() - self.state = 1897 + self.state = 2001 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -13142,29 +13881,29 @@ def exitRule(self, listener:ParseTreeListener): def settings(self): localctx = PBXProjParser.SettingsContext(self, self._ctx, self.state) - self.enterRule(localctx, 372, self.RULE_settings) + self.enterRule(localctx, 394, self.RULE_settings) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1899 + self.state = 2003 self.match(PBXProjParser.SETTINGS) - self.state = 1900 + self.state = 2004 self.match(PBXProjParser.T__2) - self.state = 1901 + self.state = 2005 self.match(PBXProjParser.T__0) - self.state = 1905 + self.state = 2009 self._errHandler.sync(self) _la = self._input.LA(1) - while (((_la) & ~0x3f) == 0 and ((1 << _la) & -35253897527552) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & 31457023) != 0): - self.state = 1902 + while (((_la) & ~0x3f) == 0 and ((1 << _la) & -141015588143360) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & 4026523647) != 0): + self.state = 2006 self.key_value() - self.state = 1907 + self.state = 2011 self._errHandler.sync(self) _la = self._input.LA(1) - self.state = 1908 + self.state = 2012 self.match(PBXProjParser.T__1) - self.state = 1909 + self.state = 2013 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -13209,29 +13948,29 @@ def exitRule(self, listener:ParseTreeListener): def system_capabilities(self): localctx = PBXProjParser.System_capabilitiesContext(self, self._ctx, self.state) - self.enterRule(localctx, 374, self.RULE_system_capabilities) + self.enterRule(localctx, 396, self.RULE_system_capabilities) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1911 + self.state = 2015 self.match(PBXProjParser.SYSTEM_CAPABILITIES) - self.state = 1912 + self.state = 2016 self.match(PBXProjParser.T__2) - self.state = 1913 + self.state = 2017 self.match(PBXProjParser.T__0) - self.state = 1917 + self.state = 2021 self._errHandler.sync(self) _la = self._input.LA(1) - while (((_la) & ~0x3f) == 0 and ((1 << _la) & -35253897527552) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & 31457023) != 0): - self.state = 1914 + while (((_la) & ~0x3f) == 0 and ((1 << _la) & -141015588143360) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & 4026523647) != 0): + self.state = 2018 self.key_value() - self.state = 1919 + self.state = 2023 self._errHandler.sync(self) _la = self._input.LA(1) - self.state = 1920 + self.state = 2024 self.match(PBXProjParser.T__1) - self.state = 1921 + self.state = 2025 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -13272,16 +14011,16 @@ def exitRule(self, listener:ParseTreeListener): def current_version(self): localctx = PBXProjParser.Current_versionContext(self, self._ctx, self.state) - self.enterRule(localctx, 376, self.RULE_current_version) + self.enterRule(localctx, 398, self.RULE_current_version) try: self.enterOuterAlt(localctx, 1) - self.state = 1923 + self.state = 2027 self.match(PBXProjParser.CURRENT_VERSION) - self.state = 1924 + self.state = 2028 self.match(PBXProjParser.T__2) - self.state = 1925 + self.state = 2029 self.match(PBXProjParser.REFERENCE) - self.state = 1926 + self.state = 2030 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -13322,16 +14061,16 @@ def exitRule(self, listener:ParseTreeListener): def version_group_type(self): localctx = PBXProjParser.Version_group_typeContext(self, self._ctx, self.state) - self.enterRule(localctx, 378, self.RULE_version_group_type) + self.enterRule(localctx, 400, self.RULE_version_group_type) try: self.enterOuterAlt(localctx, 1) - self.state = 1928 + self.state = 2032 self.match(PBXProjParser.VERSION_GROUP_TYPE) - self.state = 1929 + self.state = 2033 self.match(PBXProjParser.T__2) - self.state = 1930 + self.state = 2034 self.match(PBXProjParser.NON_QUOTED_STRING) - self.state = 1931 + self.state = 2035 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -13373,16 +14112,16 @@ def exitRule(self, listener:ParseTreeListener): def class_prefix(self): localctx = PBXProjParser.Class_prefixContext(self, self._ctx, self.state) - self.enterRule(localctx, 380, self.RULE_class_prefix) + self.enterRule(localctx, 402, self.RULE_class_prefix) try: self.enterOuterAlt(localctx, 1) - self.state = 1933 + self.state = 2037 self.match(PBXProjParser.CLASSPREFIX) - self.state = 1934 + self.state = 2038 self.match(PBXProjParser.T__2) - self.state = 1935 + self.state = 2039 self.str_number_variable() - self.state = 1936 + self.state = 2040 self.match(PBXProjParser.T__3) except RecognitionException as re: localctx.exception = re @@ -13436,39 +14175,39 @@ def exitRule(self, listener:ParseTreeListener): def any_string(self): localctx = PBXProjParser.Any_stringContext(self, self._ctx, self.state) - self.enterRule(localctx, 382, self.RULE_any_string) + self.enterRule(localctx, 404, self.RULE_any_string) try: - self.state = 1944 + self.state = 2048 self._errHandler.sync(self) token = self._input.LA(1) - if token in [151]: + if token in [158]: self.enterOuterAlt(localctx, 1) - self.state = 1938 + self.state = 2042 self.match(PBXProjParser.NON_QUOTED_STRING) pass - elif token in [150]: + elif token in [157]: self.enterOuterAlt(localctx, 2) - self.state = 1939 + self.state = 2043 self.match(PBXProjParser.QUOTED_STRING) pass elif token in [18]: self.enterOuterAlt(localctx, 3) - self.state = 1940 + self.state = 2044 self.match(PBXProjParser.UNDERSCORE) pass elif token in [10]: self.enterOuterAlt(localctx, 4) - self.state = 1941 + self.state = 2045 self.match(PBXProjParser.DASH) pass elif token in [11]: self.enterOuterAlt(localctx, 5) - self.state = 1942 + self.state = 2046 self.match(PBXProjParser.DOT) pass - elif token in [8, 9, 12, 14, 15, 16, 20, 21, 22, 23, 24, 25, 26, 27, 30, 31, 32, 33, 34, 35, 37, 38, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148]: + elif token in [8, 9, 12, 14, 15, 16, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155]: self.enterOuterAlt(localctx, 6) - self.state = 1943 + self.state = 2047 self.any_token() pass else: @@ -13517,24 +14256,24 @@ def exitRule(self, listener:ParseTreeListener): def str_number_variable(self): localctx = PBXProjParser.Str_number_variableContext(self, self._ctx, self.state) - self.enterRule(localctx, 384, self.RULE_str_number_variable) + self.enterRule(localctx, 406, self.RULE_str_number_variable) try: - self.state = 1949 + self.state = 2053 self._errHandler.sync(self) token = self._input.LA(1) - if token in [8, 9, 10, 11, 12, 14, 15, 16, 18, 20, 21, 22, 23, 24, 25, 26, 27, 30, 31, 32, 33, 34, 35, 37, 38, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 150, 151]: + if token in [8, 9, 10, 11, 12, 14, 15, 16, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 157, 158]: self.enterOuterAlt(localctx, 1) - self.state = 1946 + self.state = 2050 self.any_string() pass elif token in [13]: self.enterOuterAlt(localctx, 2) - self.state = 1947 + self.state = 2051 self.match(PBXProjParser.NUMBER) pass - elif token in [152]: + elif token in [159]: self.enterOuterAlt(localctx, 3) - self.state = 1948 + self.state = 2052 self.match(PBXProjParser.VARIABLE) pass else: @@ -13595,6 +14334,12 @@ def PBX_COPY_FILES_BUILD_PHASE(self): def PBX_FILE_REFERENCE(self): return self.getToken(PBXProjParser.PBX_FILE_REFERENCE, 0) + def PBX_FILE_SYSTEM_SYNCHRONIZED_BUILD_FILE_EXCEPTION_SET(self): + return self.getToken(PBXProjParser.PBX_FILE_SYSTEM_SYNCHRONIZED_BUILD_FILE_EXCEPTION_SET, 0) + + def PBX_FILE_SYSTEM_SYNCHRONIZED_ROOT_GROUP(self): + return self.getToken(PBXProjParser.PBX_FILE_SYSTEM_SYNCHRONIZED_ROOT_GROUP, 0) + def PBX_FRAMEWORKS_BUILD_PHASE(self): return self.getToken(PBXProjParser.PBX_FRAMEWORKS_BUILD_PHASE, 0) @@ -13625,6 +14370,9 @@ def PBX_TARGET_DEPENDENCY(self): def PBX_VARIANT_GROUP(self): return self.getToken(PBXProjParser.PBX_VARIANT_GROUP, 0) + def PREFERRED_PROJECT_OBJECT_VERSION(self): + return self.getToken(PBXProjParser.PREFERRED_PROJECT_OBJECT_VERSION, 0) + def XC_BUILD_CONFIGURATION(self): return self.getToken(PBXProjParser.XC_BUILD_CONFIGURATION, 0) @@ -13667,6 +14415,12 @@ def COMMENTS(self): def EXPLICIT_FILE_TYPE(self): return self.getToken(PBXProjParser.EXPLICIT_FILE_TYPE, 0) + def EXPLICIT_FILE_TYPES(self): + return self.getToken(PBXProjParser.EXPLICIT_FILE_TYPES, 0) + + def EXPLICIT_FOLDERS(self): + return self.getToken(PBXProjParser.EXPLICIT_FOLDERS, 0) + def LAST_KNOWN_FILE_TYPE(self): return self.getToken(PBXProjParser.LAST_KNOWN_FILE_TYPE, 0) @@ -13943,6 +14697,12 @@ def CURRENT_VERSION(self): def VERSION_GROUP_TYPE(self): return self.getToken(PBXProjParser.VERSION_GROUP_TYPE, 0) + def MEMBERSHIP_EXCEPTIONS(self): + return self.getToken(PBXProjParser.MEMBERSHIP_EXCEPTIONS, 0) + + def EXCEPTIONS(self): + return self.getToken(PBXProjParser.EXCEPTIONS, 0) + def CLASSPREFIX(self): return self.getToken(PBXProjParser.CLASSPREFIX, 0) @@ -13963,13 +14723,13 @@ def exitRule(self, listener:ParseTreeListener): def any_token(self): localctx = PBXProjParser.Any_tokenContext(self, self._ctx, self.state) - self.enterRule(localctx, 386, self.RULE_any_token) + self.enterRule(localctx, 408, self.RULE_any_token) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1951 + self.state = 2055 _la = self._input.LA(1) - if not((((_la) & ~0x3f) == 0 and ((1 << _la) & -35253897800960) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & 2096895) != 0)): + if not((((_la) & ~0x3f) == 0 and ((1 << _la) & -141015588416768) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & 268427263) != 0)): self._errHandler.recoverInline(self) else: self._errHandler.reportMatch(self) diff --git a/tests/ok/020.pbxproj b/tests/ok/020.pbxproj new file mode 100644 index 0000000..5763749 --- /dev/null +++ b/tests/ok/020.pbxproj @@ -0,0 +1,655 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 73; + objects = { + +/* Begin PBXBuildFile section */ + 3E1468082C39020A00BA1C9C /* ScoreTallyUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E1468072C39020A00BA1C9C /* ScoreTallyUITests.swift */; }; + 3E1468112C39022400BA1C9C /* SnapshotHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E1468102C39021F00BA1C9C /* SnapshotHelper.swift */; }; + 3E7D82682C3892C4006B36EB /* ScoreTallyApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E7D82672C3892C4006B36EB /* ScoreTallyApp.swift */; }; + 3E7D826E2C3892C6006B36EB /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 3E7D826D2C3892C6006B36EB /* Assets.xcassets */; }; + 3E7D82712C3892C6006B36EB /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 3E7D82702C3892C6006B36EB /* Preview Assets.xcassets */; }; + 3E7D829F2C38DA5F006B36EB /* Localizable.xcstrings in Resources */ = {isa = PBXBuildFile; fileRef = 3E7D829E2C38DA5F006B36EB /* Localizable.xcstrings */; }; + 3E7D82A12C38E196006B36EB /* Splash.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3E7D82A02C38E196006B36EB /* Splash.storyboard */; platformFilter = ios; }; + 3EC6A8142C3A05BE009EBA83 /* InfoPlist.xcstrings in Resources */ = {isa = PBXBuildFile; fileRef = 3EC6A8132C3A05BE009EBA83 /* InfoPlist.xcstrings */; }; + 3EC6A8162C3A1E5B009EBA83 /* Snapshots.xctestplan in Resources */ = {isa = PBXBuildFile; fileRef = 3EC6A8152C3A1E5B009EBA83 /* Snapshots.xctestplan */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 3E14680B2C39020A00BA1C9C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 3E7D825C2C3892C4006B36EB /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3E7D82632C3892C4006B36EB; + remoteInfo = ScoreTally; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 3E1468052C39020A00BA1C9C /* ScoreTallyUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ScoreTallyUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 3E1468072C39020A00BA1C9C /* ScoreTallyUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ScoreTallyUITests.swift; sourceTree = ""; }; + 3E1468102C39021F00BA1C9C /* SnapshotHelper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SnapshotHelper.swift; sourceTree = ""; }; + 3E7D82642C3892C4006B36EB /* ScoreTally.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ScoreTally.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 3E7D82672C3892C4006B36EB /* ScoreTallyApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ScoreTallyApp.swift; sourceTree = ""; }; + 3E7D826D2C3892C6006B36EB /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 3E7D82702C3892C6006B36EB /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; + 3E7D829E2C38DA5F006B36EB /* Localizable.xcstrings */ = {isa = PBXFileReference; lastKnownFileType = text.json.xcstrings; path = Localizable.xcstrings; sourceTree = ""; }; + 3E7D82A02C38E196006B36EB /* Splash.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = Splash.storyboard; sourceTree = ""; }; + 3EC6A8122C3A037E009EBA83 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + 3EC6A8132C3A05BE009EBA83 /* InfoPlist.xcstrings */ = {isa = PBXFileReference; lastKnownFileType = text.json.xcstrings; path = InfoPlist.xcstrings; sourceTree = ""; }; + 3EC6A8152C3A1E5B009EBA83 /* Snapshots.xctestplan */ = {isa = PBXFileReference; lastKnownFileType = text; path = Snapshots.xctestplan; sourceTree = ""; }; + 3EC6A8172C3A2CEA009EBA83 /* ScoreTally.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = ScoreTally.entitlements; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFileSystemSynchronizedBuildFileExceptionSet section */ + 3E7D827A2C3892FB006B36EB /* PBXFileSystemSynchronizedBuildFileExceptionSet */ = { + isa = PBXFileSystemSynchronizedBuildFileExceptionSet; + membershipExceptions = ( + GameListView.swift, + GameListViewCell.swift, + GameView.swift, + GameViewPlayerCellView.swift, + ScoreRoundPopover.swift, + ); + target = 3E7D82632C3892C4006B36EB /* ScoreTally */; + }; + 3E7D82892C389A06006B36EB /* PBXFileSystemSynchronizedBuildFileExceptionSet */ = { + isa = PBXFileSystemSynchronizedBuildFileExceptionSet; + membershipExceptions = ( + Game.swift, + Player.swift, + ); + target = 3E7D82632C3892C4006B36EB /* ScoreTally */; + }; + 3E7D828C2C38A0DD006B36EB /* PBXFileSystemSynchronizedBuildFileExceptionSet */ = { + isa = PBXFileSystemSynchronizedBuildFileExceptionSet; + membershipExceptions = ( + RankingEmoji.swift, + SamplePreview.swift, + ); + target = 3E7D82632C3892C4006B36EB /* ScoreTally */; + }; +/* End PBXFileSystemSynchronizedBuildFileExceptionSet section */ + +/* Begin PBXFileSystemSynchronizedRootGroup section */ + 3E7D82792C3892F2006B36EB /* Views */ = { + isa = PBXFileSystemSynchronizedRootGroup; + exceptions = ( + 3E7D827A2C3892FB006B36EB /* PBXFileSystemSynchronizedBuildFileExceptionSet */, + ); + explicitFileTypes = {}; + explicitFolders = ( + ); + path = Views; + sourceTree = ""; + }; + 3E7D827D2C3899F8006B36EB /* Helpers */ = { + isa = PBXFileSystemSynchronizedRootGroup; + exceptions = ( + 3E7D828C2C38A0DD006B36EB /* PBXFileSystemSynchronizedBuildFileExceptionSet */, + ); + explicitFileTypes = {}; + explicitFolders = ( + ); + path = Helpers; + sourceTree = ""; + }; + 3E7D82862C389A06006B36EB /* Models */ = { + isa = PBXFileSystemSynchronizedRootGroup; + exceptions = ( + 3E7D82892C389A06006B36EB /* PBXFileSystemSynchronizedBuildFileExceptionSet */, + ); + explicitFileTypes = {}; + explicitFolders = ( + ); + path = Models; + sourceTree = ""; + }; +/* End PBXFileSystemSynchronizedRootGroup section */ + +/* Begin PBXFrameworksBuildPhase section */ + 3E1468022C39020A00BA1C9C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7D82612C3892C4006B36EB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 3E1468062C39020A00BA1C9C /* ScoreTallyUITests */ = { + isa = PBXGroup; + children = ( + 3E1468102C39021F00BA1C9C /* SnapshotHelper.swift */, + 3E1468072C39020A00BA1C9C /* ScoreTallyUITests.swift */, + 3EC6A8152C3A1E5B009EBA83 /* Snapshots.xctestplan */, + ); + path = ScoreTallyUITests; + sourceTree = ""; + }; + 3E7D825B2C3892C4006B36EB = { + isa = PBXGroup; + children = ( + 3E7D82662C3892C4006B36EB /* ScoreTally */, + 3E1468062C39020A00BA1C9C /* ScoreTallyUITests */, + 3E7D82652C3892C4006B36EB /* Products */, + ); + sourceTree = ""; + }; + 3E7D82652C3892C4006B36EB /* Products */ = { + isa = PBXGroup; + children = ( + 3E7D82642C3892C4006B36EB /* ScoreTally.app */, + 3E1468052C39020A00BA1C9C /* ScoreTallyUITests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 3E7D82662C3892C4006B36EB /* ScoreTally */ = { + isa = PBXGroup; + children = ( + 3EC6A8172C3A2CEA009EBA83 /* ScoreTally.entitlements */, + 3EC6A8122C3A037E009EBA83 /* Info.plist */, + 3E7D827D2C3899F8006B36EB /* Helpers */, + 3E7D82862C389A06006B36EB /* Models */, + 3E7D82792C3892F2006B36EB /* Views */, + 3E7D82672C3892C4006B36EB /* ScoreTallyApp.swift */, + 3E7D826D2C3892C6006B36EB /* Assets.xcassets */, + 3E7D82A02C38E196006B36EB /* Splash.storyboard */, + 3E7D829C2C38DA0A006B36EB /* Resources */, + 3E7D826F2C3892C6006B36EB /* Preview Content */, + ); + path = ScoreTally; + sourceTree = ""; + }; + 3E7D826F2C3892C6006B36EB /* Preview Content */ = { + isa = PBXGroup; + children = ( + 3E7D82702C3892C6006B36EB /* Preview Assets.xcassets */, + ); + path = "Preview Content"; + sourceTree = ""; + }; + 3E7D829C2C38DA0A006B36EB /* Resources */ = { + isa = PBXGroup; + children = ( + 3E7D829E2C38DA5F006B36EB /* Localizable.xcstrings */, + 3EC6A8132C3A05BE009EBA83 /* InfoPlist.xcstrings */, + ); + path = Resources; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 3E1468042C39020A00BA1C9C /* ScoreTallyUITests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 3E14680D2C39020A00BA1C9C /* Build configuration list for PBXNativeTarget "ScoreTallyUITests" */; + buildPhases = ( + 3E1468012C39020A00BA1C9C /* Sources */, + 3E1468022C39020A00BA1C9C /* Frameworks */, + 3E1468032C39020A00BA1C9C /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 3E14680C2C39020A00BA1C9C /* PBXTargetDependency */, + ); + name = ScoreTallyUITests; + productName = ScoreTallyUITests; + productReference = 3E1468052C39020A00BA1C9C /* ScoreTallyUITests.xctest */; + productType = "com.apple.product-type.bundle.ui-testing"; + }; + 3E7D82632C3892C4006B36EB /* ScoreTally */ = { + isa = PBXNativeTarget; + buildConfigurationList = 3E7D82742C3892C6006B36EB /* Build configuration list for PBXNativeTarget "ScoreTally" */; + buildPhases = ( + 3E7D82602C3892C4006B36EB /* Sources */, + 3E6EDBDD2C3A433E00733481 /* ShellScript */, + 3E7D82612C3892C4006B36EB /* Frameworks */, + 3E7D82622C3892C4006B36EB /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = ScoreTally; + productName = ScoreTally; + productReference = 3E7D82642C3892C4006B36EB /* ScoreTally.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 3E7D825C2C3892C4006B36EB /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastSwiftUpdateCheck = 1600; + LastUpgradeCheck = 1600; + TargetAttributes = { + 3E1468042C39020A00BA1C9C = { + CreatedOnToolsVersion = 16.0; + TestTargetID = 3E7D82632C3892C4006B36EB; + }; + 3E7D82632C3892C4006B36EB = { + CreatedOnToolsVersion = 16.0; + }; + }; + }; + buildConfigurationList = 3E7D825F2C3892C4006B36EB /* Build configuration list for PBXProject "Score Tally" */; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + es, + fr, + de, + ja, + "zh-Hans", + ru, + it, + "zh-Hant", + ); + mainGroup = 3E7D825B2C3892C4006B36EB; + preferredProjectObjectVersion = 73; + productRefGroup = 3E7D82652C3892C4006B36EB /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 3E7D82632C3892C4006B36EB /* ScoreTally */, + 3E1468042C39020A00BA1C9C /* ScoreTallyUITests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 3E1468032C39020A00BA1C9C /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 3EC6A8162C3A1E5B009EBA83 /* Snapshots.xctestplan in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7D82622C3892C4006B36EB /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 3E7D82712C3892C6006B36EB /* Preview Assets.xcassets in Resources */, + 3EC6A8142C3A05BE009EBA83 /* InfoPlist.xcstrings in Resources */, + 3E7D829F2C38DA5F006B36EB /* Localizable.xcstrings in Resources */, + 3E7D826E2C3892C6006B36EB /* Assets.xcassets in Resources */, + 3E7D82A12C38E196006B36EB /* Splash.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3E6EDBDD2C3A433E00733481 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + outputFileListPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "if [[ \"$(uname -m)\" == arm64 ]]\nthen\n export PATH=\"/opt/homebrew/bin:$PATH\"\nfi\n\nif command -v swiftlint >/dev/null 2>&1\nthen\n swiftlint\nelse\n echo \"warning: `swiftlint` command not found - See https://github.com/realm/SwiftLint#installation for installation instructions.\"\nfi\n"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 3E1468012C39020A00BA1C9C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 3E1468082C39020A00BA1C9C /* ScoreTallyUITests.swift in Sources */, + 3E1468112C39022400BA1C9C /* SnapshotHelper.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7D82602C3892C4006B36EB /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 3E7D82682C3892C4006B36EB /* ScoreTallyApp.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 3E14680C2C39020A00BA1C9C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 3E7D82632C3892C4006B36EB /* ScoreTally */; + targetProxy = 3E14680B2C39020A00BA1C9C /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 3E14680E2C39020A00BA1C9C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = 69RV8YV62P; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.hbiede.ScoreTallyUITests; + PRODUCT_NAME = "$(TARGET_NAME)"; + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = ScoreTally; + }; + name = Debug; + }; + 3E14680F2C39020A00BA1C9C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = 69RV8YV62P; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.hbiede.ScoreTallyUITests; + PRODUCT_NAME = "$(TARGET_NAME)"; + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = ScoreTally; + }; + name = Release; + }; + 3E7D82722C3892C6006B36EB /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + GCC_C_LANGUAGE_STANDARD = gnu17; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 3E7D82732C3892C6006B36EB /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + GCC_C_LANGUAGE_STANDARD = gnu17; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_EMIT_LOC_STRINGS = YES; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 3E7D82752C3892C6006B36EB /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES; + CODE_SIGN_ENTITLEMENTS = ScoreTally/ScoreTally.entitlements; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 3; + DEVELOPMENT_ASSET_PATHS = "ScoreTally/Helpers/SamplePreview.swift ScoreTally/Preview\\ Content"; + DEVELOPMENT_TEAM = 69RV8YV62P; + ENABLE_PREVIEWS = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_WARN_PEDANTIC = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = ScoreTally/Info.plist; + INFOPLIST_KEY_CFBundleDisplayName = ScoreTally; + INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.utilities"; + INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchScreen_Generation = YES; + INFOPLIST_KEY_UILaunchStoryboardName = Splash.storyboard; + INFOPLIST_KEY_UIStatusBarHidden = NO; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.3; + PRODUCT_BUNDLE_IDENTIFIER = com.hbiede.ScoreTally; + PRODUCT_NAME = "$(TARGET_NAME)"; + REGISTER_APP_GROUPS = YES; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTS_MACCATALYST = NO; + SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_STRICT_CONCURRENCY = complete; + SWIFT_UPCOMING_FEATURE_CONCISE_MAGIC_FILE = YES; + SWIFT_UPCOMING_FEATURE_DEPRECATE_APPLICATION_MAIN = YES; + SWIFT_UPCOMING_FEATURE_DISABLE_OUTWARD_ACTOR_ISOLATION = YES; + SWIFT_UPCOMING_FEATURE_EXISTENTIAL_ANY = YES; + SWIFT_UPCOMING_FEATURE_FORWARD_TRAILING_CLOSURES = YES; + SWIFT_UPCOMING_FEATURE_GLOBAL_CONCURRENCY = YES; + SWIFT_UPCOMING_FEATURE_IMPLICIT_OPEN_EXISTENTIALS = YES; + SWIFT_UPCOMING_FEATURE_IMPORT_OBJC_FORWARD_DECLS = YES; + SWIFT_UPCOMING_FEATURE_INFER_SENDABLE_FROM_CAPTURES = YES; + SWIFT_UPCOMING_FEATURE_INTERNAL_IMPORTS_BY_DEFAULT = YES; + SWIFT_UPCOMING_FEATURE_ISOLATED_DEFAULT_VALUES = YES; + SWIFT_UPCOMING_FEATURE_REGION_BASED_ISOLATION = YES; + SWIFT_VERSION = 6.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 3E7D82762C3892C6006B36EB /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES; + CODE_SIGN_ENTITLEMENTS = ScoreTally/ScoreTally.entitlements; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 3; + DEVELOPMENT_ASSET_PATHS = "ScoreTally/Helpers/SamplePreview.swift ScoreTally/Preview\\ Content"; + DEVELOPMENT_TEAM = 69RV8YV62P; + ENABLE_PREVIEWS = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_WARN_PEDANTIC = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = ScoreTally/Info.plist; + INFOPLIST_KEY_CFBundleDisplayName = ScoreTally; + INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.utilities"; + INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchScreen_Generation = YES; + INFOPLIST_KEY_UILaunchStoryboardName = Splash.storyboard; + INFOPLIST_KEY_UIStatusBarHidden = NO; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.3; + PRODUCT_BUNDLE_IDENTIFIER = com.hbiede.ScoreTally; + PRODUCT_NAME = "$(TARGET_NAME)"; + REGISTER_APP_GROUPS = YES; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTS_MACCATALYST = NO; + SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_STRICT_CONCURRENCY = complete; + SWIFT_UPCOMING_FEATURE_CONCISE_MAGIC_FILE = YES; + SWIFT_UPCOMING_FEATURE_DEPRECATE_APPLICATION_MAIN = YES; + SWIFT_UPCOMING_FEATURE_DISABLE_OUTWARD_ACTOR_ISOLATION = YES; + SWIFT_UPCOMING_FEATURE_EXISTENTIAL_ANY = YES; + SWIFT_UPCOMING_FEATURE_FORWARD_TRAILING_CLOSURES = YES; + SWIFT_UPCOMING_FEATURE_GLOBAL_CONCURRENCY = YES; + SWIFT_UPCOMING_FEATURE_IMPLICIT_OPEN_EXISTENTIALS = YES; + SWIFT_UPCOMING_FEATURE_IMPORT_OBJC_FORWARD_DECLS = YES; + SWIFT_UPCOMING_FEATURE_INFER_SENDABLE_FROM_CAPTURES = YES; + SWIFT_UPCOMING_FEATURE_INTERNAL_IMPORTS_BY_DEFAULT = YES; + SWIFT_UPCOMING_FEATURE_ISOLATED_DEFAULT_VALUES = YES; + SWIFT_UPCOMING_FEATURE_REGION_BASED_ISOLATION = YES; + SWIFT_VERSION = 6.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 3E14680D2C39020A00BA1C9C /* Build configuration list for PBXNativeTarget "ScoreTallyUITests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 3E14680E2C39020A00BA1C9C /* Debug */, + 3E14680F2C39020A00BA1C9C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 3E7D825F2C3892C4006B36EB /* Build configuration list for PBXProject "Score Tally" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 3E7D82722C3892C6006B36EB /* Debug */, + 3E7D82732C3892C6006B36EB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 3E7D82742C3892C6006B36EB /* Build configuration list for PBXNativeTarget "ScoreTally" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 3E7D82752C3892C6006B36EB /* Debug */, + 3E7D82762C3892C6006B36EB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 3E7D825C2C3892C4006B36EB /* Project object */; +} \ No newline at end of file