diff --git a/code/__DEFINES/xeno.dm b/code/__DEFINES/xeno.dm index 878a591357..f4da924dfb 100644 --- a/code/__DEFINES/xeno.dm +++ b/code/__DEFINES/xeno.dm @@ -157,7 +157,7 @@ #define PYLON_COVERAGE_MULT 1.5 -#define WEED_BASE_GROW_SPEED (5 SECONDS) +#define WEED_BASE_GROW_SPEED 1 // We gave the weeds plant food #define WEED_BASE_DECAY_SPEED (10 SECONDS) /// The time you must be dead to join as a xeno larva diff --git a/code/_onclick/hud/fullscreen.dm b/code/_onclick/hud/fullscreen.dm index b0e2d2b57e..2b5b5a22b6 100644 --- a/code/_onclick/hud/fullscreen.dm +++ b/code/_onclick/hud/fullscreen.dm @@ -4,6 +4,11 @@ var/list/fullscreens = list() /mob/proc/overlay_fullscreen(category, type, severity) + if(ishuman(src)) + var/mob/living/carbon/human/human_mob = src + if(human_mob.in_cutscene && (category != "simulacrum_ko")) + return + var/atom/movable/screen/fullscreen/screen = fullscreens[category] if (!screen || screen.type != type) // needs to be recreated diff --git a/code/_onclick/hud/hud.dm b/code/_onclick/hud/hud.dm index 215e228fdd..25cad2dac8 100644 --- a/code/_onclick/hud/hud.dm +++ b/code/_onclick/hud/hud.dm @@ -264,11 +264,17 @@ /datum/hud/proc/persistent_inventory_update() return +/mob + var/hudswitch_blocked = FALSE + //Triggered when F12 is pressed (Unless someone changed something in the DMF) /mob/verb/button_pressed_F12() set name = "F12" set hidden = TRUE + if(hudswitch_blocked) + return + if(hud_used && client) hud_used.show_hud() to_chat(usr, SPAN_INFO("Switched HUD mode. Press F12 to toggle.")) diff --git a/code/datums/helper_datums/getrev.dm b/code/datums/helper_datums/getrev.dm index a2932532e7..b1ac3f317b 100644 --- a/code/datums/helper_datums/getrev.dm +++ b/code/datums/helper_datums/getrev.dm @@ -55,10 +55,10 @@ GLOBAL_DATUM_INIT(revdata, /datum/getrev, new) set name = "Show Server Revision" set desc = "Check the current server code revision" - var/list/msg = list("") + //var/list/msg = list("") // Round ID - msg += "BYOND Version: [world.byond_version].[world.byond_build]" + /*msg += "BYOND Version: [world.byond_version].[world.byond_build]" if(DM_VERSION != world.byond_version || DM_BUILD != world.byond_build) msg += "Compiled with BYOND Version: [DM_VERSION].[DM_BUILD]" @@ -81,4 +81,5 @@ GLOBAL_DATUM_INIT(revdata, /datum/getrev, new) msg += "DMAPI version: [api_version.raw_parameter]" // Game mode odds - to_chat(src, SPAN_INFO(msg.Join("
"))) + to_chat(src, SPAN_INFO(msg.Join("
")))*/ + return diff --git a/code/datums/mob_hud.dm b/code/datums/mob_hud.dm index fdd4435d12..63d2b05d1b 100644 --- a/code/datums/mob_hud.dm +++ b/code/datums/mob_hud.dm @@ -93,7 +93,7 @@ var/list/datum/mob_hud/huds = list( // makes the client able to 'see' them whenever they're offscreen // somewhat confusingly /datum/mob_hud/proc/add_to_single_hud(mob/user, mob/target) - if(!user.client) + if(!user?.client) return for(var/i in hud_icons) if(i in target.hud_list) diff --git a/code/game/objects/effects/landmarks/structure_spawners/structure_spawner.dm b/code/game/objects/effects/landmarks/structure_spawners/structure_spawner.dm index fbbafacee3..fa7cd41ff7 100644 --- a/code/game/objects/effects/landmarks/structure_spawners/structure_spawner.dm +++ b/code/game/objects/effects/landmarks/structure_spawners/structure_spawner.dm @@ -19,7 +19,7 @@ /// Check validity of spawning this /obj/effect/landmark/structure_spawner/proc/validate() - return (mode_flags & SSticker.mode?.flags_round_type) + return TRUE /// Return effective location to spawn at /obj/effect/landmark/structure_spawner/proc/get_spawn_location() diff --git a/code/game/objects/items/stacks/sheets/mineral.dm b/code/game/objects/items/stacks/sheets/mineral.dm index 4f7ec74633..9dd84eff33 100644 --- a/code/game/objects/items/stacks/sheets/mineral.dm +++ b/code/game/objects/items/stacks/sheets/mineral.dm @@ -324,3 +324,11 @@ GLOBAL_LIST_INIT(iron_recipes, list ( \ perunit = 2000 stack_id = "chitin" black_market_value = 35 + +/obj/item/stack/sheet/mineral/chitin/metal + name = "unknown metal" + desc = "An unknown, dark metal." + singular_name = "unknown metal sheet" + icon_state = "sheet-chitin" + sheettype = "unknownmetal" + stack_id = "unknownmetal" diff --git a/code/game/world.dm b/code/game/world.dm index 77d48d3593..04b5402588 100644 --- a/code/game/world.dm +++ b/code/game/world.dm @@ -290,9 +290,10 @@ var/world_topic_spam_protect_time = world.timeofday join_motd = file2text("config/motd.txt") /world/proc/load_tm_message() - var/datum/getrev/revdata = GLOB.revdata - if(revdata.testmerge.len) - current_tms = revdata.GetTestMergeInfo() + //var/datum/getrev/revdata = GLOB.revdata + //if(revdata.testmerge.len) + // current_tms = revdata.GetTestMergeInfo() + return /world/proc/update_status() //Note: Hub content is limited to 254 characters, including limited HTML/CSS. diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 50cb19a7e9..aa51b6bac9 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -161,7 +161,19 @@ var/list/admin_verbs_major_event = list( /client/proc/enable_podlauncher, /client/proc/change_taskbar_icon, /client/proc/change_weather, - /client/proc/admin_blurb + /client/proc/admin_blurb, + /client/proc/slow_everyone_verb, + /client/proc/superslow_everyone_verb, + /client/proc/ko_everyone_verb, + /client/proc/pick_simulation_verb, + /client/proc/toggle_cutscene_verb, + /client/proc/decay_old_simulation_cutscene_verb, + /client/proc/go_to_next_simulation_verb, + /client/proc/boss_roar_verb, + /client/proc/boss_finish_verb, + /client/proc/end_game_good, + /client/proc/end_game_bad, + /client/proc/close_all_inventories, ) var/list/admin_verbs_spawn = list( diff --git a/code/modules/clothing/suits/marine_armor.dm b/code/modules/clothing/suits/marine_armor.dm index 93160e68ff..210d2a11ca 100644 --- a/code/modules/clothing/suits/marine_armor.dm +++ b/code/modules/clothing/suits/marine_armor.dm @@ -427,7 +427,7 @@ if(is_type_in_list(equipping_item, smartgun_back)) return - + . = COMPONENT_HUMAN_CANCEL_ATTEMPT_EQUIP if(equipping_item.flags_equip_slot == SLOT_BACK) diff --git a/code/modules/cm_marines/equipment/maps.dm b/code/modules/cm_marines/equipment/maps.dm index a6dd0660f4..5be9d66428 100644 --- a/code/modules/cm_marines/equipment/maps.dm +++ b/code/modules/cm_marines/equipment/maps.dm @@ -173,7 +173,7 @@ GLOBAL_LIST_INIT_TYPED(map_type_list, /obj/item/map, setup_all_maps()) /obj/item/map/current_map /obj/item/map/current_map/Initialize(mapload, ...) - . = ..() + /*. = ..() var/map_name = SSmapping.configs[GROUND_MAP].map_name var/obj/item/map/map = GLOB.map_type_list[map_name] @@ -182,7 +182,8 @@ GLOBAL_LIST_INIT_TYPED(map_type_list, /obj/item/map, setup_all_maps()) name = map.name desc = map.desc html_link = map.html_link - color = map.color + color = map.color*/ + return ..() // Landmark - Used for mapping. Will spawn the appropriate map for each gamemode (LV map items will spawn when LV is the gamemode, etc) /obj/effect/landmark/map_item diff --git a/code/modules/simulacrum/simulacrumcutscenes.dm b/code/modules/simulacrum/simulacrumcutscenes.dm new file mode 100644 index 0000000000..4174615100 --- /dev/null +++ b/code/modules/simulacrum/simulacrumcutscenes.dm @@ -0,0 +1,213 @@ +/mob/living/carbon/human + var/in_cutscene = FALSE + +/proc/simulacrum_text_1(mob/living/carbon/human/human) + human.in_cutscene = TRUE + var/atom/movable/screen/text/screen_text/text_box = new /atom/movable/screen/text/screen_text/simulacrum_message() + text_box.text_to_play = "Somewhere..." + text_box.player = human.client + text_box.color = "#8a2398" + LAZYADD(human.client.screen_texts, text_box) + text_box.play_to_client() + sleep(1.5 SECONDS) + var/atom/movable/screen/text/screen_text/body = new /atom/movable/screen/text/screen_text/simulacrum_message/body() + body.text_to_play = "You exist in a black, impermeable void. Exist, for there is no other word to describe it. You cannot feel any sort of body or other physical attachments, and you cannot see anything but black. Despite all this, you are undeniably conscious. From this sleepless dream of nothingness, will you wake up, you wonder?" + body.player = human.client + body.color = "#9f53a9" + LAZYADD(human.client.screen_texts, body) + body.play_to_client() + sleep(5 SECONDS) + var/atom/movable/screen/text/screen_text/body2 = new /atom/movable/screen/text/screen_text/simulacrum_message/body/secondary() + body2.text_to_play = "After three seconds of eternity pass, you awaken. Perhaps it is over." // "There’s an emperor, and he asks the shepherd’s boy how many seconds in eternity. And the shepherd’s boy says, 'There’s a mountain of pure diamond. It takes an hour to climb it and an hour to go around it, and every hundred years a little bird comes and sharpens its beak on the diamond mountain. And when the entire mountain is chiseled away, the first second of eternity will have passed.'" + body2.player = human.client + body2.color = "#9f53a9" + LAZYADD(human.client.screen_texts, body2) + body2.play_to_client() + sleep(5 SECONDS) + text_box.after_play() + body.after_play() + body2.after_play() + teleport_to_simulation(human, TRUE, TRUE) + human.in_cutscene = FALSE + +/proc/simulacrum_text_2(mob/living/carbon/human/human, should_roar) + human.in_cutscene = TRUE + var/atom/movable/screen/text/screen_text/text_box = new /atom/movable/screen/text/screen_text/simulacrum_message() + text_box.text_to_play = "Back here again." + text_box.player = human.client + text_box.color = "#8a2398" + LAZYADD(human.client.screen_texts, text_box) + text_box.play_to_client() + sleep(1.5 SECONDS) + var/atom/movable/screen/text/screen_text/body = new /atom/movable/screen/text/screen_text/simulacrum_message/body() + body.text_to_play = "You died, you know that for certain. You vividly remember your grisly fate, and you suspect you will for a long time. Now, though, you're in an abyss unending once more. And there is nothing to do but wait." + body.player = human.client + body.color = "#9f53a9" + LAZYADD(human.client.screen_texts, body) + body.play_to_client() + sleep(4 SECONDS) + var/atom/movable/screen/text/screen_text/body2 = new /atom/movable/screen/text/screen_text/simulacrum_message/body/secondary() + body2.text_to_play = "An unknown amount of time passes." + body2.player = human.client + body2.color = "#9f53a9" + LAZYADD(human.client.screen_texts, body2) + body2.play_to_client() + sleep(3 SECONDS) + text_box.after_play() + body.after_play() + body2.after_play() + teleport_to_simulation(human, should_roar, FALSE) + human.in_cutscene = FALSE + +/proc/simulacrum_text_3(mob/living/carbon/human/human, should_roar) + human.in_cutscene = TRUE + var/atom/movable/screen/text/screen_text/text_box = new /atom/movable/screen/text/screen_text/simulacrum_message() + text_box.text_to_play = "Pain unending." + text_box.player = human.client + text_box.color = "#8a2398" + LAZYADD(human.client.screen_texts, text_box) + text_box.play_to_client() + sleep(1.5 SECONDS) + var/atom/movable/screen/text/screen_text/body = new /atom/movable/screen/text/screen_text/simulacrum_message/body() + body.text_to_play = "Another very-real death, and another portion of time spent in the void, alone with naught but your thoughts." + body.player = human.client + body.color = "#9f53a9" + LAZYADD(human.client.screen_texts, body) + body.play_to_client() + sleep(4 SECONDS) + text_box.after_play() + body.after_play() + teleport_to_simulation(human, should_roar, FALSE) + human.in_cutscene = FALSE + +/proc/simulacrum_text_4(mob/living/carbon/human/human, should_roar) + human.in_cutscene = TRUE + var/atom/movable/screen/text/screen_text/text_box = new /atom/movable/screen/text/screen_text/simulacrum_message() + text_box.text_to_play = "6 Simulations Later..." + text_box.player = human.client + text_box.color = "#8a2398" + LAZYADD(human.client.screen_texts, text_box) + text_box.play_to_client() + sleep(2.5 SECONDS) + text_box.after_play() + teleport_to_simulation(human, should_roar, FALSE) + human.in_cutscene = FALSE + +/proc/simulacrum_text_5(mob/living/carbon/human/human, should_roar) + human.in_cutscene = TRUE + var/atom/movable/screen/text/screen_text/text_box = new /atom/movable/screen/text/screen_text/simulacrum_message() + text_box.text_to_play = "19 Simulations Later..." + text_box.player = human.client + text_box.color = "#8a2398" + LAZYADD(human.client.screen_texts, text_box) + text_box.play_to_client() + sleep(2.5 SECONDS) + text_box.after_play() + teleport_to_simulation(human, should_roar, FALSE) + human.in_cutscene = FALSE + +/proc/simulacrum_text_6(mob/living/carbon/human/human, should_roar) + human.in_cutscene = TRUE + var/atom/movable/screen/text/screen_text/text_box = new /atom/movable/screen/text/screen_text/simulacrum_message() + text_box.text_to_play = "321 Simulations Later..." + text_box.player = human.client + text_box.color = "#8a2398" + LAZYADD(human.client.screen_texts, text_box) + text_box.play_to_client() + sleep(2.5 SECONDS) + text_box.after_play() + teleport_to_simulation(human, should_roar, FALSE) + human.in_cutscene = FALSE + +/proc/simulacrum_text_ending_good(mob/living/carbon/human/human) + human.in_cutscene = TRUE + var/atom/movable/screen/text/screen_text/text_box = new /atom/movable/screen/text/screen_text/simulacrum_message() + text_box.text_to_play = "It's finally over." + text_box.player = human.client + text_box.color = "#233598" + LAZYADD(human.client.screen_texts, text_box) + text_box.play_to_client() + sleep(2.5 SECONDS) + var/atom/movable/screen/text/screen_text/body = new /atom/movable/screen/text/screen_text/simulacrum_message/body() + body.text_to_play = "As the dropship flies through space, your squad doesn't talk much. There's too much to think about, too many battles seen to process." + body.player = human.client + body.color = "#535ca9" + LAZYADD(human.client.screen_texts, body) + body.play_to_client() + sleep(3 SECONDS) + var/atom/movable/screen/text/screen_text/body2 = new /atom/movable/screen/text/screen_text/simulacrum_message/body/secondary() + body2.text_to_play = "The following week is a blur, with countless interviews and medical screenings being done. But life goes on." + body2.player = human.client + body2.color = "#535ca9" + LAZYADD(human.client.screen_texts, body2) + body2.play_to_client() + sleep(3 SECONDS) + var/assembled_fatestring = "" + for(var/fate in GLOB.simulation_controller.fate_list) + assembled_fatestring += "[fate][fate == GLOB.simulation_controller.fate_list[length(GLOB.simulation_controller.fate_list)] ? "" : "
"]" + var/dead_string = english_list(GLOB.simulation_controller.dead_list) + if(length(GLOB.simulation_controller.dead_list)) + assembled_fatestring += "
[dead_string] perished on the planet." + var/atom/movable/screen/text/screen_text/body3 = new /atom/movable/screen/text/screen_text/simulacrum_message/body/fatelist() + body3.text_to_play = assembled_fatestring + body3.player = human.client + body3.color = "#535ca9" + LAZYADD(human.client.screen_texts, body3) + body3.play_to_client() + sleep(5 SECONDS) + text_box.after_play() + body.after_play() + body2.after_play() + body3.after_play() + sleep(7 SECONDS) + simulacrum_text_ending_good_2(human) + +/proc/simulacrum_text_ending_good_2(mob/living/carbon/human/human) + if(!GLOB.simulation_controller.next_simulation) + GLOB.simulation_controller.next_simulation = GLOB.simulation_controller.non_completed_simulations[1][1] + var/atom/movable/screen/text/screen_text/text_box = new /atom/movable/screen/text/screen_text/simulacrum_message() + text_box.text_to_play = "..." + text_box.player = human.client + text_box.color = "#8a2398" + LAZYADD(human.client.screen_texts, text_box) + text_box.play_to_client() + sleep(2.5 SECONDS) + var/atom/movable/screen/text/screen_text/body = new /atom/movable/screen/text/screen_text/simulacrum_message/body() + body.text_to_play = "\"Why am I back here? I'm dead, aren't I?\"" + body.player = human.client + body.color = "#9f53a9" + LAZYADD(human.client.screen_texts, body) + body.play_to_client() + sleep(2.5 SECONDS) + text_box.after_play() + body.after_play() + teleport_to_simulation(human, FALSE, FALSE) + message_admins("END THE ROUND IN A LITTLE TINY BIT") + human.in_cutscene = FALSE + +/proc/simulacrum_text_ending_bad(mob/living/carbon/human/human, should_roar) + human.in_cutscene = TRUE + var/atom/movable/screen/text/screen_text/text_box = new /atom/movable/screen/text/screen_text/simulacrum_message() + text_box.text_to_play = "That was our chance." + text_box.player = human.client + text_box.color = "#8a2398" + LAZYADD(human.client.screen_texts, text_box) + text_box.play_to_client() + sleep(2.5 SECONDS) + var/atom/movable/screen/text/screen_text/body = new /atom/movable/screen/text/screen_text/simulacrum_message/body() + body.text_to_play = "You know it still watches. It simulates, endlessly. A thousand more deaths you may experience, that is certain." + body.player = human.client + body.color = "#9f53a9" + LAZYADD(human.client.screen_texts, body) + body.play_to_client() + sleep(5 SECONDS) + text_box.after_play() + body.after_play() + message_admins("END THE ROUND NOW") + sleep(15 SECONDS) + if(human.client) + winset(human.client, "infowindow", "is-visible=true") + winset(human.client, "outputwindow", "is-visible=true") + winset(human.client, "mainwindow.split", "splitter=400") + human.client.fit_viewport() + human.client.nuke_chat() diff --git a/code/modules/simulacrum/simulacrumevent.dm b/code/modules/simulacrum/simulacrumevent.dm new file mode 100644 index 0000000000..ba9a586eb3 --- /dev/null +++ b/code/modules/simulacrum/simulacrumevent.dm @@ -0,0 +1,188 @@ +//

ARES Post-FTL Report


The USS Rover has detected a distorted signal on the desert planet of LV-739. In accordance with standard procedure, ship has been taken out of FTL travel and crew awakened for possible distress signal. Signal is detected 73.8 meters at heading 98.6 degrees on a Cartesian plane from landing zone.

+ +/turf/open/floor/void + name = "empty space" + desc = "A dark surface with no reflection or sound. Darker than the black of the abyss." + #ifdef CBT + icon = null + icon_state = "" + color = "#000000" + #else + icon = 'icons/turf/floors/floors.dmi' + icon_state = "floor" + #endif + +/turf/open/floor/void/get_examine_text(mob/user) + . = list() + if(desc) + . += desc + return . + +/turf/closed/wall/indestructible/void + name = "filled space" + desc = "A dark, impermeable structure with no reflection or sound." + #ifdef CBT + icon = null + icon_state = "" + color = "#000000" + #else + icon = 'icons/turf/walls/walls.dmi' + icon_state = "riveted" + #endif + +/turf/closed/wall/indestructible/void/get_examine_text(mob/user) + . = list() + if(desc) + . += desc + return . + +/area/simulacrum + name = "???" + icon_state = "purple" + requires_power = FALSE + flags_area = AREA_NOTUNNEL|AREA_AVOID_BIOSCAN + statistic_exempt = TRUE + ceiling = CEILING_METAL + unique = TRUE + + base_lighting_alpha = 255 + unlimited_power = TRUE + +/area/simulacrum/desert + name = "Barren Desert" + ceiling = CEILING_NONE + base_lighting_alpha = 230 + +/area/simulacrum/interior + name = "Building Interior" + base_lighting_alpha = 0 + +/area/simulacrum/interior/exterior + name = "Building Exterior" + icon_state = "blue" + base_lighting_alpha = 0 + ceiling = CEILING_NONE + +/obj/structure/simulacrum_device + name = "strange device" + icon = 'icons/artifacts.dmi' + //bound_height = 64 + //bound_width = 64 + icon_state = "" + desc = "An unknown monolith of dark metal, glowing with a curious light." + light_color = "#aa23c5" + light_power = 4 + light_range = 2 + pixel_x = -32 + pixel_y = -32 + indestructible = TRUE + unacidable = TRUE + density = TRUE + opacity = TRUE + var/overlay_iconstate = "" + var/mutable_appearance/overlay_appearance + +/obj/structure/simulacrum_device/Initialize(mapload, ...) + . = ..() + overlay_appearance = mutable_appearance(icon, overlay_iconstate) + overlay_appearance.color = "#aa23c5" + var/matrix/scale_matrix = new /matrix + scale_matrix.Scale(3) + //overlay_appearance.transform = scale_matrix + transform = scale_matrix + update_icon() + +/obj/structure/simulacrum_device/update_icon() + . = ..() + overlays += overlay_appearance + +/obj/structure/simulacrum_device/attack_alien(mob/living/carbon/xenomorph/M) + return + +/obj/structure/simulacrum_device/attackby(obj/item/O, mob/user) + return + +/obj/structure/simulacrum_device/attack_hand(mob/user) + return + +/obj/structure/simulacrum_device/tgui_interact(mob/user, datum/tgui/ui) + return + +/obj/structure/simulacrum_device/central + icon_state = "ancient-4" + overlay_iconstate = "ancient-4fx" + +/obj/structure/simulacrum_device/central/destructable + breakable = TRUE + indestructible = FALSE + unacidable = FALSE + health = 4000 + debris = list(/obj/item/stack/sheet/mineral/chitin/metal) + var/been_shot = FALSE + +/obj/structure/simulacrum_device/central/destructable/get_examine_text(mob/user) + . = ..() + if(health > 3500) + . += SPAN_BOLDNOTICE("It looks undamaged.") + else if(health > 2500) + . += SPAN_BOLDWARNING("It looks fairly damaged.") + else if(health > 1000) + . += SPAN_BOLDWARNING("It looks like it's falling apart!") + +/obj/structure/simulacrum_device/central/destructable/bullet_act(obj/projectile/P) + . = ..() + health -= P.ammo.damage + if(!been_shot) + visible_message(SPAN_BOLDNOTICE("[src] lets out a small psychic groan as bullets chip away at its metal.")) + been_shot = TRUE + if(health <= 0) + handle_debris(0, 0) + deconstruct(FALSE) + +/obj/structure/simulacrum_device/central/destructable/handle_debris(severity = 0, direction = 0) + visible_message(SPAN_NOTICE("[src] shatters to pieces, an unearthly low groan being the last noise it makes.")) + return ..() + +/obj/structure/simulacrum_device/pillar + icon_state = "ancient-2" + overlay_iconstate = "ancient-2fx" + + +/obj/structure/vaultdoor + name = "imposing door" + desc = "An imposing vault door made out of a dark metal." + icon = 'icons/obj/structures/doors/vault.dmi' + icon_state = "door_valid" + indestructible = TRUE + unacidable = TRUE + density = TRUE + opacity = TRUE + +/obj/structure/vaultdoor/attack_hand(mob/user) + . = ..() + to_chat(user, SPAN_NOTICE("You begin to go through the door...")) + if(!do_after(user, 5 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC)) + return + + to_chat(user, SPAN_NOTICE("You enter through the door into the pitch darkness. No going back now.")) + user.forceMove(locate(4, 165, 2)) + +/obj/structure/simulacrum_ladder + name = "ladder" + desc = "A sturdy metal ladder. There's sunshine coming down through the hole above." + icon = 'icons/obj/structures/structures.dmi' + icon_state = "ladder11" + indestructible = TRUE + unacidable = TRUE + light_color = "#ffffff" + light_power = 4 + light_range = 4 + +/obj/structure/simulacrum_ladder/attack_hand(mob/user) + . = ..() + to_chat(user, SPAN_NOTICE("You begin to go up the ladder...")) + if(!do_after(user, 5 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC)) + return + + to_chat(user, SPAN_NOTICE("You go up the ladder, and out into the bright desert sun.")) + user.forceMove(locate(78, 106, 2)) diff --git a/code/modules/simulacrum/simulacrummisc.dm b/code/modules/simulacrum/simulacrummisc.dm new file mode 100644 index 0000000000..02d9244aeb --- /dev/null +++ b/code/modules/simulacrum/simulacrummisc.dm @@ -0,0 +1,69 @@ +/atom/movable/screen/text/screen_text/simulacrum_message + maptext_height = 64 + maptext_width = 480 + maptext_x = 0 + maptext_y = 0 + screen_loc = "LEFT,TOP-3" + + letters_per_update = 1 + fade_out_delay = 4.5 SECONDS + style_open = "" + style_close = "" + +/atom/movable/screen/text/screen_text/simulacrum_message/body + maptext_height = 128 + screen_loc = "LEFT,TOP-4.5" + style_open = "" + +/atom/movable/screen/text/screen_text/simulacrum_message/body/secondary + screen_loc = "LEFT,TOP-5" + +/atom/movable/screen/text/screen_text/simulacrum_message/body/fatelist + maptext_height = 256 + screen_loc = "LEFT,TOP-12" + + +/atom/movable/screen/text/screen_text/simulacrum_message/play_to_client() + player?.add_to_screen(src) + if(fade_in_time) + animate(src, alpha = 255) + var/list/lines_to_skip = list() + var/static/html_locate_regex = regex("<.*>") + var/tag_position = findtext(text_to_play, html_locate_regex) + var/reading_tag = TRUE + while(tag_position) + if(reading_tag) + if(text_to_play[tag_position] == ">") + reading_tag = FALSE + lines_to_skip += tag_position + tag_position++ + else + tag_position = findtext(text_to_play, html_locate_regex, tag_position) + reading_tag = TRUE + + for(var/letter = 2 to length(text_to_play) + letters_per_update step letters_per_update) + if(letter in lines_to_skip) + continue + maptext = "[style_open][copytext_char(text_to_play, 1, letter)][style_close]" + sleep(play_delay) + +/atom/movable/screen/text/screen_text/simulacrum_message/after_play() + if(!fade_out_time) + end_play() + return + + animate(src, alpha = 0, time = fade_out_time) + addtimer(CALLBACK(src, PROC_REF(end_play)), fade_out_time) + +/atom/movable/screen/text/screen_text/simulacrum_message/end_play() + if(!player) + qdel(src) + return + + player.remove_from_screen(src) + LAZYREMOVE(player.screen_texts, src) + qdel(src) + + if(QDELETED(player)) + QDEL_NULL_LIST(player.screen_texts) + return diff --git a/code/modules/simulacrum/simulacrumprocs.dm b/code/modules/simulacrum/simulacrumprocs.dm new file mode 100644 index 0000000000..8cca8a73cb --- /dev/null +++ b/code/modules/simulacrum/simulacrumprocs.dm @@ -0,0 +1,388 @@ +/proc/slow_everyone() + for(var/mob/living/carbon/human/human as anything in GLOB.alive_human_list) + to_chat(human, SPAN_WARNING("You feel your boots stick to the darkness below you, it's a bit harder to move.")) + human.apply_effect(1000000, SLOW) + +/client/proc/slow_everyone_verb() + set name = "Slow Everyone" + set category = "Admin.Simulation" + + if(!check_rights(R_EVENT)) + return + + slow_everyone() + +/proc/superslow_everyone() + for(var/mob/living/carbon/human/human as anything in GLOB.alive_human_list) + to_chat(human, SPAN_WARNING("Your boots are really sinking into the darkness now. It's incredibly hard to move.")) + human.apply_effect(1000000, SUPERSLOW) + +/client/proc/superslow_everyone_verb() + set name = "Superslow Everyone" + set category = "Admin.Simulation" + + if(!check_rights(R_EVENT)) + return + + superslow_everyone() + +/proc/ko_everyone() + for(var/mob/living/carbon/human/human as anything in GLOB.alive_human_list) + INVOKE_ASYNC(GLOBAL_PROC, GLOBAL_PROC_REF(ko_single_mob), human) + +/client/proc/ko_everyone_verb() + set name = "KO Everyone" + set category = "Admin.Simulation" + + if(!check_rights(R_EVENT)) + return + + if(tgui_input_list(src, "Are you sure you want to KO everyone", "KO?", list("yes", "no")) != "yes") + return + + ko_everyone() + +/proc/ko_single_mob(mob/living/carbon/human/human) + to_chat(human, SPAN_WARNING("A low whirring fills your mind.")) + human.clear_fullscreens() + var/atom/movable/screen/fullscreen/overlay_screen = human.overlay_fullscreen("simulacrum_ko", /atom/movable/screen/fullscreen/impaired) + overlay_screen.icon_state = "impairedoverlay1" + sleep(5 SECONDS) + to_chat(human, SPAN_WARNING("The whirring grows louder, it's a bit harder to think...")) + overlay_screen.icon_state = "impairedoverlay3" + sleep(12 SECONDS) + to_chat(human, SPAN_WARNING("The drone in your mind grows ever louder. It hurts.")) + overlay_screen.icon_state = "impairedoverlay5" + sleep(10 SECONDS) + to_chat(human, SPAN_BOLDWARNING("MAKE IT STOP!")) + overlay_screen.icon_state = "impairedoverlay6" + sleep(10 SECONDS) + to_chat(human, SPAN_BOLDWARNING("You collapse, drifting to unconsciousness as this cacaphony of sound assaults your senses.")) + overlay_screen.icon_state = "impairedoverlay7" + human.Stun(100000000) + human.loc = null + human.SetEyeBlind(100000000) + save_human(human) + human.ghost_locked = TRUE + human.hudswitch_blocked = TRUE + human.hud_used.show_hud(HUD_STYLE_NOHUD, human) + message_admins("close inventories now") + sleep(5 SECONDS) + if(human.client) // devious shenanigans + winset(human.client, "mainwindow.split", "splitter=1000") + winset(human.client, "infowindow", "is-visible=false") + winset(human.client, "outputwindow", "is-visible=false") + simulacrum_text_1(human) + +/proc/teleport_to_simulation(mob/living/carbon/human/human, roar = TRUE, initial_run = FALSE) + var/turf/teleport_turf = locate(GLOB.simulation_controller.next_simulation[1], GLOB.simulation_controller.next_simulation[2], GLOB.simulation_controller.next_simulation[3]) + var/turf/picked_turf = pick(block(teleport_turf.x - 1, teleport_turf.y - 1, teleport_turf.z, teleport_turf.x + 1, teleport_turf.y + 1, teleport_turf.z)) + human.forceMove(picked_turf) + if(!initial_run) + load_human(human) + sleep(4 SECONDS) // give time for weeds and me + to_chat(human, SPAN_NOTICE("You appear from the nothingness.")) + if(human.client) + winset(human.client, "infowindow", "is-visible=true") + winset(human.client, "outputwindow", "is-visible=true") + winset(human.client, "mainwindow.split", "splitter=400") + human.client.fit_viewport() + human.client.nuke_chat() + if(roar) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(playsound_client), human.client, 'sound/voice/alien_distantroar_3.ogg', human.loc, 55, FALSE), 10 SECONDS) + human.hudswitch_blocked = FALSE + human.hud_used.show_hud(HUD_STYLE_STANDARD, human) + human.SetStun(0) + human.SetEyeBlind(0) + human.rejuvenate() + human.clear_fullscreen("simulacrum_ko", TRUE) + +/mob/living/carbon/human + var/ghost_locked = FALSE + +/mob/living/carbon/human/do_ghost() + if(ghost_locked) + to_chat(src, SPAN_BOLDWARNING("You cannot leave your corpse at this time.")) + return + return ..() + +GLOBAL_DATUM_INIT(simulation_controller, /datum/simulation_controller, new) + +/datum/simulation_controller + var/list/non_completed_simulations = list( + "desert_dam" = list(list(61, 194, 3), list(98, 194, 3), list(135, 194, 3)), + "varadero" = list(list(24, 162, 3), list(58, 162, 3), list(92, 162, 3)), + "ice_colony" = list(list(19, 128, 3), list(55, 128, 3), list(91, 128, 3)), + "chances_claim" = list(list(23, 86, 3), list(61, 86, 3), list(99, 86, 3)), + "corsat" = list(list(58, 13, 3), list(119, 13, 3), list(152, 52, 3)), + "final" = list(list(19, 54, 3)), + ) + var/list/next_simulation = list(24, 194, 3) + var/list/non_completed_cutscenes = list("2", "3", "4", "5", "6") + var/next_cutscene = "" + var/current_cutscene_completed = FALSE + var/everyone_already_koed + var/list/fate_list = list() + var/list/dead_list = list() + +/client/proc/pick_simulation_verb() + set name = "Pick Next Simulation" + set category = "Admin.Simulation" + + if(!check_rights(R_EVENT)) + return + + var/result1 = tgui_input_list(mob, "Pick next category", "Category", GLOB.simulation_controller.non_completed_simulations) + if(!result1) + return + + GLOB.simulation_controller.next_simulation = GLOB.simulation_controller.non_completed_simulations[result1][1] // Go in order of simulations + to_chat(src, SPAN_NOTICE("Category of [result1] selected.")) + +/client/proc/decay_old_simulation_cutscene_verb() + set name = "Decay Old Simulation & Cutscene" + set category = "Admin.Simulation" + + if(!check_rights(R_EVENT)) + return + + if(GLOB.simulation_controller.next_cutscene) + GLOB.simulation_controller.non_completed_cutscenes -= GLOB.simulation_controller.next_cutscene + GLOB.simulation_controller.next_cutscene = "" + to_chat(src, SPAN_NOTICE("Cutscene decayed.")) + + if(GLOB.simulation_controller.next_simulation) + for(var/mapname in GLOB.simulation_controller.non_completed_simulations) + //for(var/list/coordset as anything in GLOB.simulation_controller.non_completed_simulations[mapname]) + for(var/i in 1 to length(GLOB.simulation_controller.non_completed_simulations[mapname])) + if((GLOB.simulation_controller.non_completed_simulations[mapname][i][1] == GLOB.simulation_controller.next_simulation[1]) && (GLOB.simulation_controller.non_completed_simulations[mapname][i][2] == GLOB.simulation_controller.next_simulation[2]) && (GLOB.simulation_controller.non_completed_simulations[mapname][i][3] == GLOB.simulation_controller.next_simulation[3])) + GLOB.simulation_controller.non_completed_simulations[mapname][i] = null + + var/list/new_simlist = list( + "desert_dam" = list(), + "varadero" = list(), + "ice_colony" = list(), + "chances_claim" = list(), + "corsat" = list(), + "final" = list() + ) + for(var/entry in GLOB.simulation_controller.non_completed_simulations) + for(var/list/coordset as anything in GLOB.simulation_controller.non_completed_simulations[entry]) + if(isnull(coordset)) + continue + new_simlist[entry] += list(coordset) + if(!length(new_simlist[entry])) + new_simlist -= entry + + GLOB.simulation_controller.non_completed_simulations = new_simlist + GLOB.simulation_controller.next_simulation = null + to_chat(src, SPAN_NOTICE("Simulation decayed.")) + +/client/proc/toggle_cutscene_verb() + set name = "Toggle Cutscene" + set category = "Admin.Simulation" + + if(!check_rights(R_EVENT)) + return + + if(!length(GLOB.simulation_controller.non_completed_cutscenes)) + to_chat(src, SPAN_BOLDNOTICE("No more cutscenes to play.")) + return + + if(GLOB.simulation_controller.next_cutscene) + GLOB.simulation_controller.next_cutscene = "" + to_chat(src, SPAN_BOLDNOTICE("Next loop will no longer trigger a cutscene.")) + return + + GLOB.simulation_controller.next_cutscene = GLOB.simulation_controller.non_completed_cutscenes[1] + to_chat(src, SPAN_BOLDNOTICE("Next loop will now trigger cutscene [GLOB.simulation_controller.next_cutscene]. After this one, there are [length(GLOB.simulation_controller.non_completed_cutscenes) - 1] cutscenes remaining.")) + +/client/proc/go_to_next_simulation_verb() + set name = "Advance Simulation" + set category = "Admin.Simulation" + + if(!check_rights(R_EVENT)) + return + + if(!GLOB.simulation_controller.next_simulation) + to_chat(src, SPAN_NOTICE("Next simulation has not been selected.")) + return + + if(tgui_input_list(src, "Are you sure you want to advance the simulation?", "Advance?", list("yes", "no")) != "yes") + return + + to_chat(src, SPAN_NOTICE("Advancing simulation. Cutscene [GLOB.simulation_controller.next_cutscene ? "will" : "will not"] play.")) + var/do_roar = TRUE + if(GLOB.simulation_controller.next_simulation[1] == 19 && GLOB.simulation_controller.next_simulation[2] == 54) + do_roar = FALSE + + for(var/savename in GLOB.simulacrum_playersaves) + var/datum/simulacrum_humansave/save = GLOB.simulacrum_playersaves[savename] + if(!save.tied_human) + message_admins("FUCKFUCKFUCK. A save with ckey [save.tied_ckey] no longer has a tied human!!!! FUCK") + continue + + save.tied_human.rejuvenate() + save.tied_human.clear_fullscreens() + var/atom/movable/screen/fullscreen/overlay_screen = save.tied_human.overlay_fullscreen("simulacrum_ko", /atom/movable/screen/fullscreen/impaired) + overlay_screen.icon_state = "impairedoverlay7" + save.tied_human.Stun(100000000) + save.tied_human.loc = null + save.tied_human.SetEyeBlind(100000000) + save.tied_human.hudswitch_blocked = TRUE + save.tied_human.hud_used.show_hud(HUD_STYLE_NOHUD, save.tied_human) + if(GLOB.simulation_controller.next_cutscene) + if(save.tied_human) // devious shenanigans + winset(save.tied_human, "mainwindow.split", "splitter=1000") + winset(save.tied_human, "infowindow", "is-visible=false") + winset(save.tied_human, "outputwindow", "is-visible=false") + switch(GLOB.simulation_controller.next_cutscene) + if("2") + INVOKE_ASYNC(GLOBAL_PROC, GLOBAL_PROC_REF(simulacrum_text_2), save.tied_human, do_roar) + if("3") + INVOKE_ASYNC(GLOBAL_PROC, GLOBAL_PROC_REF(simulacrum_text_3), save.tied_human, do_roar) + if("4") + INVOKE_ASYNC(GLOBAL_PROC, GLOBAL_PROC_REF(simulacrum_text_4), save.tied_human, do_roar) + if("5") + INVOKE_ASYNC(GLOBAL_PROC, GLOBAL_PROC_REF(simulacrum_text_5), save.tied_human, do_roar) + if("6") + INVOKE_ASYNC(GLOBAL_PROC, GLOBAL_PROC_REF(simulacrum_text_6), save.tied_human, do_roar) + + else + INVOKE_ASYNC(GLOBAL_PROC, GLOBAL_PROC_REF(teleport_to_simulation), save.tied_human, do_roar, FALSE) + +/client/proc/boss_roar_verb() + set name = "Boss Roar" + set category = "Admin.Simulation" + + if(!check_rights(R_EVENT)) + return + + for(var/savename in GLOB.simulacrum_playersaves) + var/datum/simulacrum_humansave/save = GLOB.simulacrum_playersaves[savename] + to_chat(save.tied_human, SPAN_BOLDWARNING("The strange device lets out a low groan as xenomorphs start to appear from nothingness!")) + +/client/proc/boss_finish_verb() + set name = "Boss Finished" + set category = "Admin.Simulation" + set waitfor = FALSE + + if(!check_rights(R_EVENT)) + return + + for(var/savename in GLOB.simulacrum_playersaves) + var/datum/simulacrum_humansave/save = GLOB.simulacrum_playersaves[savename] + to_chat(save.tied_human, SPAN_BOLDWARNING("With the destruction of the monolith, you feel yourself rejuvinate.")) + save.tied_human.rejuvenate() + + message_admins("Finish pt1 executed") + + sleep(6 SECONDS) + + for(var/savename in GLOB.simulacrum_playersaves) + var/datum/simulacrum_humansave/save = GLOB.simulacrum_playersaves[savename] + to_chat(save.tied_human, SPAN_BOLDWARNING("You now see the faintest sign of light to your south.")) + + for(var/turf/T as anything in block(56, 54, 3, 68, 54, 3)) + T.ChangeTurf(/turf/open/floor/void) + + message_admins("Finish pt2 executed") + +/client/proc/end_game_good() + set name = "Game End - Good" + set category = "Admin.Simulation" + + if(!check_rights(R_EVENT)) + return + + if(tgui_input_list(src, "Are you sure you want to end the game well?", "End game?", list("yes", "no")) != "yes") + return + + assemble_fates() + for(var/savename in GLOB.simulacrum_playersaves) + var/datum/simulacrum_humansave/save = GLOB.simulacrum_playersaves[savename] + if(!save.tied_human) + message_admins("FUCKFUCKFUCK. A save with ckey [save.tied_ckey] no longer has a tied human!!!! FUCK2") + continue + + save.tied_human.Stun(100000000) + save.tied_human.loc = null + save.tied_human.SetEyeBlind(100000000) + save.tied_human.hudswitch_blocked = TRUE + save.tied_human.hud_used.show_hud(HUD_STYLE_NOHUD, save.tied_human) + winset(save.tied_human, "mainwindow.split", "splitter=1000") + winset(save.tied_human, "infowindow", "is-visible=false") + winset(save.tied_human, "outputwindow", "is-visible=false") + + INVOKE_ASYNC(GLOBAL_PROC, GLOBAL_PROC_REF(simulacrum_text_ending_good), save.tied_human) + +/client/proc/end_game_bad() + set name = "Game End - Bad" + set category = "Admin.Simulation" + + if(!check_rights(R_EVENT)) + return + + if(tgui_input_list(src, "Are you sure you want to end the game badly?", "End game?", list("yes", "no")) != "yes") + return + + assemble_fates() + for(var/savename in GLOB.simulacrum_playersaves) + var/datum/simulacrum_humansave/save = GLOB.simulacrum_playersaves[savename] + if(!save.tied_human) + message_admins("FUCKFUCKFUCK. A save with ckey [save.tied_ckey] no longer has a tied human!!!! FUCK3") + continue + + save.tied_human.Stun(100000000) + save.tied_human.loc = null + save.tied_human.SetEyeBlind(100000000) + save.tied_human.hudswitch_blocked = TRUE + save.tied_human.hud_used.show_hud(HUD_STYLE_NOHUD, save.tied_human) + winset(save.tied_human, "mainwindow.split", "splitter=1000") + winset(save.tied_human, "infowindow", "is-visible=false") + winset(save.tied_human, "outputwindow", "is-visible=false") + + INVOKE_ASYNC(GLOBAL_PROC, GLOBAL_PROC_REF(simulacrum_text_ending_bad), save.tied_human) + +/proc/assemble_fates() + var/list/human_names = list() + var/list/fate_list_pre = list( + "- Following their harrowing experience, %NAME% quietly left the USCM at the first opportunity. %NAME% retired to the backwater colony of LV-325, living out their days peacefully. They died on August 9th, 2238 of natural causes.", + "- %NAME% continued their enlistment in the USCM following the incident. They were killed in a USCM raid on a CLF cell on June 14th, 2185.", + "- %NAME% became far more withdrawn after the incident. Once discharged from the USCM, they moved to Station 949, becoming a private security officer. They passed away from a rapidly-expanding brain tumor on Febuary 14th, 2199.", + "- After retiring from the USCM %NAME% was employed as a shift manager at LockMart's Leo plant on Mars. Alongside 200 others, %NAME% was killed in the Leo explosion of 2187 on May 1st.", + "- %NAME% retired to colonial life on LV-522, Chance's Claim. A xenomorph outbreak would see %NAME% meet their fate in the xenomorph hive on August 23rd, 2192.", + "- Quiet and reserved after the incident, %NAME% retired from the USCM and served as the Chief Engineer on a LockMart & Welsun 3300B colony carrier, ferrying atmospheric processors to budding worlds. They passed on December 1st, 2210 in a vehicular accident.", + "- %NAME% never fully recovered from the stress experienced during the incident. %NAME% died on August 15th, 2182 of a heart attack.", + ) + var/list/final_fates = list() + for(var/savename in GLOB.simulacrum_playersaves) + var/datum/simulacrum_humansave/save = GLOB.simulacrum_playersaves[savename] + if(save.tied_human != DEAD) + human_names += save.tied_human.real_name + else + GLOB.simulation_controller.dead_list += save.tied_human.real_name + + for(var/name in human_names) + var/fate_string = pick(fate_list_pre) + fate_list_pre -= fate_string + final_fates += replacetext(fate_string, "%NAME%", name) + //for(var/fate in fate_list_pre) + // final_fates += replacetext(fate, "%NAME%", human_names[1]) + + GLOB.simulation_controller.fate_list = final_fates + + +/client/proc/close_all_inventories() + set name = "Close All Inventories" + set category = "Admin.Simulation" + + if(!check_rights(R_EVENT)) + return + + for(var/savename in GLOB.simulacrum_playersaves) + var/datum/simulacrum_humansave/save = GLOB.simulacrum_playersaves[savename] + for(var/obj/item/storage/SI in get_recursive_contents(save.tied_human)) + SI.storage_close(save.tied_human) + + to_chat(src, SPAN_NOTICE("Inventories closed.")) diff --git a/code/modules/simulacrum/simulacrumsavedata.dm b/code/modules/simulacrum/simulacrumsavedata.dm new file mode 100644 index 0000000000..3988514e5d --- /dev/null +++ b/code/modules/simulacrum/simulacrumsavedata.dm @@ -0,0 +1,254 @@ +GLOBAL_LIST_EMPTY(simulacrum_playersaves) + +/proc/get_recursive_contents(atom/thing) + var/list/L = list() + for(var/atom/A in thing.contents) + if(istype(A, /obj/item/storage)) + L += get_recursive_contents(A) + + L += A + + return L + +/datum/simulacrum_humansave + var/obj/item/boots + var/obj/item/gloves + var/obj/item/uniform + var/obj/item/suit + var/obj/item/glasses + var/obj/item/mask + var/obj/item/ear_main + var/obj/item/ear_secondary + var/obj/item/helmet + var/obj/item/suitstorage + var/obj/item/idcard + var/obj/item/belt + var/obj/item/lefthand + var/obj/item/righthand + var/obj/item/pocket1 + var/obj/item/pocket2 + var/obj/item/back + + var/list/suit_contents = list() + var/list/helmet_contents = list() + var/list/suitstorage_contents = list() + var/list/belt_contents = list() + var/list/pocket1_contents = list() + var/list/pocket2_contents = list() + var/list/back_contents = list() + var/list/uniform_accessory_contents = list() + + // These two are paths, not instances + var/list/uniform_accessories = list() + var/list/armor_accessories = list() + + var/tied_ckey + var/mob/living/carbon/human/tied_human + +/datum/simulacrum_humansave/Destroy(force, ...) + tied_human = null //cba for the rest + return ..() + +// hell +/proc/save_human(mob/living/carbon/human/human) + var/datum/simulacrum_humansave/save = new() + + if(human.w_uniform) + for(var/obj/item/I as anything in human.w_uniform.accessories) + if(istype(I, /obj/item/clothing/accessory/storage)) + var/obj/item/clothing/accessory/storage/webbing = I + for(var/obj/item/I2 as anything in webbing.hold) + save.uniform_accessory_contents += DuplicateObject(I2, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + save.uniform_accessories += I.type + human.w_uniform.remove_accessory(human, I) + qdel(I) + + if(human.wear_suit) + for(var/obj/item/I as anything in human.wear_suit.accessories) + save.armor_accessories += I.type + human.wear_suit.remove_accessory(human, I) + + for(var/obj/item/storage/SI in get_recursive_contents(human)) + SI.storage_close(human) + + save.boots = DuplicateObject(human.shoes, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + save.gloves = DuplicateObject(human.gloves, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + save.uniform = DuplicateObject(human.w_uniform, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + save.suit = DuplicateObject(human.wear_suit, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + save.glasses = DuplicateObject(human.glasses, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + save.mask = DuplicateObject(human.wear_mask, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + save.ear_main = DuplicateObject(human.wear_l_ear, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + save.ear_secondary = DuplicateObject(human.wear_r_ear, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + save.helmet = DuplicateObject(human.head, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + save.suitstorage = DuplicateObject(human.s_store, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + save.idcard = DuplicateObject(human.wear_id, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + save.belt = DuplicateObject(human.belt, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + save.lefthand = DuplicateObject(human.l_hand, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + save.righthand = DuplicateObject(human.r_hand, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + save.pocket1 = DuplicateObject(human.l_store, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + save.pocket2 = DuplicateObject(human.r_store, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + save.back = DuplicateObject(human.back, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + + if(istype(human.wear_suit, /obj/item/clothing/suit/storage)) + var/obj/item/clothing/suit/storage/storage_suit = human.wear_suit + for(var/obj/item/I in storage_suit.pockets.contents) + save.suit_contents += DuplicateObject(I, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + + if(istype(human.head, /obj/item/clothing/head/helmet/marine)) + var/obj/item/clothing/head/helmet/marine/storage_helm = human.head + for(var/obj/item/I in storage_helm.pockets.contents) + save.helmet_contents += DuplicateObject(I, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + + if(isstorage(human.s_store)) + var/obj/item/storage/pouch = human.s_store + for(var/obj/item/I in pouch.contents) + save.suitstorage_contents += DuplicateObject(I, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + + if(isstorage(human.belt)) + var/obj/item/storage/pouch = human.belt + for(var/obj/item/I in pouch.contents) + save.belt_contents += DuplicateObject(I, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + + if(isstorage(human.l_store)) + var/obj/item/storage/pouch = human.l_store + for(var/obj/item/I in pouch.contents) + save.pocket1_contents += DuplicateObject(I, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + + if(isstorage(human.r_store)) + var/obj/item/storage/pouch = human.r_store + for(var/obj/item/I in pouch.contents) + save.pocket2_contents += DuplicateObject(I, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + + if(isstorage(human.back)) + var/obj/item/storage/pouch = human.back + for(var/obj/item/I in pouch.contents) + save.back_contents += DuplicateObject(I, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + + save.tied_ckey = human.ckey || human.persistent_ckey || "" + save.tied_human = human + GLOB.simulacrum_playersaves[save.tied_ckey] = save + +/proc/load_human(mob/living/carbon/human/human) + if(!((human.ckey || human.persistent_ckey) in GLOB.simulacrum_playersaves)) + return + + var/datum/simulacrum_humansave/save = GLOB.simulacrum_playersaves[(human.ckey || human.persistent_ckey)] + human.rejuvenate() + for (var/obj/item/I in human) + if(istype(I, /obj/item/implant)) + continue + qdel(I) + + arm_equipment(human, /datum/equipment_preset/strip, FALSE, FALSE) + human.equip_to_slot(DuplicateObject(save.boots, perfectcopy = TRUE, sameloc = FALSE, newloc = null), WEAR_FEET) + human.equip_to_slot(DuplicateObject(save.gloves, perfectcopy = TRUE, sameloc = FALSE, newloc = null), WEAR_HANDS) + human.equip_to_slot(DuplicateObject(save.uniform, perfectcopy = TRUE, sameloc = FALSE, newloc = null), WEAR_BODY) + human.equip_to_slot(DuplicateObject(save.suit, perfectcopy = TRUE, sameloc = FALSE, newloc = null), WEAR_JACKET) + human.equip_to_slot(DuplicateObject(save.glasses, perfectcopy = TRUE, sameloc = FALSE, newloc = null), WEAR_EYES) + human.equip_to_slot(DuplicateObject(save.mask, perfectcopy = TRUE, sameloc = FALSE, newloc = null), WEAR_FACE) + human.equip_to_slot(DuplicateObject(save.ear_main, perfectcopy = TRUE, sameloc = FALSE, newloc = null), WEAR_L_EAR) + human.equip_to_slot(DuplicateObject(save.ear_secondary, perfectcopy = TRUE, sameloc = FALSE, newloc = null), WEAR_R_EAR) + human.equip_to_slot(DuplicateObject(save.helmet, perfectcopy = TRUE, sameloc = FALSE, newloc = null), WEAR_HEAD) + human.equip_to_slot(DuplicateObject(save.suitstorage, perfectcopy = TRUE, sameloc = FALSE, newloc = null), WEAR_J_STORE) + human.equip_to_slot(DuplicateObject(save.idcard, perfectcopy = TRUE, sameloc = FALSE, newloc = null), WEAR_ID) + human.equip_to_slot(DuplicateObject(save.belt, perfectcopy = TRUE, sameloc = FALSE, newloc = null), WEAR_WAIST) + human.equip_to_slot(DuplicateObject(save.lefthand, perfectcopy = TRUE, sameloc = FALSE, newloc = null), WEAR_L_HAND) + human.equip_to_slot(DuplicateObject(save.righthand, perfectcopy = TRUE, sameloc = FALSE, newloc = null), WEAR_R_HAND) + human.equip_to_slot(DuplicateObject(save.pocket1, perfectcopy = TRUE, sameloc = FALSE, newloc = null), WEAR_L_STORE) + human.equip_to_slot(DuplicateObject(save.pocket2, perfectcopy = TRUE, sameloc = FALSE, newloc = null), WEAR_R_STORE) + human.equip_to_slot(DuplicateObject(save.back, perfectcopy = TRUE, sameloc = FALSE, newloc = null), WEAR_BACK) + + for(var/obj/item/storage/backpack/BP in get_recursive_contents(human)) + BP.boxes = new + BP.boxes.name = "storage" + BP.boxes.master = BP + BP.boxes.icon_state = "block" + BP.boxes.screen_loc = "7,7 to 10,8" + BP.boxes.layer = HUD_LAYER + BP.storage_start = new /atom/movable/screen/storage() + BP.storage_start.name = "storage" + BP.storage_start.master = BP + BP.storage_start.icon_state = "storage_start" + BP.storage_start.screen_loc = "7,7 to 10,8" + BP.storage_end = new /atom/movable/screen/storage() + BP.storage_end.name = "storage" + BP.storage_end.master = BP + BP.storage_end.icon_state = "storage_end" + BP.storage_end.screen_loc = "7,7 to 10,8" + BP.closer = new + BP.closer.master = BP + + if(istype(human.wear_suit, /obj/item/clothing/suit/storage)) + var/obj/item/clothing/suit/storage/storage_suit = human.wear_suit + for(var/obj/item/I as anything in save.suit_contents) + storage_suit.pockets.handle_item_insertion(DuplicateObject(I, perfectcopy = TRUE, sameloc = FALSE, newloc = null), TRUE, human) + + if(istype(human.head, /obj/item/clothing/head/helmet/marine)) + var/obj/item/clothing/head/helmet/marine/storage_head = human.head + for(var/obj/item/I as anything in save.helmet_contents) + storage_head.pockets.handle_item_insertion(DuplicateObject(I, perfectcopy = TRUE, sameloc = FALSE, newloc = null), TRUE, human) + + if(isstorage(human.s_store)) + var/obj/item/storage/pouch = human.s_store + for(var/obj/item/I2 in pouch.contents) + qdel(I2) + for(var/obj/item/I as anything in save.suitstorage_contents) + pouch.handle_item_insertion(DuplicateObject(I, perfectcopy = TRUE, sameloc = FALSE, newloc = null), TRUE, human) + human.s_store.icon_state = replacetext(human.s_store.icon_state, "_g_g", "_g") + + if(isstorage(human.belt)) + var/obj/item/storage/pouch = human.belt + for(var/obj/item/I2 in pouch.contents) + qdel(I2) + for(var/obj/item/I as anything in save.belt_contents) + pouch.handle_item_insertion(DuplicateObject(I, perfectcopy = TRUE, sameloc = FALSE, newloc = null), TRUE, human) + human.belt.icon_state = replacetext(human.belt.icon_state, "_g_g", "_g") // dumb check for a dumb case + + if(isstorage(human.l_store)) + var/obj/item/storage/pouch = human.l_store + for(var/obj/item/I2 in pouch.contents) + qdel(I2) + for(var/obj/item/I as anything in save.pocket1_contents) + pouch.handle_item_insertion(DuplicateObject(I, perfectcopy = TRUE, sameloc = FALSE, newloc = null), TRUE, human) + + if(isstorage(human.r_store)) + var/obj/item/storage/pouch = human.r_store + for(var/obj/item/I2 in pouch.contents) + qdel(I2) + for(var/obj/item/I as anything in save.pocket2_contents) + pouch.handle_item_insertion(DuplicateObject(I, perfectcopy = TRUE, sameloc = FALSE, newloc = null), TRUE, human) + + if(isstorage(human.back)) + var/obj/item/storage/pouch = human.back + for(var/obj/item/I2 in pouch.contents) + qdel(I2) + for(var/obj/item/I as anything in save.back_contents) + pouch.handle_item_insertion(DuplicateObject(I, perfectcopy = TRUE, sameloc = FALSE, newloc = null), TRUE, human) + + /*if(human.w_uniform) + for(var/obj/item/I as anything in human.w_uniform.accessories) + if(istype(I, /obj/item/clothing/accessory/storage)) + var/obj/item/clothing/accessory/storage/webbing = I + for(var/obj/item/I2 as anything in webbing.hold) + uniform_accessory_contents += DuplicateObject(I2, perfectcopy = TRUE, sameloc = FALSE, newloc = null) + uniform_accessories += I.type + human.w_uniform.remove_accessory(human, I) + qdel(I) + + if(human.wear_suit) + for(var/obj/item/I as anything in human.wear_suit.accessories) + armor_accessories += I.type*/ + + if(human.w_uniform) + for(var/path in save.uniform_accessories) + var/obj/item/clothing/accessory/attachment = new path + human.w_uniform.attach_accessory(human, attachment, TRUE) + if(istype(attachment, /obj/item/clothing/accessory/storage)) + var/obj/item/clothing/accessory/storage/pouch = attachment + for(var/obj/item/I as anything in save.uniform_accessory_contents) + pouch.hold.handle_item_insertion(DuplicateObject(I, perfectcopy = TRUE, sameloc = FALSE, newloc = null), TRUE, human) + + if(human.wear_suit) + for(var/path in save.armor_accessories) + var/obj/item/clothing/accessory/attachment = new path + human.wear_suit.attach_accessory(human, attachment, TRUE) diff --git a/colonialmarines.dme b/colonialmarines.dme index ec5420b558..ba2942d4d3 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -2308,6 +2308,11 @@ #include "code\modules\shuttles\shuttle_console.dm" #include "code\modules\shuttles\shuttle_ferry.dm" #include "code\modules\shuttles\shuttle_supply.dm" +#include "code\modules\simulacrum\simulacrumcutscenes.dm" +#include "code\modules\simulacrum\simulacrumevent.dm" +#include "code\modules\simulacrum\simulacrummisc.dm" +#include "code\modules\simulacrum\simulacrumprocs.dm" +#include "code\modules\simulacrum\simulacrumsavedata.dm" #include "code\modules\sorokyne\sorokyne_cold_water.dm" #include "code\modules\statusbar\statusbar.dm" #include "code\modules\surgery\amputation.dm" diff --git a/icons/artifacts.dmi b/icons/artifacts.dmi new file mode 100644 index 0000000000..919fccd90f Binary files /dev/null and b/icons/artifacts.dmi differ diff --git a/icons/mob/hud/screen1_full.dmi b/icons/mob/hud/screen1_full.dmi index c61aeaad55..4406d7d631 100644 Binary files a/icons/mob/hud/screen1_full.dmi and b/icons/mob/hud/screen1_full.dmi differ diff --git a/icons/simulacrum.dmi b/icons/simulacrum.dmi new file mode 100644 index 0000000000..639a230cc8 Binary files /dev/null and b/icons/simulacrum.dmi differ diff --git a/map_config/maps.txt b/map_config/maps.txt index 5a4f1a0884..b46177d247 100644 --- a/map_config/maps.txt +++ b/map_config/maps.txt @@ -72,3 +72,6 @@ endmap map whiskey_outpost_v2 endmap + +map simulacrum +endmap diff --git a/maps/map_files/rover/rover.dmm b/maps/map_files/rover/rover.dmm index 439969153d..0b0c84afb2 100644 --- a/maps/map_files/rover/rover.dmm +++ b/maps/map_files/rover/rover.dmm @@ -177,8 +177,8 @@ }, /obj/structure/gun_rack/m41/recon/unloaded, /obj/item/attachable/attached_gun/grenade/mk1{ - pixel_y = 15; - pixel_x = 8 + pixel_x = 8; + pixel_y = 15 }, /turf/open/floor/almayer{ icon_state = "plate" @@ -338,9 +338,6 @@ /area/golden_arrow/cryo_cells) "dv" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/CICmap{ - density = 0 - }, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -1296,8 +1293,8 @@ pixel_y = 8 }, /obj/item/attachable/attached_gun/grenade/mk1{ - pixel_y = -1; - pixel_x = 6 + pixel_x = 6; + pixel_y = -1 }, /turf/open/floor/almayer{ icon_state = "plate" diff --git a/maps/map_files/simulacrum/simulacrum.dmm b/maps/map_files/simulacrum/simulacrum.dmm new file mode 100644 index 0000000000..3d34ed7741 --- /dev/null +++ b/maps/map_files/simulacrum/simulacrum.dmm @@ -0,0 +1,87720 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + dir = 6; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"ab" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior/exterior) +"ac" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"ad" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Aurora Medical Clinic Recovery Room" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"ag" = ( +/obj/structure/bed, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/interior/wood, +/area/simulacrum/interior) +"ai" = ( +/turf/open/floor/corsat{ + dir = 8; + icon_state = "red" + }, +/area/simulacrum/interior) +"an" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement, +/area/simulacrum/interior/exterior) +"ap" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"ar" = ( +/obj/structure/ice/thin/end{ + dir = 1 + }, +/turf/open/ice, +/area/simulacrum/interior) +"at" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva{ + dir = 4; + icon_state = "green" + }, +/area/simulacrum/interior) +"au" = ( +/obj/structure/platform, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"ax" = ( +/obj/structure/curtain/open/medical, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"aB" = ( +/turf/closed/wall/indestructible/other, +/area/simulacrum/interior) +"aC" = ( +/obj/item/ammo_box/rounds/smartgun, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"aE" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor{ + dir = 5; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"aV" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor{ + dir = 1; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"aW" = ( +/turf/open/desert/dirt, +/area/simulacrum/desert) +"aX" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"aZ" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat{ + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"ba" = ( +/turf/closed/ice_rock/singleEnd, +/area/simulacrum/interior/exterior) +"bc" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, +/area/simulacrum/interior) +"bf" = ( +/obj/structure/largecrate, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"bh" = ( +/turf/open/floor/corsat{ + dir = 1; + icon_state = "redcorner" + }, +/area/simulacrum/interior) +"bi" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Dormitory" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/simulacrum/interior) +"bl" = ( +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whiteredcorner" + }, +/area/simulacrum/interior) +"bn" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement{ + icon_state = "cement15" + }, +/area/simulacrum/interior/exterior) +"bs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/simulacrum/interior) +"bv" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Airlock Control"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/simulacrum/interior) +"bw" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor{ + dir = 4; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"bx" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"bA" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/obj/structure/mirror{ + pixel_y = 28 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"bC" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"bE" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent2"; + pixel_x = -4; + pixel_y = -3 + }, +/obj/structure/cargo_container/kelland/right{ + layer = 3 + }, +/turf/open/floor/prison, +/area/simulacrum/interior/exterior) +"bH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/simulacrum/interior) +"bJ" = ( +/turf/open/floor/corsat{ + dir = 4; + icon_state = "bluecorner" + }, +/area/simulacrum/interior) +"bL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/shiva{ + icon_state = "multi_tiles" + }, +/area/simulacrum/interior) +"bM" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = -32 + }, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"bO" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/shiva{ + icon_state = "multi_tiles" + }, +/area/simulacrum/interior) +"bQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer2, +/area/simulacrum/interior/exterior) +"bT" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"bX" = ( +/obj/effect/alien/resin/spike, +/turf/open/gm/dirt, +/area/simulacrum/interior/exterior) +"bY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/closed/wall/resin/thick, +/area/simulacrum/interior) +"bZ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "purplewhite" + }, +/area/simulacrum/interior) +"cb" = ( +/obj/item/lightstick/red/planted, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer1, +/area/simulacrum/interior/exterior) +"cc" = ( +/turf/open/space/basic, +/area/simulacrum/desert) +"ce" = ( +/turf/open/auto_turf/snow/layer1, +/area/simulacrum/interior/exterior) +"cj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/filingcabinet, +/turf/open/floor{ + dir = 4; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"cl" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/obj/effect/decal/cleanable/cobweb{ + dir = 1 + }, +/turf/open/floor/corsat, +/area/simulacrum/interior) +"cn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor{ + dir = 5; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"cp" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/space) +"cs" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "GammaSouthN"; + name = "Airlock Control"; + pixel_x = -5; + pixel_y = 6; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "GammaSouthS"; + name = "Airlock Control"; + pixel_x = -5; + pixel_y = -3; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "GammaSouthAirlockC"; + name = "Security Shutters"; + pixel_x = 5; + pixel_y = 2; + use_power = 0 + }, +/obj/structure/machinery/camera/autoname{ + network = list("omega") + }, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "red" + }, +/area/simulacrum/interior) +"cu" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat{ + icon_state = "retrosquares" + }, +/area/simulacrum/interior) +"cz" = ( +/obj/structure/surface/table/woodentable, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/interior/wood/alt, +/area/simulacrum/interior) +"cA" = ( +/obj/structure/vaultdoor, +/turf/open/desert/dirt, +/area/simulacrum/desert) +"cD" = ( +/obj/structure/curtain/medical, +/turf/open/floor{ + dir = 8; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"cH" = ( +/obj/structure/ice/thin/corner{ + dir = 1 + }, +/turf/open/ice, +/area/simulacrum/interior/exterior) +"cR" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/almayer/research/containment/floor2{ + dir = 1 + }, +/area/simulacrum/interior) +"cS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"cX" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, +/area/simulacrum/interior/exterior) +"db" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/barricade/metal/wired{ + dir = 1 + }, +/turf/open/floor/shiva{ + dir = 1; + icon_state = "green" + }, +/area/simulacrum/interior) +"dc" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/simulacrum/interior) +"de" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat{ + icon_state = "officesquares" + }, +/area/simulacrum/interior) +"dh" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat{ + icon_state = "officesquares" + }, +/area/simulacrum/interior) +"di" = ( +/turf/open/auto_turf/snow/layer4, +/area/simulacrum/interior/exterior) +"dk" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue_plate" + }, +/area/simulacrum/interior/exterior) +"dm" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"do" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"dr" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat{ + dir = 5; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"ds" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat{ + dir = 5; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"dw" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 10; + icon_state = "full_corners" + }, +/turf/closed/ice_rock/corners, +/area/simulacrum/interior) +"dx" = ( +/obj/structure/computerframe, +/obj/effect/decal/cleanable/cobweb{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/simulacrum/interior) +"dA" = ( +/turf/open/floor/corsat{ + dir = 1; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"dD" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/ice, +/area/simulacrum/interior) +"dG" = ( +/turf/open/floor{ + dir = 10; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"dU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "redcorner" + }, +/area/simulacrum/interior) +"dW" = ( +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior) +"dY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat{ + icon_state = "officesquares" + }, +/area/simulacrum/interior) +"dZ" = ( +/turf/open/floor/wood, +/area/simulacrum/interior) +"eb" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/simulacrum/interior) +"ee" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "retrosquares" + }, +/area/simulacrum/interior) +"eg" = ( +/obj/structure/mineral_door/resin/thick, +/obj/effect/alien/resin/spike, +/turf/open/desert/dirt, +/area/simulacrum/interior/exterior) +"ei" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1; + icon_state = "full_corners" + }, +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1 + }, +/turf/closed/ice_rock/corners, +/area/simulacrum/interior) +"ej" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1; + icon_state = "west_wall" + }, +/turf/closed/ice_rock/corners, +/area/simulacrum/interior) +"el" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/landmark/corpsespawner/scientist, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + dir = 9; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"em" = ( +/turf/open/floor/corsat{ + icon_state = "bluegreycorner" + }, +/area/simulacrum/interior) +"en" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison{ + dir = 10; + icon_state = "bright_clean" + }, +/area/simulacrum/interior) +"ep" = ( +/obj/item/shard, +/turf/open/floor/interior/wood/alt, +/area/simulacrum/interior) +"eq" = ( +/turf/open/floor/corsat{ + dir = 4; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"er" = ( +/obj/structure/machinery/space_heater, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + dir = 9; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"eu" = ( +/obj/structure/mineral_door/resin/thick, +/turf/open/ice, +/area/simulacrum/interior) +"ew" = ( +/turf/closed/ice/corner{ + dir = 4 + }, +/area/simulacrum/interior) +"ex" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "redcorner" + }, +/area/simulacrum/interior) +"eA" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "63" + }, +/area/simulacrum/interior) +"eD" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"eE" = ( +/obj/item/prop/colony/used_flare, +/turf/closed/wall/resin/thick, +/area/simulacrum/interior/exterior) +"eL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer2, +/area/simulacrum/interior/exterior) +"eX" = ( +/obj/structure/safe, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "squareswood" + }, +/area/simulacrum/interior) +"fh" = ( +/turf/closed/ice/corner{ + dir = 8 + }, +/area/simulacrum/interior) +"fk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"fo" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior/exterior) +"fq" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "83" + }, +/area/simulacrum/interior) +"ft" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/syringes, +/turf/open/floor{ + dir = 5; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"fu" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/closed/wall/resin/thick, +/area/simulacrum/interior/exterior) +"fv" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = -32 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"fx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva{ + dir = 4; + icon_state = "green" + }, +/area/simulacrum/interior) +"fA" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"fJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Aurora Medical Clinic Scanning Unit" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"fM" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/auto_turf/snow/layer2, +/area/simulacrum/interior/exterior) +"fN" = ( +/turf/open/floor/corsat{ + dir = 8; + icon_state = "purple" + }, +/area/simulacrum/interior) +"fO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat{ + icon_state = "officesquares" + }, +/area/simulacrum/interior) +"fR" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue_plate" + }, +/area/simulacrum/interior/exterior) +"fV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor{ + dir = 4; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"fW" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" + }, +/obj/structure/barricade/metal/wired{ + dir = 1 + }, +/turf/open/floor/shiva{ + dir = 1; + icon_state = "greencorners" + }, +/area/simulacrum/interior) +"fY" = ( +/turf/open/auto_turf/sand_white/layer1, +/area/simulacrum/interior/exterior) +"fZ" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 8 + }, +/turf/closed/ice_rock/corners, +/area/simulacrum/interior/exterior) +"gj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkgreencorners2" + }, +/area/simulacrum/interior) +"gk" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "62" + }, +/area/simulacrum/interior) +"gl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"gm" = ( +/obj/item/lightstick/red/planted, +/turf/open/auto_turf/snow/layer2, +/area/simulacrum/interior/exterior) +"go" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat{ + dir = 5; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"gq" = ( +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/simulacrum/interior) +"gu" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 9; + icon_state = "full_corners" + }, +/turf/closed/ice_rock/corners, +/area/simulacrum/interior) +"gx" = ( +/obj/structure/tunnel, +/turf/open/ice, +/area/simulacrum/interior) +"gE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"gH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood, +/area/simulacrum/interior) +"gI" = ( +/turf/open/floor/corsat{ + dir = 1; + icon_state = "purplecorner" + }, +/area/simulacrum/interior) +"gJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "red" + }, +/area/simulacrum/interior) +"gK" = ( +/turf/open/desert/dirt{ + dir = 6; + icon_state = "desert_transition_edge1" + }, +/area/simulacrum/interior/exterior) +"gO" = ( +/obj/structure/surface/table/woodentable, +/obj/item/tool/pickaxe, +/obj/structure/machinery/light, +/turf/open/floor/interior/wood/alt, +/area/simulacrum/interior) +"gY" = ( +/turf/closed/wall/r_wall/biodome, +/area/simulacrum/interior) +"ha" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat{ + icon_state = "retrosquares" + }, +/area/simulacrum/interior) +"hc" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/donkpockets, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"hd" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "99" + }, +/area/simulacrum/interior) +"hf" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" + }, +/obj/structure/barricade/metal/wired{ + dir = 1 + }, +/turf/open/floor/shiva{ + dir = 4; + icon_state = "greencorners" + }, +/area/simulacrum/interior) +"hi" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood, +/area/simulacrum/interior) +"hl" = ( +/turf/open/floor/corsat{ + icon_state = "purplewhitecorner" + }, +/area/simulacrum/interior) +"hp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"hs" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/shale/layer1, +/area/simulacrum/interior/exterior) +"ht" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "6" + }, +/area/simulacrum/interior/exterior) +"hw" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "4" + }, +/area/simulacrum/interior/exterior) +"hx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer1, +/area/simulacrum/interior/exterior) +"hB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior/exterior) +"hD" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 + }, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"hG" = ( +/turf/open/floor/corsat{ + dir = 1; + icon_state = "blue" + }, +/area/simulacrum/interior) +"hT" = ( +/obj/structure/closet/crate/explosives, +/obj/item/storage/box/explosive_mines, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/simulacrum/interior) +"hU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/interior/wood/alt, +/area/simulacrum/interior) +"hW" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/ice, +/area/simulacrum/interior) +"hX" = ( +/turf/open/floor{ + dir = 8; + icon_state = "carpet9-4" + }, +/area/simulacrum/interior) +"hY" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement{ + icon_state = "cement12" + }, +/area/simulacrum/interior/exterior) +"hZ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "red" + }, +/area/simulacrum/interior) +"id" = ( +/turf/closed/ice/corner, +/area/simulacrum/interior/exterior) +"ie" = ( +/turf/open/auto_turf/snow/layer3, +/area/simulacrum/interior) +"ig" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "30" + }, +/area/simulacrum/interior) +"il" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva{ + dir = 5; + icon_state = "green" + }, +/area/simulacrum/interior) +"io" = ( +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"ip" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/simulacrum/interior) +"iu" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"iy" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"iz" = ( +/obj/structure/machinery/light, +/turf/open/floor/interior/wood/alt, +/area/simulacrum/interior) +"iA" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + damage_cap = 4000; + dir = 1; + locked = 0; + name = "\improper Emergency Access"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/simulacrum/interior) +"iC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"iD" = ( +/turf/open/floor{ + dir = 8; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"iG" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/closed/wall/resin/thick, +/area/simulacrum/interior/exterior) +"iI" = ( +/turf/closed/ice/straight, +/area/simulacrum/interior/exterior) +"iL" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1 + }, +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 8 + }, +/obj/structure/ice/ice_rock/cornerOverlay, +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 4 + }, +/turf/closed/ice_rock/corners, +/area/simulacrum/interior/exterior) +"iM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"iV" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/shiva{ + icon_state = "green" + }, +/area/simulacrum/interior) +"iW" = ( +/turf/open/floor/corsat{ + dir = 8; + icon_state = "purplecorner" + }, +/area/simulacrum/interior) +"jb" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/almayer/research/containment/corner_var1{ + dir = 4 + }, +/area/simulacrum/interior) +"jc" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 4 + }, +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 8 + }, +/turf/closed/ice_rock/corners, +/area/simulacrum/interior) +"jd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/shard/shrapnel, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"je" = ( +/turf/open/floor/almayer/research/containment/corner_var1{ + dir = 4 + }, +/area/simulacrum/interior) +"jg" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "OmegaOffice"; + name = "Privacy Shutters" + }, +/turf/open/floor/corsat{ + icon_state = "officesquares" + }, +/area/simulacrum/interior) +"ji" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/ammo_box/magazine/mk1, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"jm" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"jn" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/shale/layer1, +/area/simulacrum/interior/exterior) +"jq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/effect/alien/resin/spike, +/turf/open/floor/shiva{ + dir = 6; + icon_state = "green" + }, +/area/simulacrum/interior) +"jr" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"jy" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/simulacrum/interior) +"jB" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/barricade/metal/wired, +/turf/open/floor/plating, +/area/simulacrum/interior) +"jC" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"jD" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "27" + }, +/area/simulacrum/interior/exterior) +"jJ" = ( +/obj/structure/ice/thin/end{ + dir = 4 + }, +/turf/open/ice, +/area/simulacrum/interior/exterior) +"jK" = ( +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/simulacrum/interior/exterior) +"jM" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"jQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer1, +/area/simulacrum/interior/exterior) +"jT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"jV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/auto_turf/snow/layer1, +/area/simulacrum/interior/exterior) +"jW" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"jZ" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"kf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/effect/alien/resin/spike, +/turf/open/floor/shiva{ + dir = 5; + icon_state = "green" + }, +/area/simulacrum/interior) +"ki" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Underground Women's Restroom" + }, +/turf/open/floor/plating, +/area/simulacrum/interior) +"kj" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva{ + dir = 4; + icon_state = "green" + }, +/area/simulacrum/interior) +"kl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/snow/layer2, +/area/simulacrum/interior) +"ko" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = 10 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"ks" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "whitered" + }, +/area/simulacrum/interior) +"kx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/snow/layer3, +/area/simulacrum/interior/exterior) +"kC" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"kE" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"kF" = ( +/obj/structure/prop/invuln/ice_prefab/standalone/trim{ + icon_state = "white_trim" + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent2"; + pixel_x = 4; + pixel_y = -3 + }, +/obj/structure/cargo_container/kelland/left{ + layer = 3 + }, +/turf/open/floor/prison, +/area/simulacrum/interior/exterior) +"kG" = ( +/obj/structure/platform_decoration, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"kM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "redcorner" + }, +/area/simulacrum/interior) +"kN" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison, +/area/simulacrum/interior/exterior) +"kO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat{ + icon_state = "retrosquares" + }, +/area/simulacrum/interior) +"kP" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "25" + }, +/area/simulacrum/interior) +"kR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"kU" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "bright_clean" + }, +/area/simulacrum/interior) +"kX" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "red" + }, +/area/simulacrum/interior) +"kZ" = ( +/turf/closed/wall/rock/orange, +/area/simulacrum/interior/exterior) +"lc" = ( +/turf/open/floor/almayer/research/containment/corner{ + dir = 4 + }, +/area/simulacrum/interior) +"ld" = ( +/turf/open/space/basic, +/area/simulacrum/interior/exterior) +"le" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva{ + icon_state = "multi_tiles" + }, +/area/simulacrum/interior) +"lf" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/simulacrum/interior) +"lh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteredcorner" + }, +/area/simulacrum/interior) +"lj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat{ + dir = 10; + icon_state = "red" + }, +/area/simulacrum/interior) +"lu" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"lw" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/shale/layer1, +/area/simulacrum/interior/exterior) +"lx" = ( +/obj/structure/fence, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/auto_turf/snow/layer2, +/area/simulacrum/interior) +"lA" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"lB" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor{ + dir = 8; + icon_state = "carpet15-15" + }, +/area/simulacrum/interior) +"lD" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"lK" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "26" + }, +/area/simulacrum/interior/exterior) +"lR" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"lT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/pickaxe/drill, +/turf/open/floor/prison{ + dir = 10; + icon_state = "bright_clean" + }, +/area/simulacrum/interior) +"lU" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/simulacrum/interior) +"lW" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 4; + icon_state = "single_ends" + }, +/turf/closed/ice_rock/corners, +/area/simulacrum/interior) +"lX" = ( +/turf/closed/shuttle/dropship2/tornado, +/area/simulacrum/interior/exterior) +"mg" = ( +/obj/structure/curtain/medical, +/turf/open/floor{ + icon_state = "whitered" + }, +/area/simulacrum/interior) +"mk" = ( +/turf/open/floor/almayer/research/containment/corner4, +/area/simulacrum/interior) +"mm" = ( +/obj/effect/alien/weeds/node, +/turf/open/ice, +/area/simulacrum/interior) +"mp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/obj/structure/mineral_door/resin/thick, +/turf/open/floor/shiva{ + dir = 1; + icon_state = "green" + }, +/area/simulacrum/interior) +"mq" = ( +/turf/closed/wall/indestructible/void, +/area/simulacrum) +"ms" = ( +/turf/open/shuttle/dropship{ + icon_state = "rasputin6" + }, +/area/simulacrum/interior) +"mt" = ( +/turf/open/floor{ + dir = 8; + icon_state = "carpet11-12" + }, +/area/simulacrum/interior) +"mz" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/simulacrum/interior) +"mA" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "70" + }, +/area/simulacrum/interior/exterior) +"mH" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/door_control{ + id = "OmegaOffice"; + name = "Privacy Shutters"; + pixel_y = 1; + use_power = 0 + }, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "squareswood" + }, +/area/simulacrum/interior) +"mJ" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/simulacrum/interior) +"mT" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/simulacrum/interior) +"mW" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat{ + icon_state = "officesquares" + }, +/area/simulacrum/interior) +"mY" = ( +/turf/open/floor/almayer/research/containment/floor2{ + dir = 1 + }, +/area/simulacrum/interior) +"mZ" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "bluegreycorner" + }, +/area/simulacrum/interior) +"na" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 6; + icon_state = "full_corners" + }, +/turf/closed/ice_rock/corners, +/area/simulacrum/interior) +"nb" = ( +/obj/structure/curtain/open/medical, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"nd" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "67" + }, +/area/simulacrum/interior) +"ng" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior/exterior) +"nh" = ( +/turf/open/floor/corsat{ + dir = 8; + icon_state = "redcorner" + }, +/area/simulacrum/interior) +"nk" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/turf/open/floor{ + dir = 1; + icon_state = "whiteredcorner" + }, +/area/simulacrum/interior) +"nm" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/corsat{ + icon_state = "bluegreycorner" + }, +/area/simulacrum/interior) +"np" = ( +/turf/open/floor/corsat{ + dir = 1; + icon_state = "red" + }, +/area/simulacrum/interior) +"nq" = ( +/obj/structure/surface/table/almayer, +/obj/item/form_printer, +/obj/item/tool/pen, +/obj/structure/machinery/camera/autoname{ + network = list("omega") + }, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "purplewhite" + }, +/area/simulacrum/interior) +"nv" = ( +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"nx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/item/paper_bin, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"ny" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"nA" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva{ + dir = 1; + icon_state = "green" + }, +/area/simulacrum/interior) +"nB" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"nE" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva{ + dir = 9; + icon_state = "green" + }, +/area/simulacrum/interior) +"nR" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "9" + }, +/area/simulacrum/interior) +"nT" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"nU" = ( +/obj/structure/closet/wardrobe/white, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/mask/rebreather, +/obj/item/clothing/mask/rebreather, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/black, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "red" + }, +/area/simulacrum/interior) +"nW" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"ob" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat{ + icon_state = "officesquares" + }, +/area/simulacrum/interior) +"oc" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/interior/wood, +/area/simulacrum/interior) +"od" = ( +/obj/structure/ice/thin/corner{ + dir = 8 + }, +/turf/open/ice, +/area/simulacrum/interior/exterior) +"oe" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "officesquares" + }, +/area/simulacrum/interior) +"of" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "omega" + }, +/area/simulacrum/interior) +"oi" = ( +/obj/structure/surface/table, +/obj/item/paper/research_notes, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 4; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"oj" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/window_frame/colony, +/turf/open/floor/plating, +/area/simulacrum/interior) +"oo" = ( +/turf/open/floor{ + dir = 8; + icon_state = "carpet5-1" + }, +/area/simulacrum/interior) +"oq" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"or" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "15" + }, +/area/simulacrum/interior) +"ou" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "53" + }, +/area/simulacrum/interior) +"ov" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "18" + }, +/area/simulacrum/interior) +"ox" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/camera/autoname{ + network = list("omega") + }, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"oz" = ( +/obj/structure/simulacrum_device/pillar, +/turf/open/floor/void, +/area/simulacrum) +"oB" = ( +/turf/closed/wall/strata_ice/dirty, +/area/simulacrum/interior/exterior) +"oC" = ( +/turf/closed/ice_rock/corners{ + dir = 5 + }, +/area/simulacrum/interior/exterior) +"oF" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkgreencorners2" + }, +/area/simulacrum/interior) +"oJ" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"oK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/simulacrum/interior) +"oL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Aurora Medical Clinic Storage" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"oZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"pa" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "red" + }, +/area/simulacrum/interior) +"pe" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, +/area/simulacrum/interior/exterior) +"pf" = ( +/turf/closed/ice/corner{ + dir = 1 + }, +/area/simulacrum/interior/exterior) +"ph" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "red" + }, +/area/simulacrum/interior) +"pi" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat{ + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"pj" = ( +/turf/open/floor{ + dir = 8; + icon_state = "carpet6-2" + }, +/area/simulacrum/interior) +"pk" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/simulacrum/interior) +"pl" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "GammaSouthN"; + name = "Gamma South Airlock" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/simulacrum/interior) +"pm" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, +/area/simulacrum/interior/exterior) +"pn" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/bruise_pack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/light, +/turf/open/floor/prison{ + dir = 10; + icon_state = "bright_clean" + }, +/area/simulacrum/interior) +"pr" = ( +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/simulacrum/interior) +"ps" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/floor/plating, +/area/simulacrum/interior/exterior) +"pu" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/simulacrum/interior) +"pw" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"px" = ( +/turf/open/floor/corsat{ + dir = 4; + icon_state = "purplecorner" + }, +/area/simulacrum/interior) +"pz" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"pA" = ( +/obj/structure/fence, +/turf/open/auto_turf/snow/layer1, +/area/simulacrum/interior) +"pC" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"pL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/metal/wired, +/turf/open/floor/interior/wood, +/area/simulacrum/interior) +"pM" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/closed/wall/resin/thick, +/area/simulacrum/interior/exterior) +"pN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteredcorner" + }, +/area/simulacrum/interior) +"pP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/snow/layer3, +/area/simulacrum/interior) +"pS" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"pV" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"pX" = ( +/obj/structure/window/framed/corsat/hull/research, +/turf/open/floor/plating, +/area/simulacrum/interior) +"qb" = ( +/obj/structure/curtain/medical, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"qe" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/simulacrum/interior) +"ql" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"qm" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/barricade/metal/wired, +/turf/open/floor/plating, +/area/simulacrum/interior) +"qt" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor{ + dir = 9; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"qv" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"qB" = ( +/obj/item/explosive/mine/active{ + dir = 4 + }, +/turf/open/floor/plating, +/area/simulacrum/interior/exterior) +"qC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/simulacrum/interior/exterior) +"qG" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"qJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/simulacrum/interior) +"qL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/simulacrum/interior) +"qN" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/shiva{ + dir = 8; + icon_state = "green" + }, +/area/simulacrum/interior) +"qO" = ( +/obj/structure/closet/crate/green, +/obj/item/device/sentry_computer, +/obj/item/defenses/handheld/sentry, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/simulacrum/interior) +"qP" = ( +/obj/structure/ice/thin/corner, +/turf/open/ice, +/area/simulacrum/interior/exterior) +"qW" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/almayer/research/containment/floor2, +/area/simulacrum/interior) +"qX" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor/interior/wood/alt, +/area/simulacrum/interior) +"rg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"rk" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "29" + }, +/area/simulacrum/interior/exterior) +"rl" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "22" + }, +/area/simulacrum/interior/exterior) +"rm" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"rn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer1, +/area/simulacrum/interior/exterior) +"rs" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat{ + icon_state = "officesquares" + }, +/area/simulacrum/interior) +"ru" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"rz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{ + dir = 1; + name = "\improper Tornado crew hatch" + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, +/area/simulacrum/interior) +"rA" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "47" + }, +/area/simulacrum/interior) +"rH" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "OmegaOffice"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/simulacrum/interior) +"rR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior/exterior) +"rU" = ( +/turf/open/floor/shiva{ + dir = 8; + icon_state = "green" + }, +/area/simulacrum/interior) +"rV" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/simulacrum/interior) +"rZ" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + dir = 6; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"sf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/simulacrum/interior) +"sp" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"sq" = ( +/obj/item/lightstick/red/planted, +/turf/open/auto_turf/snow/layer3, +/area/simulacrum/interior/exterior) +"sr" = ( +/obj/structure/machinery/door/airlock/hatch/cockpit/two, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/simulacrum/interior) +"sx" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/plating, +/area/simulacrum/interior/exterior) +"sB" = ( +/turf/open/auto_turf/snow/layer2, +/area/simulacrum/interior) +"sE" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat{ + icon_state = "red" + }, +/area/simulacrum/interior) +"sG" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"sM" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/simulacrum/interior) +"sN" = ( +/obj/structure/tunnel, +/turf/open/floor/corsat{ + icon_state = "retrosquares" + }, +/area/simulacrum/interior) +"sO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt, +/area/simulacrum/interior/exterior) +"sP" = ( +/obj/structure/machinery/microwave, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison{ + dir = 10; + icon_state = "bright_clean" + }, +/area/simulacrum/interior) +"sU" = ( +/obj/structure/flora/pottedplant, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor{ + dir = 5; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"sW" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/stamp/rd, +/turf/open/floor{ + dir = 8; + icon_state = "carpet15-15" + }, +/area/simulacrum/interior) +"ta" = ( +/turf/open/floor/corsat, +/area/simulacrum/interior) +"tb" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor{ + dir = 6; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"tc" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"tg" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Administration"; + req_access_txt = "106" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "officesquares" + }, +/area/simulacrum/interior) +"th" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "3" + }, +/area/simulacrum/interior/exterior) +"tk" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("omega") + }, +/turf/open/floor/corsat{ + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"tm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"tr" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/simulacrum/interior) +"tt" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"tu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor{ + dir = 8; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"tv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/plasteel/wired{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"ty" = ( +/obj/structure/mineral_door/resin/thick, +/turf/open/floor/shiva{ + icon_state = "green" + }, +/area/simulacrum/interior) +"tC" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"tD" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/shiva{ + icon_state = "green" + }, +/area/simulacrum/interior) +"tF" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "whitered" + }, +/area/simulacrum/interior) +"tG" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"tH" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "68" + }, +/area/simulacrum/interior) +"tM" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat{ + icon_state = "purple" + }, +/area/simulacrum/interior) +"tS" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"tV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "red" + }, +/area/simulacrum/interior) +"tX" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/simulacrum/interior) +"ue" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/shiva{ + dir = 10; + icon_state = "green" + }, +/area/simulacrum/interior) +"ui" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/folder/black_random, +/turf/open/floor{ + dir = 8; + icon_state = "carpet15-15" + }, +/area/simulacrum/interior) +"up" = ( +/turf/open/floor/interior/wood/alt, +/area/simulacrum/interior) +"ux" = ( +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, +/area/simulacrum/interior) +"uy" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor{ + dir = 6; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"uA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"uF" = ( +/turf/open/gm/dirt, +/area/simulacrum/interior/exterior) +"uG" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor{ + dir = 6; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"uI" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"uJ" = ( +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + icon_state = "whitered" + }, +/area/simulacrum/interior) +"uP" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"uQ" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison, +/area/simulacrum/interior/exterior) +"uS" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor{ + dir = 6; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"uU" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/simulacrum/interior/exterior) +"uW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor{ + dir = 1; + icon_state = "whiteredcorner" + }, +/area/simulacrum/interior) +"vb" = ( +/turf/closed/ice/end{ + dir = 8 + }, +/area/simulacrum/interior) +"vf" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "purplewhite" + }, +/area/simulacrum/interior) +"vg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + dir = 5; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"vk" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + autoclose = 0; + density = 0; + dir = 1; + icon_state = "door_open"; + name = "Containment Cell 5"; + req_one_access_txt = "103" + }, +/turf/open/floor/corsat{ + icon_state = "retrosquareslight" + }, +/area/simulacrum/interior) +"vl" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"vq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/plasteel/wired, +/turf/open/floor/corsat{ + icon_state = "bluegreycorner" + }, +/area/simulacrum/interior) +"vr" = ( +/turf/open/auto_turf/snow/layer2, +/area/simulacrum/interior/exterior) +"vs" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1; + icon_state = "single_ends" + }, +/turf/closed/ice_rock/corners, +/area/simulacrum/interior) +"vv" = ( +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "whitered" + }, +/area/simulacrum/interior) +"vx" = ( +/turf/closed/wall/rock/orange, +/area/simulacrum/desert) +"vA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva{ + icon_state = "multi_tiles" + }, +/area/simulacrum/interior) +"vE" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor{ + dir = 9; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"vH" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood, +/area/simulacrum/interior) +"vI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"vR" = ( +/turf/open/floor/corsat{ + dir = 8; + icon_state = "purplewhitecorner" + }, +/area/simulacrum/interior) +"vU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"vY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat{ + icon_state = "retrosquares" + }, +/area/simulacrum/interior) +"wb" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1; + icon_state = "south_wall" + }, +/turf/closed/ice_rock/corners, +/area/simulacrum/interior) +"wd" = ( +/turf/closed/ice_rock/corners{ + dir = 9 + }, +/area/simulacrum/interior/exterior) +"wg" = ( +/turf/open/auto_turf/shale/layer2, +/area/simulacrum/interior/exterior) +"wh" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"wj" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 + }, +/turf/open/floor{ + dir = 5; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"wn" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"wr" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/shiva{ + icon_state = "green" + }, +/area/simulacrum/interior) +"wt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat{ + icon_state = "retrosquares" + }, +/area/simulacrum/interior) +"wu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/sand_white/layer1, +/area/simulacrum/interior/exterior) +"ww" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/auto_turf/snow/layer2, +/area/simulacrum/interior/exterior) +"wB" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + dir = 10; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"wI" = ( +/obj/structure/cargo_container/kelland/left{ + layer = 4.13 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue_plate" + }, +/area/simulacrum/interior/exterior) +"wJ" = ( +/turf/open/floor/corsat{ + dir = 8; + icon_state = "blue" + }, +/area/simulacrum/interior) +"wL" = ( +/obj/structure/flora/pottedplant, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + dir = 5; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"wM" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat{ + dir = 9; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"wR" = ( +/turf/closed/ice/corner{ + dir = 8 + }, +/area/simulacrum/interior/exterior) +"wS" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior/exterior) +"wT" = ( +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/simulacrum/interior) +"xc" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "bright_clean" + }, +/area/simulacrum/interior) +"xg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"xi" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat{ + icon_state = "retrosquares" + }, +/area/simulacrum/interior) +"xj" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/faxmachine, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "squareswood" + }, +/area/simulacrum/interior) +"xl" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + autoclose = 0; + density = 0; + icon_state = "door_open"; + id = "CORSAT Containment 4"; + name = "Containment Cell 1"; + req_one_access_txt = "103" + }, +/turf/open/floor/corsat{ + icon_state = "retrosquareslight" + }, +/area/simulacrum/interior) +"xn" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, +/area/simulacrum/interior/exterior) +"xq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/mineral_door/resin/thick, +/turf/open/auto_turf/snow/layer3, +/area/simulacrum/interior/exterior) +"xs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"xu" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat{ + dir = 5; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"xv" = ( +/turf/open/floor/corsat{ + dir = 8; + icon_state = "bluecorner" + }, +/area/simulacrum/interior) +"xw" = ( +/turf/open/floor/almayer/research/containment/floor2{ + dir = 8 + }, +/area/simulacrum/interior) +"xz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/plasteel/wired, +/turf/open/floor/corsat{ + icon_state = "officesquares" + }, +/area/simulacrum/interior) +"xB" = ( +/obj/structure/tunnel, +/turf/open/desert/dirt, +/area/simulacrum/interior/exterior) +"xF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/machinery/computer/atmos_alert, +/obj/structure/machinery/camera/autoname{ + network = list("omega") + }, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"xI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"xK" = ( +/turf/open/floor/corsat{ + dir = 4; + icon_state = "redcorner" + }, +/area/simulacrum/interior) +"xL" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"xN" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "red" + }, +/area/simulacrum/interior) +"xQ" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/mirror{ + pixel_y = -28 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"xT" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/closed/wall/resin/thick, +/area/simulacrum/interior/exterior) +"xV" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 5; + icon_state = "full_corners" + }, +/turf/closed/ice_rock/corners, +/area/simulacrum/interior) +"xY" = ( +/turf/open/floor/corsat{ + dir = 1; + icon_state = "bluegreycorner" + }, +/area/simulacrum/interior) +"ya" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/simulacrum/interior) +"yj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/tool/wet_sign, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"yl" = ( +/turf/open/floor/almayer/research/containment/corner_var1{ + icon_state = "containment_corner_variant_2" + }, +/area/simulacrum/interior) +"yn" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"yp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva{ + dir = 10; + icon_state = "green" + }, +/area/simulacrum/interior) +"yq" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat{ + icon_state = "officesquares" + }, +/area/simulacrum/interior) +"ys" = ( +/turf/closed/wall/indestructible/other, +/area/simulacrum/desert) +"yt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "whiteredfull" + }, +/area/simulacrum/interior) +"yy" = ( +/obj/structure/ice/thin/end{ + dir = 8 + }, +/turf/open/ice, +/area/simulacrum/interior) +"yA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "red" + }, +/area/simulacrum/interior) +"yC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"yD" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor{ + dir = 6; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"yG" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat{ + icon_state = "officesquares" + }, +/area/simulacrum/interior) +"yI" = ( +/turf/open/shuttle/dropship{ + icon_state = "rasputin4" + }, +/area/simulacrum/interior) +"yL" = ( +/obj/structure/window/framed/corsat/cell/research, +/turf/open/floor/plating, +/area/simulacrum/interior) +"yR" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 1; + name = "Administration Office" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "OmegaOffice"; + name = "Privacy Shutters" + }, +/turf/open/floor/corsat{ + icon_state = "officesquares" + }, +/area/simulacrum/interior) +"yS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva{ + icon_state = "multi_tiles" + }, +/area/simulacrum/interior) +"yT" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "officesquares" + }, +/area/simulacrum/interior) +"yV" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "89" + }, +/area/simulacrum/interior) +"yW" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"yY" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat{ + dir = 9; + icon_state = "red" + }, +/area/simulacrum/interior) +"za" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/simulacrum/interior/exterior) +"zf" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigar, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "squareswood" + }, +/area/simulacrum/interior) +"zj" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1 + }, +/turf/closed/ice_rock/corners, +/area/simulacrum/interior/exterior) +"zm" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat{ + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"zw" = ( +/obj/item/alien_embryo{ + color = "#00ff80"; + name = "corrupted alien embryo" + }, +/turf/open/floor/almayer/research/containment/floor2{ + dir = 1 + }, +/area/simulacrum/interior) +"zA" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/simulacrum/interior) +"zB" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior/exterior) +"zC" = ( +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"zE" = ( +/obj/item/shard, +/turf/open/floor{ + icon_state = "whitered" + }, +/area/simulacrum/interior) +"zG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva{ + icon_state = "multi_tiles" + }, +/area/simulacrum/interior) +"zI" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"zK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"zL" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "GammaSouthAirlockC"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/simulacrum/interior) +"zM" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"zQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, +/area/simulacrum/interior/exterior) +"zR" = ( +/obj/item/shard/shrapnel, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"zT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/snow/layer3, +/area/simulacrum/interior/exterior) +"zU" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 8; + icon_state = "single_part" + }, +/turf/closed/ice_rock/corners, +/area/simulacrum/interior) +"zZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + dir = 10; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"Ab" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"Ac" = ( +/obj/item/explosive/mine/active, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, +/area/simulacrum/interior/exterior) +"Ah" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor{ + dir = 8; + icon_state = "carpet15-15" + }, +/area/simulacrum/interior) +"Aj" = ( +/turf/closed/ice_rock/singlePart{ + dir = 1 + }, +/area/simulacrum/interior/exterior) +"Ak" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + icon_state = "north_wall" + }, +/turf/closed/ice_rock/corners, +/area/simulacrum/interior) +"Al" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/simulacrum/interior) +"An" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"Ao" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/interior/wood, +/area/simulacrum/interior) +"Ap" = ( +/obj/structure/mineral_door/resin/thick, +/turf/open/floor/corsat{ + icon_state = "retrosquares" + }, +/area/simulacrum/interior) +"Aw" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/simulacrum/interior) +"Ax" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "redcorner" + }, +/area/simulacrum/interior) +"Az" = ( +/turf/open/floor/plating, +/area/simulacrum/interior/exterior) +"AB" = ( +/turf/closed/ice/end{ + dir = 4 + }, +/area/simulacrum/interior) +"AC" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/simulacrum/interior) +"AG" = ( +/turf/open/floor{ + dir = 1; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"AI" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "red" + }, +/area/simulacrum/interior) +"AK" = ( +/turf/open/floor{ + dir = 4; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"AL" = ( +/turf/open/floor/plating, +/area/simulacrum/interior) +"AN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior/exterior) +"AU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior) +"AY" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior) +"Ba" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/simulacrum/interior) +"Bb" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "40" + }, +/area/simulacrum/interior/exterior) +"Bd" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "76" + }, +/area/simulacrum/interior) +"Bf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior/exterior) +"Bn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating, +/area/simulacrum/interior) +"Bo" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ + dir = 1 + }, +/turf/open/floor/corsat{ + icon_state = "red" + }, +/area/simulacrum/interior) +"Bp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"Bq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whiteredcorner" + }, +/area/simulacrum/interior) +"Bt" = ( +/obj/structure/simulacrum_device/central/destructable, +/turf/open/floor/void, +/area/simulacrum) +"BF" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/simulacrum/interior) +"BQ" = ( +/turf/open/floor/corsat{ + icon_state = "redcorner" + }, +/area/simulacrum/interior) +"BV" = ( +/turf/open/floor/void, +/area/simulacrum) +"BW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/interior/wood/alt, +/area/simulacrum/interior) +"BX" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/simulacrum/interior) +"Cb" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/donut_box, +/turf/open/floor/prison{ + dir = 10; + icon_state = "bright_clean" + }, +/area/simulacrum/interior) +"Cd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/alien/resin/spike, +/turf/open/floor/shiva{ + dir = 4; + icon_state = "green" + }, +/area/simulacrum/interior) +"Ch" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"Ci" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"Cj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"Ck" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat{ + dir = 10; + icon_state = "red" + }, +/area/simulacrum/interior) +"Cm" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "24" + }, +/area/simulacrum/interior) +"Cn" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"Cp" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/closed/wall/resin/thick, +/area/simulacrum/interior/exterior) +"Cw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue_plate" + }, +/area/simulacrum/interior/exterior) +"Cz" = ( +/obj/effect/alien/resin/spike, +/turf/open/desert/dirt, +/area/simulacrum/interior/exterior) +"CC" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/sand_white/layer1, +/area/simulacrum/interior/exterior) +"CE" = ( +/obj/structure/ice/thin/corner{ + dir = 4 + }, +/turf/open/ice, +/area/simulacrum/interior/exterior) +"CF" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 8 + }, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/simulacrum/interior) +"CI" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/mirror{ + pixel_y = -28 + }, +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"CJ" = ( +/turf/open/floor/corsat{ + icon_state = "purple" + }, +/area/simulacrum/interior) +"CP" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor{ + dir = 1; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"CR" = ( +/turf/open/floor/corsat{ + dir = 9; + icon_state = "red" + }, +/area/simulacrum/interior) +"CT" = ( +/obj/structure/barricade/plasteel/wired, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "bluegreycorner" + }, +/area/simulacrum/interior) +"CU" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1; + icon_state = "full_corners" + }, +/turf/closed/ice_rock/corners, +/area/simulacrum/interior) +"CW" = ( +/turf/open/floor/corsat{ + icon_state = "officesquares" + }, +/area/simulacrum/interior) +"CX" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor{ + dir = 9; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"Da" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/snow/layer3, +/area/simulacrum/interior) +"Df" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/corsat{ + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"Di" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer2, +/area/simulacrum/interior) +"Dj" = ( +/turf/open/floor/almayer/research/containment/corner1, +/area/simulacrum/interior) +"Dm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "officesquares" + }, +/area/simulacrum/interior) +"Dq" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"Dw" = ( +/obj/structure/surface/table, +/turf/open/floor{ + dir = 6; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"Dz" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "61" + }, +/area/simulacrum/interior/exterior) +"DD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "retrosquares" + }, +/area/simulacrum/interior) +"DF" = ( +/turf/open/floor/corsat{ + dir = 8; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"DG" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor{ + dir = 4; + icon_state = "whiteredcorner" + }, +/area/simulacrum/interior) +"DK" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "32" + }, +/area/simulacrum/interior/exterior) +"DM" = ( +/turf/open/floor{ + dir = 8; + icon_state = "darkgreencorners2" + }, +/area/simulacrum/interior) +"DP" = ( +/obj/structure/ice/thin/end{ + dir = 4 + }, +/turf/open/ice, +/area/simulacrum/interior) +"DU" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"DW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/simulacrum/interior) +"Eb" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"Ef" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"Eh" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/simulacrum/interior) +"Ek" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat{ + icon_state = "retrosquares" + }, +/area/simulacrum/interior) +"Em" = ( +/obj/structure/ice/ice_rock/cornerOverlay, +/turf/closed/ice_rock/corners, +/area/simulacrum/interior) +"En" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, +/area/simulacrum/interior/exterior) +"Eo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/snow/layer3, +/area/simulacrum/interior) +"Er" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") + }, +/turf/open/auto_turf/snow/layer3, +/area/simulacrum/interior) +"Eu" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior/exterior) +"Ev" = ( +/obj/structure/surface/table, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 4; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"Ey" = ( +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"Ez" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"EE" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"EH" = ( +/obj/structure/mineral_door/resin/thick, +/turf/open/space/basic, +/area/simulacrum/interior/exterior) +"EL" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "95" + }, +/area/simulacrum/interior) +"EU" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, +/area/simulacrum/interior/exterior) +"EZ" = ( +/obj/effect/alien/resin/spike, +/turf/open/auto_turf/snow/layer3, +/area/simulacrum/interior/exterior) +"Fd" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor{ + icon_state = "whitered" + }, +/area/simulacrum/interior) +"Fe" = ( +/turf/open/shuttle/dropship{ + icon_state = "floor8" + }, +/area/simulacrum/interior) +"Ff" = ( +/turf/open/floor/corsat{ + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"Fh" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "86" + }, +/area/simulacrum/interior) +"Fp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whiteredcorner" + }, +/area/simulacrum/interior) +"Fz" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 6; + icon_state = "single" + }, +/turf/closed/ice_rock/corners, +/area/simulacrum/interior) +"FD" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat{ + dir = 10; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"FG" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "bright_clean" + }, +/area/simulacrum/interior) +"FI" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "bluegreycorner" + }, +/area/simulacrum/interior) +"FL" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison{ + dir = 10; + icon_state = "bright_clean" + }, +/area/simulacrum/interior) +"FO" = ( +/obj/structure/ice/thin/corner, +/turf/open/ice, +/area/simulacrum/interior) +"FP" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"FR" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/corsat{ + icon_state = "retrosquareslight" + }, +/area/simulacrum/interior) +"FT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/plasteel/wired, +/turf/open/floor{ + icon_state = "whiteredcorner" + }, +/area/simulacrum/interior) +"FU" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 4 + }, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "bluegreycorner" + }, +/area/simulacrum/interior) +"FV" = ( +/obj/structure/ice/thin/end{ + dir = 1 + }, +/turf/open/ice, +/area/simulacrum/interior/exterior) +"FX" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "red" + }, +/area/simulacrum/interior) +"Ga" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat{ + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"Gd" = ( +/obj/item/shard, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "whitered" + }, +/area/simulacrum/interior) +"Gg" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/simulacrum/interior) +"Gh" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "77" + }, +/area/simulacrum/interior) +"Gk" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor{ + dir = 10; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"Go" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "GammaSouthS"; + name = "Gamma South Airlock" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/simulacrum/interior) +"Gp" = ( +/turf/closed/wall, +/area/simulacrum/interior) +"Gr" = ( +/obj/structure/simulacrum_ladder{ + icon_state = "ladder10" + }, +/turf/open/floor/void, +/area/simulacrum) +"Gu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/plasteel/wired, +/turf/open/floor/interior/wood, +/area/simulacrum/interior) +"Gy" = ( +/obj/structure/surface/table/woodentable, +/obj/item/tool/pickaxe, +/obj/item/stack/medical/ointment, +/turf/open/floor/interior/wood/alt, +/area/simulacrum/interior) +"GI" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor{ + icon_state = "whiteredcorner" + }, +/area/simulacrum/interior) +"GK" = ( +/turf/open/floor/shiva{ + dir = 1; + icon_state = "green" + }, +/area/simulacrum/interior) +"GL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/simulacrum/interior) +"GM" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"GS" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor{ + dir = 1; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"GW" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/simulacrum/interior) +"GY" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "flagpole"; + layer = 4.11; + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, +/area/simulacrum/interior/exterior) +"Hb" = ( +/turf/open/floor{ + icon_state = "whitered" + }, +/area/simulacrum/interior) +"Hc" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"Hf" = ( +/turf/closed/ice_rock/corners{ + dir = 6 + }, +/area/simulacrum/interior/exterior) +"Hk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"Ho" = ( +/turf/open/desert/dirt, +/area/simulacrum/interior/exterior) +"Hz" = ( +/obj/structure/mineral_door/resin/thick, +/turf/open/floor/plating, +/area/simulacrum/interior/exterior) +"HB" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "purplewhite" + }, +/area/simulacrum/interior) +"HE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior) +"HF" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat{ + dir = 9; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"HG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior) +"HH" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/simulacrum/interior) +"HL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior) +"HN" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"HQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"HR" = ( +/obj/structure/machinery/computer/cameras{ + desc = "The flight controls for a UD6 Dropship. these controls look pretty banged up, and there's some blood covering the screen.."; + name = "\improper 'Tornado' flight controls"; + network = null; + pixel_y = 21 + }, +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/obj/structure/machinery/light/double{ + dir = 1; + layer = 2.9; + pixel_y = 9 + }, +/obj/item/prop/almayer/flight_recorder{ + layer = 2.9; + pixel_x = -9; + pixel_y = 4 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/simulacrum/interior) +"HW" = ( +/obj/item/lightstick/red/planted, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer1, +/area/simulacrum/interior/exterior) +"Ib" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"Ig" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + autoclose = 0; + density = 0; + icon_state = "door_open"; + id = "CORSAT Containment 4"; + name = "Containment Cell 4"; + req_one_access_txt = "103" + }, +/turf/open/floor/corsat{ + icon_state = "retrosquareslight" + }, +/area/simulacrum/interior) +"Ik" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison{ + dir = 10; + icon_state = "bright_clean" + }, +/area/simulacrum/interior) +"In" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "65" + }, +/area/simulacrum/interior/exterior) +"Ir" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat{ + icon_state = "retrosquares" + }, +/area/simulacrum/interior) +"Is" = ( +/obj/structure/closet/secure_closet/chemical{ + req_access_txt = "100" + }, +/turf/open/floor{ + dir = 10; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"It" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"Iw" = ( +/turf/closed/ice/end{ + dir = 1 + }, +/area/simulacrum/interior/exterior) +"Ix" = ( +/obj/structure/ice/thin/single, +/turf/closed/ice_rock/corners{ + dir = 9 + }, +/area/simulacrum/interior/exterior) +"IB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior/exterior) +"IC" = ( +/obj/structure/platform_decoration, +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"IE" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat{ + dir = 6; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"IF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"IH" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "75" + }, +/area/simulacrum/interior) +"II" = ( +/obj/structure/surface/table, +/obj/item/paper/research_notes, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 6; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"IP" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/landmark/survivor_spawner, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + dir = 10; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"IQ" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison{ + dir = 10; + icon_state = "bright_clean" + }, +/area/simulacrum/interior) +"IR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/auto_turf/snow/layer1, +/area/simulacrum/interior/exterior) +"IU" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"IW" = ( +/turf/open/auto_turf/snow/layer1, +/area/simulacrum/interior) +"IY" = ( +/obj/structure/mineral_door/resin/thick, +/turf/open/auto_turf/snow/layer3, +/area/simulacrum/interior/exterior) +"Jd" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"Jf" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "69" + }, +/area/simulacrum/interior) +"Jg" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/closed/wall/resin/thick, +/area/simulacrum/interior) +"Jh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"Ji" = ( +/turf/open/floor{ + dir = 8; + icon_state = "carpet10-8" + }, +/area/simulacrum/interior) +"Jj" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "66" + }, +/area/simulacrum/interior/exterior) +"Jk" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/simulacrum/interior) +"Jl" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"Jo" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior/exterior) +"Jv" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 10; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"Jy" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, +/area/simulacrum/interior/exterior) +"JB" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "100" + }, +/area/simulacrum/interior/exterior) +"JC" = ( +/turf/open/floor/corsat{ + dir = 9; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"JE" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"JF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/simulacrum/interior) +"JG" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "squareswood" + }, +/area/simulacrum/interior) +"JK" = ( +/obj/structure/mineral_door/resin/thick, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"JL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whiteredcorner" + }, +/area/simulacrum/interior) +"JS" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "74" + }, +/area/simulacrum/interior/exterior) +"JX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/gm/dirt, +/area/simulacrum/interior/exterior) +"Kb" = ( +/turf/open/floor/corsat{ + dir = 10; + icon_state = "purple" + }, +/area/simulacrum/interior) +"Kc" = ( +/obj/structure/mineral_door/resin/thick, +/obj/structure/mineral_door/resin/thick, +/turf/open/desert/dirt, +/area/simulacrum/interior/exterior) +"Kf" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/plating, +/area/simulacrum/interior/exterior) +"Kg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat{ + icon_state = "retrosquares" + }, +/area/simulacrum/interior) +"Kh" = ( +/turf/open/floor/corsat{ + dir = 4; + icon_state = "red" + }, +/area/simulacrum/interior) +"Kq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/simulacrum/interior/exterior) +"Ku" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "bluegreycorner" + }, +/area/simulacrum/interior) +"Kx" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"KC" = ( +/turf/closed/wall/resin/thick, +/area/simulacrum/interior) +"KD" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor{ + dir = 4; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"KE" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva{ + dir = 4; + icon_state = "green" + }, +/area/simulacrum/interior) +"KJ" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/simulacrum/interior) +"KK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/shiva{ + icon_state = "multi_tiles" + }, +/area/simulacrum/interior) +"KL" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/interior/wood, +/area/simulacrum/interior) +"KN" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" + }, +/turf/open/floor/shiva{ + dir = 4; + icon_state = "greencorners" + }, +/area/simulacrum/interior) +"KO" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "45" + }, +/area/simulacrum/interior/exterior) +"KS" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "squareswood" + }, +/area/simulacrum/interior) +"KV" = ( +/obj/structure/fence, +/turf/open/auto_turf/snow/layer3, +/area/simulacrum/interior) +"KX" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "whiteredcorner" + }, +/area/simulacrum/interior) +"Ld" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "whitered" + }, +/area/simulacrum/interior) +"Le" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat{ + icon_state = "officesquares" + }, +/area/simulacrum/interior) +"Lg" = ( +/obj/structure/surface/table, +/obj/item/toy/deck/uno, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/simulacrum/interior) +"Lk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva{ + dir = 8; + icon_state = "green" + }, +/area/simulacrum/interior) +"Lm" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"Ln" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor{ + dir = 4; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"Ls" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "73" + }, +/area/simulacrum/interior) +"Lu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer3, +/area/simulacrum/interior/exterior) +"Lv" = ( +/obj/structure/ice/thin/straight{ + dir = 4 + }, +/turf/open/ice, +/area/simulacrum/interior) +"Lz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor{ + dir = 10; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"LC" = ( +/turf/open/floor/corsat{ + dir = 1; + icon_state = "purple" + }, +/area/simulacrum/interior) +"LD" = ( +/obj/structure/prop/invuln/ice_prefab/standalone{ + icon_state = "white" + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, +/area/simulacrum/interior/exterior) +"LE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/mineral_door/resin/thick, +/turf/open/floor/corsat{ + icon_state = "retrosquares" + }, +/area/simulacrum/interior) +"LF" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 + }, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "purple" + }, +/area/simulacrum/interior) +"LH" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight"; + unacidable = 0 + }, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior) +"LJ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/obj/item/ammo_box/magazine/mk1, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"LM" = ( +/turf/closed/ice/straight, +/area/simulacrum/interior) +"LZ" = ( +/obj/structure/ice/thin/single, +/turf/open/ice, +/area/simulacrum/interior/exterior) +"Mc" = ( +/obj/item/ammo_magazine/pistol/holdout, +/obj/item/ammo_magazine/pistol/holdout{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/structure/surface/table/woodentable, +/obj/item/weapon/gun/pistol/holdout, +/turf/open/floor/interior/wood/alt, +/area/simulacrum/interior) +"Md" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat{ + dir = 6; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"Mr" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"Ms" = ( +/turf/open/floor/corsat{ + icon_state = "purplecorner" + }, +/area/simulacrum/interior) +"Mu" = ( +/turf/open/auto_turf/snow/layer4, +/area/simulacrum/interior) +"Mw" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper, +/turf/open/floor{ + dir = 8; + icon_state = "carpet15-15" + }, +/area/simulacrum/interior) +"Mx" = ( +/obj/structure/surface/table/woodentable, +/obj/item/tool/pickaxe, +/obj/item/stack/medical/ointment, +/obj/structure/barricade/metal/wired, +/turf/open/floor/interior/wood/alt, +/area/simulacrum/interior) +"MD" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = -6; + pixel_y = 32 + }, +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "17" + }, +/area/simulacrum/interior/exterior) +"MF" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "97" + }, +/area/simulacrum/interior) +"MG" = ( +/turf/open/floor/corsat{ + icon_state = "blue" + }, +/area/simulacrum/interior) +"MH" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"MI" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/closed/wall/resin/thick, +/area/simulacrum/interior/exterior) +"MR" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/research/containment/floor2{ + dir = 8 + }, +/area/simulacrum/interior) +"Na" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/snow/layer3, +/area/simulacrum/interior/exterior) +"Nb" = ( +/turf/open/floor/prison, +/area/simulacrum/interior/exterior) +"Nd" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"Nf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/auto_turf/snow/layer2, +/area/simulacrum/interior/exterior) +"Nj" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/almayer/research/containment/floor2, +/area/simulacrum/interior) +"Nm" = ( +/obj/structure/fence, +/turf/open/auto_turf/snow/layer2, +/area/simulacrum/interior) +"Nn" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" + }, +/turf/open/floor/shiva{ + icon_state = "multi_tiles" + }, +/area/simulacrum/interior) +"No" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "23" + }, +/area/simulacrum/interior/exterior) +"Nu" = ( +/turf/open/auto_turf/shale/layer1, +/area/simulacrum/interior/exterior) +"Nv" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor{ + dir = 1; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"Nz" = ( +/turf/open/floor/corsat{ + icon_state = "gamma" + }, +/area/simulacrum/interior) +"NB" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + name = "Emergency NanoMed"; + pixel_x = 30; + req_access = null + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/interior/wood/alt, +/area/simulacrum/interior) +"ND" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteredcorner" + }, +/area/simulacrum/interior) +"NP" = ( +/turf/closed/ice_rock/singleEnd{ + dir = 4 + }, +/area/simulacrum/interior/exterior) +"NR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"NS" = ( +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue_plate" + }, +/area/simulacrum/interior/exterior) +"NW" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "purplewhite" + }, +/area/simulacrum/interior) +"NZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior/exterior) +"Od" = ( +/turf/open/space, +/area/space) +"Oe" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva{ + icon_state = "multi_tiles" + }, +/area/simulacrum/interior) +"Oh" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor{ + dir = 8; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"Ol" = ( +/obj/structure/closet/secure_closet/medical1{ + req_access_txt = "100" + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"Om" = ( +/obj/structure/mineral_door/resin/thick, +/turf/open/auto_turf/sand_white/layer1, +/area/simulacrum/interior/exterior) +"On" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "16" + }, +/area/simulacrum/interior/exterior) +"Op" = ( +/obj/item/shard, +/turf/open/desert/dirt, +/area/simulacrum/interior/exterior) +"Ou" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "5" + }, +/area/simulacrum/interior/exterior) +"Ov" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "purple" + }, +/area/simulacrum/interior) +"Ox" = ( +/turf/closed/wall/biodome, +/area/simulacrum/interior) +"OI" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor{ + dir = 8; + icon_state = "carpet14-10" + }, +/area/simulacrum/interior) +"OL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "officesquares" + }, +/area/simulacrum/interior) +"ON" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "squareswood" + }, +/area/simulacrum/interior) +"OV" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "48" + }, +/area/simulacrum/interior) +"OX" = ( +/turf/closed/ice_rock/westWall, +/area/simulacrum/interior/exterior) +"Pa" = ( +/obj/structure/ice/thin/single, +/turf/open/ice, +/area/simulacrum/interior) +"Pi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Bunkhouse" + }, +/turf/open/floor/interior/wood, +/area/simulacrum/interior) +"Pn" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "102" + }, +/area/simulacrum/interior/exterior) +"Po" = ( +/obj/docking_port/stationary/marine_dropship/lz1, +/turf/open/desert/dirt, +/area/simulacrum/desert) +"Pp" = ( +/obj/effect/alien/resin/spike, +/turf/open/auto_turf/sand_white/layer1, +/area/simulacrum/interior/exterior) +"Pt" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" + }, +/obj/structure/barricade/metal/wired{ + dir = 1 + }, +/turf/open/floor/shiva{ + icon_state = "multi_tiles" + }, +/area/simulacrum/interior) +"Pv" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/interior/wood/alt, +/area/simulacrum/interior) +"Py" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"PA" = ( +/turf/open/shuttle/dropship{ + icon_state = "rasputin8" + }, +/area/simulacrum/interior) +"PB" = ( +/turf/open/floor/corsat{ + icon_state = "red" + }, +/area/simulacrum/interior) +"PG" = ( +/obj/structure/mineral_door/resin/thick, +/turf/open/floor/plating, +/area/simulacrum/interior) +"PH" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("gamma") + }, +/turf/open/floor/corsat{ + dir = 5; + icon_state = "red" + }, +/area/simulacrum/interior) +"PK" = ( +/turf/open/floor/interior/wood, +/area/simulacrum/interior) +"PQ" = ( +/obj/structure/ice/thin/end, +/turf/open/ice, +/area/simulacrum/interior/exterior) +"PS" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue_plate" + }, +/area/simulacrum/interior/exterior) +"PU" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, +/area/simulacrum/interior) +"PY" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat{ + icon_state = "officesquares" + }, +/area/simulacrum/interior) +"PZ" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat{ + dir = 9; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"Qc" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall/biodome, +/area/simulacrum/interior) +"Qf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior/exterior) +"Qg" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor{ + dir = 9; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"Qh" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/closed/wall/resin/thick, +/area/simulacrum/interior/exterior) +"Qp" = ( +/obj/item/stack/sheet/metal, +/obj/item/shard, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"Qr" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/power/apc/hyper{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat{ + dir = 9; + icon_state = "red" + }, +/area/simulacrum/interior) +"Qv" = ( +/turf/open/floor/shiva{ + icon_state = "multi_tiles" + }, +/area/simulacrum/interior) +"Qw" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/simulacrum/interior) +"QH" = ( +/turf/closed/wall/r_wall, +/area/simulacrum/interior) +"QJ" = ( +/obj/structure/curtain/medical, +/turf/open/floor{ + dir = 1; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"QK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"QP" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "101" + }, +/area/simulacrum/interior/exterior) +"QV" = ( +/turf/closed/ice, +/area/simulacrum/interior/exterior) +"QZ" = ( +/turf/open/floor/corsat{ + dir = 10; + icon_state = "blue" + }, +/area/simulacrum/interior) +"Rf" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("omega") + }, +/turf/open/floor/corsat{ + icon_state = "purple" + }, +/area/simulacrum/interior) +"Ri" = ( +/obj/structure/ice/thin/end{ + dir = 8 + }, +/turf/open/ice, +/area/simulacrum/interior/exterior) +"Rk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"Ro" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "whitered" + }, +/area/simulacrum/interior) +"Ru" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood/alt, +/area/simulacrum/interior) +"RC" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/simulacrum/interior/exterior) +"RJ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat{ + icon_state = "omega" + }, +/area/simulacrum/interior) +"RL" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "carpet13-5" + }, +/area/simulacrum/interior) +"RM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/simulacrum/interior/exterior) +"RN" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Aurora Medical Clinic Storage" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"RR" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/simulacrum/interior) +"RX" = ( +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior/exterior) +"Sa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whiteredcorner" + }, +/area/simulacrum/interior) +"Sf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + dir = 9; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"Si" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/bed/nest, +/turf/open/floor/almayer/research/containment/entrance{ + dir = 8 + }, +/area/simulacrum/interior) +"Sk" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/closed/wall/resin/thick, +/area/simulacrum/interior/exterior) +"Sm" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva{ + dir = 6; + icon_state = "green" + }, +/area/simulacrum/interior) +"So" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/corsat{ + icon_state = "retrosquares" + }, +/area/simulacrum/interior) +"Sp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/closed/wall/resin/thick, +/area/simulacrum/interior) +"Sr" = ( +/turf/closed/ice/straight{ + dir = 4 + }, +/area/simulacrum/interior/exterior) +"Ss" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, +/area/simulacrum/interior/exterior) +"St" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "2" + }, +/area/simulacrum/interior/exterior) +"Sv" = ( +/obj/structure/coatrack, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "squareswood" + }, +/area/simulacrum/interior) +"Sw" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor{ + dir = 5; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"Sy" = ( +/obj/structure/ice/thin/straight, +/turf/open/ice, +/area/simulacrum/interior/exterior) +"SF" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/corsat{ + dir = 6; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"SG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat{ + icon_state = "retrosquares" + }, +/area/simulacrum/interior) +"SL" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"SN" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "GammaSouthID"; + name = "Security Shutters"; + use_power = 0 + }, +/turf/open/floor/corsat{ + dir = 9; + icon_state = "red" + }, +/area/simulacrum/interior) +"SP" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent2"; + pixel_x = 4; + pixel_y = 2 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, +/area/simulacrum/interior/exterior) +"SU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat{ + icon_state = "red" + }, +/area/simulacrum/interior) +"SV" = ( +/turf/open/floor/corsat{ + icon_state = "retrosquares" + }, +/area/simulacrum/interior) +"SX" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Dormitory" + }, +/turf/open/floor/interior/wood, +/area/simulacrum/interior) +"Tf" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"To" = ( +/turf/open/floor/corsat{ + dir = 4; + icon_state = "purple" + }, +/area/simulacrum/interior) +"Tr" = ( +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"Ts" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "officesquares" + }, +/area/simulacrum/interior) +"TB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior) +"TD" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/simulacrum/interior/exterior) +"TF" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/closed/wall/resin/thick, +/area/simulacrum/interior/exterior) +"TJ" = ( +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/simulacrum/interior) +"TM" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"TV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sink{ + pixel_y = 15 + }, +/obj/structure/mirror{ + pixel_y = 28 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"TY" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"Uc" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "31" + }, +/area/simulacrum/interior) +"Ue" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"Ul" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"Ur" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "19" + }, +/area/simulacrum/interior) +"Us" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"Ut" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkgreencorners2" + }, +/area/simulacrum/interior) +"Uu" = ( +/obj/structure/surface/table/woodentable, +/obj/item/stack/sheet/wood{ + amount = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/interior/wood, +/area/simulacrum/interior) +"Uv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"UA" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Toilet Unit" + }, +/turf/open/floor/plating, +/area/simulacrum/interior) +"UD" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "whitered" + }, +/area/simulacrum/interior) +"UG" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 9; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"UH" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + icon_state = "west_wall" + }, +/turf/closed/ice_rock/corners, +/area/simulacrum/interior) +"UI" = ( +/turf/closed/ice/corner, +/area/simulacrum/interior) +"UJ" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/simulacrum/interior) +"UO" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "GammaSouthID"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/simulacrum/interior) +"UU" = ( +/turf/open/desert/rock, +/area/simulacrum/desert) +"UW" = ( +/turf/closed/ice/corner{ + dir = 4 + }, +/area/simulacrum/interior/exterior) +"UX" = ( +/obj/item/storage/toolbox/emergency, +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 1; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"UZ" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"Vb" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement{ + icon_state = "cement14" + }, +/area/simulacrum/interior/exterior) +"Vc" = ( +/obj/item/ammo_magazine/sniper{ + current_rounds = 6 + }, +/turf/open/auto_turf/shale/layer1, +/area/simulacrum/interior/exterior) +"Vj" = ( +/obj/item/lightstick/red/planted, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior/exterior) +"Vl" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat{ + icon_state = "retrosquares" + }, +/area/simulacrum/interior) +"Vo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/shiva{ + icon_state = "multi_tiles" + }, +/area/simulacrum/interior) +"Vp" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whiteredcorner" + }, +/area/simulacrum/interior) +"Vq" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"Vr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior) +"Vu" = ( +/obj/structure/barricade/plasteel/wired, +/turf/open/floor/corsat{ + icon_state = "officesquares" + }, +/area/simulacrum/interior) +"Vz" = ( +/obj/structure/barricade/plasteel/wired, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"VA" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "33" + }, +/area/simulacrum/interior/exterior) +"VD" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"VE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat{ + icon_state = "retrosquares" + }, +/area/simulacrum/interior) +"VF" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1; + icon_state = "full_corners" + }, +/obj/structure/ice/ice_rock/cornerOverlay, +/turf/closed/ice_rock/corners, +/area/simulacrum/interior) +"VJ" = ( +/turf/closed/wall/rock/brown, +/area/simulacrum/interior/exterior) +"VK" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/handset, +/turf/open/floor{ + dir = 8; + icon_state = "carpet15-15" + }, +/area/simulacrum/interior) +"VL" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"VM" = ( +/obj/structure/simulacrum_device/central, +/turf/open/floor/void, +/area/simulacrum) +"VO" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"VQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/plating, +/area/simulacrum/interior) +"VV" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/simulacrum/interior) +"VX" = ( +/obj/structure/barricade/plasteel/wired, +/turf/open/floor{ + dir = 8; + icon_state = "whiteredcorner" + }, +/area/simulacrum/interior) +"VY" = ( +/turf/open/floor/almayer/research/containment/entrance{ + dir = 8 + }, +/area/simulacrum/interior) +"VZ" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, +/area/simulacrum/interior) +"Wa" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/simulacrum/interior) +"Wd" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"Wf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/ice, +/area/simulacrum/interior) +"Wg" = ( +/turf/closed/ice/corner{ + dir = 1 + }, +/area/simulacrum/interior) +"Wm" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Administration"; + req_access_txt = "106" + }, +/turf/open/floor/corsat{ + icon_state = "officesquares" + }, +/area/simulacrum/interior) +"Wo" = ( +/obj/item/stack/sheet/metal, +/obj/item/shard, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"Wq" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"Wv" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/simulacrum/interior) +"WA" = ( +/turf/open/floor/almayer/research/containment/corner{ + dir = 1 + }, +/area/simulacrum/interior) +"WE" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 30 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/simulacrum/interior) +"WF" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/auto_turf/snow/layer1, +/area/simulacrum/interior/exterior) +"WH" = ( +/turf/open/ice, +/area/simulacrum/interior) +"WJ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/ashtray/bronze, +/turf/open/floor{ + dir = 8; + icon_state = "carpet15-15" + }, +/area/simulacrum/interior) +"WK" = ( +/turf/open/floor/corsat{ + dir = 1; + icon_state = "bluecorner" + }, +/area/simulacrum/interior) +"WL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior/exterior) +"WP" = ( +/obj/structure/mineral_door/resin/thick, +/turf/open/desert/dirt, +/area/simulacrum/interior/exterior) +"WS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Administration Office" + }, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"WT" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/simulacrum/interior) +"WU" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/gm/grass/grass1/weedable, +/area/simulacrum/interior) +"WV" = ( +/obj/effect/alien/weeds/node, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/almayer/research/containment/floor2, +/area/simulacrum/interior) +"WW" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "17" + }, +/area/simulacrum/interior/exterior) +"WX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "redcorner" + }, +/area/simulacrum/interior) +"WZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "retrosquares" + }, +/area/simulacrum/interior) +"Xe" = ( +/obj/structure/surface/table, +/obj/item/device/defibrillator, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"Xh" = ( +/obj/structure/disposalpipe/segment, +/turf/open/auto_turf/snow/layer0, +/area/simulacrum/interior/exterior) +"Xi" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "28" + }, +/area/simulacrum/interior/exterior) +"Xm" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat{ + icon_state = "red" + }, +/area/simulacrum/interior) +"Xp" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat, +/area/simulacrum/interior) +"Xv" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"Xx" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"XA" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "GammaSouthID"; + name = "Security Shutters" + }, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/simulacrum/interior) +"XB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva{ + icon_state = "multi_tiles" + }, +/area/simulacrum/interior) +"XD" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/plating, +/area/simulacrum/interior/exterior) +"XE" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "71" + }, +/area/simulacrum/interior/exterior) +"XH" = ( +/obj/structure/bed/chair/wheelchair, +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "whitered" + }, +/area/simulacrum/interior) +"XN" = ( +/obj/structure/surface/table, +/obj/item/trash/chips{ + pixel_x = 2; + pixel_y = 8 + }, +/turf/open/floor/shiva{ + icon_state = "green" + }, +/area/simulacrum/interior) +"XO" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "purplewhite" + }, +/area/simulacrum/interior) +"XP" = ( +/turf/open/auto_turf/snow/layer3, +/area/simulacrum/interior/exterior) +"XZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat{ + icon_state = "retrosquares" + }, +/area/simulacrum/interior) +"Ya" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + dir = 10; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"Yc" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "72" + }, +/area/simulacrum/interior) +"Ye" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "bluegrey" + }, +/area/simulacrum/interior) +"Yg" = ( +/turf/open/space/basic, +/area/space) +"Yh" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat{ + icon_state = "retrosquares" + }, +/area/simulacrum/interior) +"Yl" = ( +/turf/closed/shuttle/dropship2/tornado{ + icon_state = "64" + }, +/area/simulacrum/interior) +"Yo" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/simulacrum/interior/exterior) +"Ys" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"Yw" = ( +/turf/open/floor{ + dir = 1; + icon_state = "whiteredcorner" + }, +/area/simulacrum/interior) +"Yy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "whiteredfull" + }, +/area/simulacrum/interior) +"Yz" = ( +/obj/structure/machinery/camera/autoname{ + network = list("omega") + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "red" + }, +/area/simulacrum/interior) +"YC" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"YE" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "squareswood" + }, +/area/simulacrum/interior) +"YJ" = ( +/obj/structure/ice/thin/end, +/turf/open/ice, +/area/simulacrum/interior) +"YL" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat{ + icon_state = "purple" + }, +/area/simulacrum/interior) +"YM" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/auto_turf/snow/layer1, +/area/simulacrum/interior/exterior) +"YN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"YP" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat{ + icon_state = "officesquares" + }, +/area/simulacrum/interior) +"YR" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random/claymore/highchance{ + dir = 8 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"YS" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/obj/structure/largecrate/supply/floodlights{ + layer = 3.1; + pixel_y = 9 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, +/area/simulacrum/interior/exterior) +"YT" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" + }, +/turf/open/floor/shiva{ + dir = 1; + icon_state = "greencorners" + }, +/area/simulacrum/interior) +"YV" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva{ + icon_state = "green" + }, +/area/simulacrum/interior) +"YW" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"YX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor{ + dir = 9; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"YY" = ( +/turf/closed/ice/end, +/area/simulacrum/interior) +"YZ" = ( +/obj/structure/mineral_door/resin/thick, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, +/area/simulacrum/interior/exterior) +"Zd" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor{ + dir = 9; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"Ze" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "spiralplate" + }, +/area/simulacrum/interior) +"Zf" = ( +/turf/open/shuttle/dropship{ + icon_state = "rasputin7" + }, +/area/simulacrum/interior) +"Zg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Underground Men's Restroom" + }, +/turf/open/floor/plating, +/area/simulacrum/interior) +"Zj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/simulacrum/interior) +"Zk" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/simulacrum/interior) +"Zm" = ( +/turf/open/floor{ + dir = 8; + icon_state = "carpet7-3" + }, +/area/simulacrum/interior) +"Zr" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat{ + icon_state = "retrosquares" + }, +/area/simulacrum/interior) +"Zz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat{ + icon_state = "red" + }, +/area/simulacrum/interior) +"ZE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor{ + dir = 4; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"ZK" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/simulacrum/interior) +"ZL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat{ + icon_state = "retrosquareslight" + }, +/area/simulacrum/interior) +"ZO" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/barricade/metal/wired, +/turf/open/floor/plating, +/area/simulacrum/interior) +"ZQ" = ( +/turf/closed/ice_rock/singlePart{ + dir = 8 + }, +/area/simulacrum/interior/exterior) +"ZR" = ( +/turf/closed/wall/resin/thick, +/area/simulacrum/interior/exterior) +"ZT" = ( +/turf/open/floor/corsat{ + dir = 4; + icon_state = "bluegreycorner" + }, +/area/simulacrum/interior) +"ZV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/mineral_door/resin/thick, +/turf/open/floor/corsat{ + icon_state = "retrosquares" + }, +/area/simulacrum/interior) +"ZW" = ( +/obj/structure/surface/table, +/obj/item/folder/white, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 5; + icon_state = "whitered" + }, +/area/simulacrum/interior) +"ZY" = ( +/turf/open/floor/corsat{ + dir = 1; + icon_state = "squareswood" + }, +/area/simulacrum/interior) +"ZZ" = ( +/turf/open/floor/corsat{ + icon_state = "retrosquareslight" + }, +/area/simulacrum/interior) + +(1,1,1) = {" +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +"} +(2,1,1) = {" +vx +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +vx +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(3,1,1) = {" +vx +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +vx +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(4,1,1) = {" +vx +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +vx +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(5,1,1) = {" +vx +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +vx +aW +aW +aW +aW +aW +aW +aW +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(6,1,1) = {" +vx +mq +BV +BV +BV +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +aW +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(7,1,1) = {" +vx +mq +BV +BV +BV +mq +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(8,1,1) = {" +vx +mq +BV +BV +BV +mq +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(9,1,1) = {" +vx +mq +BV +BV +BV +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(10,1,1) = {" +vx +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +aW +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(11,1,1) = {" +vx +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(12,1,1) = {" +vx +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(13,1,1) = {" +vx +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +BV +BV +BV +mq +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(14,1,1) = {" +vx +aW +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +mq +BV +BV +BV +mq +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(15,1,1) = {" +vx +aW +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +mq +BV +BV +BV +mq +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(16,1,1) = {" +vx +aW +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +mq +BV +BV +BV +mq +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(17,1,1) = {" +vx +aW +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +mq +BV +BV +BV +mq +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +aW +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(18,1,1) = {" +vx +aW +mq +BV +BV +BV +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +mq +BV +BV +BV +mq +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(19,1,1) = {" +vx +aW +mq +BV +BV +BV +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +mq +BV +BV +BV +mq +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(20,1,1) = {" +vx +aW +mq +BV +BV +BV +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +mq +BV +BV +BV +mq +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(21,1,1) = {" +vx +aW +mq +BV +BV +BV +mq +BV +BV +oz +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +BV +BV +BV +mq +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(22,1,1) = {" +vx +aW +mq +BV +BV +BV +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(23,1,1) = {" +vx +aW +mq +BV +BV +BV +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(24,1,1) = {" +vx +aW +mq +BV +BV +BV +mq +BV +BV +VM +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(25,1,1) = {" +vx +aW +mq +BV +BV +BV +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(26,1,1) = {" +vx +aW +mq +BV +BV +BV +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(27,1,1) = {" +vx +aW +mq +BV +BV +BV +mq +BV +BV +oz +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(28,1,1) = {" +vx +aW +mq +BV +BV +BV +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(29,1,1) = {" +vx +aW +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(30,1,1) = {" +vx +aW +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(31,1,1) = {" +vx +aW +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(32,1,1) = {" +vx +aW +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(33,1,1) = {" +vx +aW +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(34,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(35,1,1) = {" +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(36,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(37,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(38,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(39,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(40,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +aW +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +aW +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(41,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(42,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(43,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(44,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(45,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(46,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(47,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(48,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(49,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(50,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(51,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(52,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(53,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(54,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(55,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(56,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(57,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(58,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(59,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(60,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(61,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(62,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(63,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(64,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(65,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(66,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(67,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +aW +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(68,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(69,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(70,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(71,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(72,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(73,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +aW +aW +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(74,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(75,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +ys +ys +ys +ys +ys +ys +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(76,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +ys +cc +cc +cc +cc +ys +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(77,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +ys +cc +cc +cc +cc +ys +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(78,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +ys +cc +cc +cc +cc +cA +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(79,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +ys +cc +cc +cc +cc +ys +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(80,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +ys +cc +cc +cc +cc +ys +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(81,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +ys +ys +ys +ys +ys +ys +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(82,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(83,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(84,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(85,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(86,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(87,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(88,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(89,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +Po +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(90,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(91,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(92,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(93,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(94,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(95,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(96,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(97,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(98,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(99,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(100,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(101,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(102,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(103,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(104,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(105,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(106,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(107,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(108,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(109,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(110,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(111,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(112,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(113,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +aW +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(114,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(115,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(116,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(117,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(118,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +aW +aW +aW +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(119,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +aW +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(120,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(121,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(122,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(123,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(124,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(125,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(126,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(127,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(128,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +aW +UU +UU +UU +UU +aW +aW +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(129,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(130,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(131,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(132,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(133,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(134,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(135,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(136,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +aW +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(137,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(138,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(139,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(140,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(141,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(142,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(143,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(144,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(145,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(146,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(147,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(148,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(149,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(150,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +aW +aW +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(151,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +aW +aW +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(152,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +aW +aW +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(153,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(154,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(155,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(156,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(157,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(158,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(159,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(160,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(161,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(162,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(163,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(164,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(165,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(166,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(167,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(168,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(169,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(170,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(171,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(172,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(173,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(174,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(175,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +UU +UU +UU +UU +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(176,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(177,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(178,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(179,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(180,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(181,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(182,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(183,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(184,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(185,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(186,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(187,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(188,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(189,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(190,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(191,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(192,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(193,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(194,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(195,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(196,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(197,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(198,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(199,1,1) = {" +vx +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +vx +"} +(200,1,1) = {" +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +vx +"} + +(1,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(2,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(3,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(4,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(5,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +wd +kx +XP +XP +XP +XP +EH +XP +XP +XP +XP +XP +XP +XP +XP +XP +Na +XP +XP +XP +XP +XP +IY +XP +IY +XP +XP +XP +XP +XP +XP +ZR +XP +XP +XP +XP +XP +wd +oB +Vq +Ez +Vq +Vq +Vq +Vq +ZR +Vq +Vq +Vq +Ez +Vq +Vq +ZR +ZR +Vq +Vq +Vq +Vq +Ez +JK +Vq +Vq +Vq +Vq +Vq +JK +Nu +Nu +Nu +Vq +Vq +Vq +Vq +oB +wd +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(6,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +wd +XP +XP +kx +XP +XP +ZR +ZR +XP +XP +XP +kx +XP +XP +XP +kx +XP +XP +kx +XP +XP +XP +ZR +kx +ZR +XP +XP +XP +XP +XP +XP +IY +XP +XP +XP +XP +Na +wd +oB +Vq +Vq +Vq +Vq +Vq +Vq +ZR +ZR +Vq +Vq +Vq +TM +Vq +ZR +ZR +Vq +Vq +Vq +Vq +Vq +JK +Ez +Vq +TM +Ez +Vq +ZR +Nu +Nu +Vq +hs +Nu +Vq +Vq +oB +wd +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +vr +XP +XP +XP +XP +XP +XP +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(7,1,2) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Yg +Yg +Yg +VJ +wu +fY +fY +fY +fY +VJ +wu +Pp +Pp +Pp +Pp +Pp +Pp +Pp +Pp +Pp +Pp +Pp +wu +Pp +Pp +VJ +fY +fY +fY +fY +fY +fY +fY +VJ +wd +XP +XP +XP +XP +XP +XP +ZR +ZR +XP +XP +XP +XP +XP +XP +ZR +XP +ZR +XP +XP +XP +XP +IY +XP +IY +XP +kx +XP +XP +kx +XP +IY +XP +kx +XP +XP +XP +wd +oB +Vq +Vq +Vq +Vq +Vq +Vq +Vq +JK +Vq +Vq +Vq +Vq +Vq +Vq +ZR +ZR +Vq +Vq +Vq +Vq +ZR +Vq +Vq +Vq +Vq +Vq +JK +Vq +Vq +Nu +Nu +Nu +Vq +Vq +oB +wd +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +vr +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(8,1,2) = {" +kZ +xB +Cz +WP +Ho +Ho +Cz +WP +Ho +Ho +Ho +Ho +Ho +WP +Cz +Ho +Ho +Ho +xB +kZ +Yg +Yg +Yg +VJ +fY +uF +uF +fY +fY +VJ +VJ +VJ +Pp +CC +Pp +wu +Pp +Pp +wu +Pp +Pp +Pp +Pp +Pp +CC +Pp +VJ +Pp +fY +fY +fY +fY +fY +VJ +wd +XP +XP +XP +XP +EZ +EZ +kx +ZR +XP +XP +XP +XP +XP +XP +ZR +ZR +ZR +XP +XP +XP +XP +ZR +ZR +ZR +ZR +XP +XP +XP +XP +XP +ZR +XP +XP +XP +XP +XP +wd +oB +Vq +Vq +Vq +hs +Vq +Vq +Vq +ZR +Ez +Vq +Vq +Vq +Vq +Ez +Vq +JK +Ez +Vq +Vq +Vq +ZR +Vq +Vq +Vq +Vq +Vq +ZR +Ez +Vq +Vq +Vq +Nu +Vq +Vq +oB +wd +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +vr +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(9,1,2) = {" +kZ +WP +ZR +ZR +Ho +Ho +Cz +WP +Ho +Ho +Ho +Ho +Ho +ZR +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +CC +uF +fY +fY +fY +fY +fY +VJ +VJ +Pp +Pp +Pp +Pp +Pp +Pp +Pp +Pp +wu +Pp +VJ +VJ +VJ +VJ +Om +ZR +wu +fY +fY +fY +VJ +wd +kx +XP +XP +XP +ZR +IY +ZR +ZR +ZR +ZR +ZR +XP +XP +XP +ZR +XP +ZR +ZR +ZR +EZ +EZ +ZR +XP +XP +ZR +ZR +ZR +ZR +ZR +ZR +ZR +XP +XP +XP +XP +kx +wd +oB +Vq +Vq +Nu +Nu +Nu +Vq +Vq +ZR +ZR +Nu +Nu +Nu +Nu +Nu +ZR +ZR +ZR +ZR +ZR +ZR +Vq +Vq +Vq +Vq +Vq +Vq +ZR +Vq +Vq +Vq +Vq +Vq +Ez +Vq +oB +wd +XP +XP +XP +XP +XP +XP +vr +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +vr +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(10,1,2) = {" +kZ +Ho +Ho +ZR +Ho +sO +Ho +ZR +Ho +Ho +Ho +ZR +ZR +ZR +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +wu +fY +Pp +ZR +ZR +VJ +Gp +Gp +Gp +mp +ty +Gp +PG +Gp +Gp +VJ +VJ +fY +fY +fY +Pp +fY +ZR +fY +fY +fY +VJ +wd +XP +XP +ZR +ZR +ZR +XP +XP +XP +XP +XP +ZR +EH +ZR +EH +ZR +XP +kx +XP +ZR +IY +IY +ZR +XP +XP +XP +kx +XP +XP +XP +ZR +ZR +XP +XP +XP +XP +XP +wd +oB +Vq +Vq +Nu +Vq +Nu +Vq +Vq +Vc +ZR +oB +oB +oB +oB +eE +Vq +TY +VD +VD +VD +GM +Vq +Vq +Ez +Vq +Vq +Vq +ZR +Vq +Vq +Vq +Vq +Vq +Vq +Vq +oB +wd +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +vr +XP +XP +XP +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(11,1,2) = {" +kZ +Cz +sO +ZR +Ho +Ho +ZR +ZR +sO +Cz +Cz +ZR +Ho +Ho +sO +Ho +sO +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +ZR +ZR +Om +ZR +fY +fY +Gp +nE +rU +Ut +DM +rU +rU +yp +WU +Pp +wu +fY +fY +CC +fY +fY +ZR +ZR +fY +fY +VJ +wd +ZR +IY +ZR +XP +XP +XP +XP +jV +jQ +jQ +jQ +bQ +jQ +jQ +jQ +jQ +jQ +jQ +jQ +jQ +jQ +jQ +jQ +cb +fM +vr +ce +ce +vr +vr +ZR +ZR +XP +XP +XP +XP +wd +oB +Ez +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Nu +lw +ZR +jn +kG +zI +Ef +NS +Cw +NS +An +zI +Lm +Vq +Vq +Nu +Nu +ZR +ZR +Nu +Vq +Vq +Vq +Vq +Vq +oB +wd +XP +XP +XP +XP +XP +XP +XP +jV +jQ +jQ +jQ +bQ +jQ +jQ +jQ +jQ +jQ +jQ +jQ +jQ +jQ +jQ +jQ +cb +fM +vr +ce +ce +vr +vr +XP +XP +XP +XP +XP +XP +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(12,1,2) = {" +kZ +WP +WP +ZR +WP +ZR +ZR +ZR +ZR +eg +eg +kZ +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +ZR +ZR +ZR +ZR +fY +Pp +fY +fY +Pp +ZK +nA +yS +le +Qv +Qv +Qv +YV +AL +Pp +fY +fY +fY +fY +fY +uF +ZR +fY +ZR +Om +VJ +wd +XP +XP +ZR +ZR +XP +XP +kx +hx +Xh +Xh +Xh +Xh +Xh +Xh +Xh +Xh +Xh +Xh +Xh +Xh +IR +Xh +Xh +Xh +NZ +ab +WF +ce +ce +vr +XP +ZR +XP +XP +XP +XP +wd +oB +Vq +Vq +Vq +Vq +Vq +Vq +Ez +Vq +Vq +ZR +ZR +kG +zI +qG +NS +NS +NS +jK +NS +NS +NS +Cn +zI +wh +Vq +wg +Nu +ZR +ZR +Nu +Vq +Vq +Vq +Vq +oB +wd +XP +XP +XP +XP +XP +XP +XP +hx +Xh +Xh +Xh +Xh +Xh +Xh +Xh +Xh +Xh +Xh +Xh +Xh +IR +Xh +Xh +Xh +NZ +ab +WF +ce +ce +vr +XP +XP +XP +XP +XP +XP +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(13,1,2) = {" +kZ +Ho +Ho +ZR +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +kZ +ZR +Ho +Ho +ZR +ZR +WP +kZ +Yg +Yg +Yg +VJ +fY +wu +fY +fY +fY +fY +wu +fY +Pp +ZK +YT +Oe +zG +Qv +Qv +Oe +iV +Gp +ZR +fY +fY +fY +fY +uF +uF +ZR +fY +fY +Pp +VJ +wd +XP +XP +XP +XP +ZR +XP +XP +Jo +wS +RX +RX +RX +RX +ce +RX +RX +RX +RX +RX +ce +RX +RX +RX +RX +zB +WL +HW +jQ +ce +vr +zT +xq +Lu +Lu +kx +XP +wd +oB +ZR +ZR +EH +JK +ZR +Vq +Vq +Vq +ZR +ZR +kG +qG +NS +NS +PS +pm +pm +TD +pm +pm +PS +NS +fR +Cn +Lm +Vq +wg +Nu +ZR +hs +Nu +Vq +Ez +Vq +oB +wd +XP +XP +XP +XP +XP +XP +XP +Jo +wS +RX +RX +RX +RX +ce +RX +RX +RX +RX +RX +ce +RX +RX +RX +RX +zB +WL +HW +jQ +ce +vr +Lu +Lu +Lu +Lu +XP +XP +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(14,1,2) = {" +kZ +Ho +Cz +WP +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +WP +Cz +Ho +ZR +Ho +Cz +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +fY +fY +fY +fY +Gp +Nn +Qv +bL +vA +bO +Qv +wr +Gp +fY +ZR +fY +fY +fY +uF +JX +ZR +fY +fY +fY +VJ +wd +kx +XP +XP +XP +ZR +ZR +XP +fo +rR +ce +ce +ce +vr +vr +ce +ce +vr +vr +vr +vr +ce +vr +ce +ce +AN +ng +YM +ce +vr +XP +XP +IY +XP +XP +XP +XP +wd +oB +Ez +Vq +Vq +Vq +ZR +ZR +ZR +ZR +kG +tC +qG +NS +Cw +Nb +Nb +kN +Nb +jK +Nb +Nb +Kq +kN +dk +wI +Cn +zI +Lm +ZR +Nu +Nu +Nu +Vq +Vq +Vq +oB +wd +XP +XP +XP +XP +XP +XP +XP +fo +rR +ce +ce +ce +vr +vr +ce +ce +vr +vr +vr +vr +ce +vr +ce +ce +AN +ng +YM +ce +vr +XP +XP +XP +XP +XP +XP +XP +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(15,1,2) = {" +kZ +kZ +kZ +kZ +Gp +Gp +ZK +ZK +Gp +Gp +Ho +Ho +Ho +WP +Cz +Ho +ZR +sO +Cz +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +fY +fY +fY +Pp +ZK +Nn +Qv +Sp +Qv +KC +Qv +YV +ZK +Pp +ZR +ZR +wu +fY +uF +uF +ZR +fY +fY +fY +VJ +wd +XP +XP +XP +XP +XP +IY +XP +Bf +Eu +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +yt +Yy +QH +QH +QH +XP +ce +ZR +ZR +ZR +IY +IY +wd +oB +Vq +Vq +Vq +Vq +bf +Vq +kG +MI +qG +NS +NS +NS +Jy +kF +SP +LD +Ac +jK +pm +pm +pm +Nb +cX +dk +NS +NS +xT +zI +Lm +Nu +Nu +Vq +Vq +Vq +oB +wd +XP +XP +XP +XP +XP +XP +XP +Bf +Eu +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +yt +Yy +QH +QH +QH +XP +XP +XP +XP +XP +XP +XP +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(16,1,2) = {" +kZ +kZ +kZ +kZ +Gp +Cb +kU +kU +pn +Gp +Vb +Ho +Ho +ZR +ZR +ZR +ZR +ZR +WP +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +fY +fY +fY +Pp +ZK +KN +Oe +Sp +KC +KC +Qv +YV +ZK +Pp +fY +fY +ZR +Om +ZR +ZR +fY +fY +fY +fY +VJ +wd +XP +XP +XP +kx +XP +IY +XP +IB +RX +QH +vE +VO +dG +Gp +el +cD +dm +cD +JE +cD +IP +QH +Qg +fv +Bq +Fp +nW +Jv +QH +XP +XP +ce +ZR +kx +XP +XP +wd +oB +Vq +Vq +Vq +Vq +Vq +kG +qG +ZR +NS +NS +pm +pm +pe +bE +GY +pm +pm +za +EU +Ss +pm +Nb +Ss +pm +pm +ZR +NS +NS +Cn +Lm +Vq +Vq +Vq +TM +oB +wd +XP +XP +XP +XP +vr +XP +XP +IB +RX +QH +vE +VO +dG +Gp +el +cD +dm +cD +JE +cD +Ya +QH +Qg +fv +Bq +Fp +nW +Jv +QH +XP +XP +XP +XP +XP +XP +XP +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(17,1,2) = {" +Yg +kZ +kZ +kZ +Gp +sP +Ik +FL +IQ +ZK +hY +Ho +Ho +ZR +ZR +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +wu +fY +fY +fY +wu +Gp +GK +Vo +XB +vA +vA +KK +XN +Gp +fY +fY +fY +fY +Pp +wu +fY +fY +fY +wu +fY +VJ +wd +XP +XP +XP +XP +XP +ZR +XP +rn +RX +QH +AG +Tr +Hb +Gp +QJ +qb +ax +qb +nb +qb +mg +QH +aV +Tr +xs +cS +Tr +Ld +QH +XP +sq +ZR +ZR +ZR +IY +IY +wd +oB +Vq +Vq +Ez +Vq +kG +qG +NS +ZR +ZR +za +jK +jK +jK +jK +RC +jK +jK +jK +jK +jK +jK +jK +jK +jK +za +ZR +jK +NS +Cw +Cn +Lm +Vq +Ez +Vq +oB +wd +XP +XP +XP +XP +XP +XP +XP +rn +RX +QH +AG +Tr +Hb +Gp +QJ +qb +ax +qb +nb +qb +mg +QH +aV +Tr +xs +cS +Tr +Ld +QH +XP +sq +XP +XP +XP +XP +XP +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(18,1,2) = {" +Yg +kZ +kZ +kZ +Gp +xc +lT +Ik +en +ZK +hY +Ho +Ho +Ho +sO +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +ZR +ZR +fY +Pp +fY +fY +fY +fY +fY +Gp +kf +Cd +kj +KE +at +Cd +jq +Gp +wu +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +VJ +wd +XP +XP +XP +ZR +ZR +ZR +XP +IB +Vj +QH +aE +jm +Dw +Gp +EE +Tr +Nd +jm +Tr +Tr +XH +Gp +ac +rm +tb +cn +Tr +tF +QH +XP +XP +ZR +XP +XP +XP +kx +wd +oB +TM +Vq +Vq +Vq +au +NS +NS +ZR +ZR +ZR +ZR +ZR +Az +zQ +Az +Az +zQ +Az +Bb +Xi +rl +On +XD +Az +Az +Hz +Az +Az +NS +NS +pz +Vq +Vq +Vq +oB +wd +XP +XP +XP +XP +XP +XP +XP +IB +Vj +QH +aE +jm +Dw +Gp +EE +Tr +Nd +jm +Tr +Tr +XH +Gp +ac +rm +tb +cn +Tr +tF +QH +XP +XP +XP +vr +XP +XP +XP +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(19,1,2) = {" +Yg +kZ +kZ +kZ +Gp +up +bs +mT +Pv +ZK +hY +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +ZR +ZR +Om +ZR +fY +fY +Gp +Gp +Gp +pk +Zg +Gp +Gp +Gp +ki +pk +Gp +Gp +Gp +fY +fY +fY +ZR +ZR +ZR +Om +ZR +ZR +VJ +wd +XP +XP +ZR +ZR +XP +XP +XP +IB +RX +QH +Gp +ad +Gp +Gp +UX +Tr +lu +xs +Tr +Tr +VX +iD +Yw +Tr +Lz +YX +Tr +Ld +QH +XP +ZR +ZR +ce +XP +XP +XP +wd +oB +Vq +Vq +Vq +Vq +nT +NS +ZR +ZR +Az +Az +zQ +ZR +Az +XE +Jj +Dz +Az +Az +KO +rk +No +WW +Bb +Xi +rl +On +lX +Az +jK +NS +kE +ZR +JK +JK +oB +wd +XP +XP +XP +XP +XP +XP +XP +IB +RX +QH +Gp +ad +Gp +Gp +UX +Tr +lu +xs +Tr +Tr +VX +iD +Yw +Tr +Lz +YX +Tr +Ld +QH +XP +XP +XP +XP +XP +XP +XP +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(20,1,2) = {" +Yg +aB +Gp +Gp +Gp +bs +Mc +Ao +iz +Gp +qC +Ho +Ho +Ho +Ho +Ho +sO +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +Pp +ZR +ZR +ZR +Gp +eD +UA +vl +fk +Wq +Gp +TV +tv +vl +UA +sG +Gp +fY +ZR +Om +ZR +fY +fY +Pp +ZR +fY +VJ +wd +IY +IY +ZR +ZR +ZR +XP +XP +IB +RX +ZK +UG +tc +tu +tu +uW +ap +tm +rg +tm +tm +FT +fV +DG +tm +MH +Ci +jM +Ld +QH +XP +IY +XP +XP +kx +XP +XP +wd +oB +Vq +Vq +ZR +JK +Qh +ZR +ZR +Az +Az +Az +Az +ZR +IH +Yc +nd +gk +ux +rz +ov +ig +Cm +nR +KO +rk +No +WW +St +Az +jK +ZR +Dq +ZR +Vq +Vq +oB +wd +XP +XP +XP +XP +XP +XP +XP +IB +RX +ZK +UG +tc +tu +tu +uW +ap +tm +rg +tm +tm +FT +fV +DG +tm +MH +Ci +jM +Ld +QH +XP +XP +XP +XP +XP +XP +XP +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(21,1,2) = {" +Yg +aB +oc +PK +Gp +PK +WT +vH +pL +Pi +RM +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +fY +fY +Gp +Gp +Gp +LJ +xs +xQ +Gp +aC +xs +ji +Gp +Gp +Gp +ZR +fY +Pp +ZR +wu +fY +fY +ZR +fY +VJ +wd +kx +XP +XP +XP +ZR +XP +XP +IB +RX +ZK +wj +xs +AK +nv +kC +xs +bw +bw +bw +bw +yD +Gp +sU +ZE +lh +GI +KD +uy +QH +XP +IY +XP +XP +XP +XP +XP +wd +oB +ZR +ZR +ZR +Vq +iy +NS +Nb +Az +zQ +Az +Az +Bb +Bd +rV +ip +rV +dc +dc +rV +lf +rV +rA +ov +ig +Cm +ov +th +Hz +eE +ZR +Sk +ZR +Vq +Vq +oB +wd +XP +XP +vr +XP +XP +XP +XP +IB +RX +ZK +wj +xs +AK +nv +kC +xs +bw +bw +bw +bw +yD +Gp +sU +ZE +lh +GI +KD +uy +QH +XP +XP +XP +XP +XP +XP +XP +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(22,1,2) = {" +Yg +aB +ag +bH +bi +bs +Uu +PK +Gu +PK +RM +Ho +Ho +ZR +ZR +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +wu +fY +fY +fY +wu +Gp +eD +UA +Tr +xs +zR +Gp +bA +xs +Tr +UA +sG +Gp +fY +fY +fY +ZR +fY +fY +fY +ZR +ZR +VJ +wd +XP +XP +XP +XP +ZR +ZR +XP +IB +RX +QH +Gp +fJ +Gp +Gp +Gp +oL +Gp +Gp +Gp +Gp +Gp +Gp +pk +pk +Qp +uJ +QH +QH +QH +di +ZR +XP +XP +sq +XP +Na +wd +oB +Vq +Vq +Vq +Vq +iy +NS +Nb +Az +Az +JB +EL +Fh +Gh +ms +ux +ux +ux +ux +bc +ux +yI +Aw +tr +ip +rV +ZO +sx +Az +jK +ZR +Dq +Vq +Vq +Vq +oB +wd +XP +XP +XP +XP +XP +XP +XP +IB +RX +QH +Gp +fJ +Gp +Gp +Gp +oL +Gp +Gp +Gp +Gp +Gp +Gp +pk +pk +Qp +uJ +QH +QH +QH +di +XP +XP +XP +sq +XP +XP +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(23,1,2) = {" +Yg +aB +KL +vH +Gp +up +bH +bH +hU +Gp +an +Ho +Ho +ZR +ZR +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +fY +fY +Gp +Gp +Gp +Tr +uA +Tr +PU +Tr +xs +Tr +Gp +Gp +Gp +fY +fY +fY +Om +fY +fY +fY +fY +fY +VJ +wd +XP +XP +XP +XP +XP +ZR +XP +IB +RX +QH +Zd +xs +Gk +Gp +CX +xs +yW +lD +lD +Ol +Is +Gp +qt +Oh +nk +zE +QH +di +XP +XP +ZR +ZR +kx +XP +XP +XP +wd +oB +Vq +Vq +Ez +Vq +iy +NS +Nb +Az +Az +QP +MF +HR +sr +Fe +qO +tH +eA +eA +ou +hT +Fe +VZ +ux +ux +ux +qm +Az +Az +jK +NS +Dq +Vq +Ez +Vq +oB +wd +XP +XP +XP +XP +XP +XP +XP +IB +RX +QH +Zd +xs +Gk +Gp +CX +xs +yW +lD +lD +Ol +Is +Gp +qt +Oh +nk +zE +QH +di +XP +XP +XP +XP +XP +XP +XP +XP +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(24,1,2) = {" +Yg +aB +Gp +Gp +Gp +Ru +bH +gH +Pv +ZK +hY +Ho +Ho +Ho +Ho +Ho +Ho +sO +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +fY +fY +Gp +tt +UA +yj +xs +AL +AL +zR +xs +YW +UA +sG +Gp +fY +fY +fY +ZR +fY +fY +fY +fY +fY +VJ +wd +Na +XP +XP +kx +XP +ZR +XP +IB +ce +QH +Nv +Xv +Hb +Gp +GS +Xv +Tr +Tr +Tr +Tr +Vz +RN +Tr +bx +Xv +Hb +QH +di +di +di +di +ZR +XP +XP +XP +XP +wd +oB +Vq +Vq +Vq +Vq +iy +NS +Kq +Az +Az +Pn +hd +yV +Gh +Zf +ux +ux +ux +ux +ux +ux +PA +tX +VV +AC +BF +jB +uU +XD +za +NS +Dq +Vq +Vq +Vq +oB +wd +XP +XP +XP +XP +XP +XP +XP +IB +ce +QH +Nv +Xv +Hb +Gp +GS +Xv +Tr +Tr +Tr +Tr +Vz +RN +Tr +bx +Xv +Hb +QH +di +di +di +XP +XP +XP +XP +XP +XP +wd +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +"} +(25,1,2) = {" +Yg +aB +ag +bH +Gp +up +sM +bH +Pv +ZK +hY +Ho +Ho +Ho +sO +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +wu +fY +fY +fY +fY +ZR +ZR +Gp +Gp +Gp +Gp +YN +xQ +AL +PU +jd +Gp +Gp +Gp +Gp +fY +wu +fY +ZR +ZR +ZR +fY +fY +fY +VJ +wd +XP +XP +XP +XP +XP +IY +XP +IB +ce +QH +EE +VL +Hb +Gp +jZ +Tr +Tr +Tr +Tr +Tr +Fd +Gp +ZW +Ev +cj +uS +QH +XP +di +XP +XP +ZR +ZR +IY +IY +ZR +wd +oB +Vq +Vq +Vq +Vq +iy +NS +Nb +Az +Az +Az +Az +KO +Bd +BF +AC +WE +mz +mz +BF +qe +BF +OV +Ur +Uc +kP +Ur +hw +Hz +ZR +ZR +Dq +Vq +Vq +Vq +oB +wd +XP +XP +XP +XP +XP +XP +XP +IB +ce +QH +EE +VL +Hb +Gp +jZ +Tr +Tr +Tr +Tr +Tr +Fd +Gp +ZW +Ev +cj +uS +QH +XP +di +XP +XP +XP +XP +vr +XP +XP +wd +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(26,1,2) = {" +Yg +aB +KL +hi +SX +bH +qL +bH +Mx +ZK +bn +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +Pp +ZR +ZR +fY +Gp +bA +Tr +UA +tc +YC +Gp +bA +xs +UA +Tr +xQ +Gp +fY +fY +fY +fY +wu +ZR +fY +fY +fY +VJ +wd +XP +XP +XP +XP +XP +IY +XP +Qf +RX +QH +CP +Tr +UD +QH +ko +Tr +Tr +Tr +Tr +Tr +Fd +QH +QH +QH +QH +QH +QH +XP +XP +XP +XP +ZR +vr +XP +XP +XP +wd +oB +Ez +Vq +Vq +Vq +iy +NS +Nb +Az +Az +zQ +Az +ZR +fq +Ls +Jf +Yl +ux +rz +Ur +Uc +kP +or +Bb +DK +lK +On +Ou +Az +jK +ZR +Sk +JK +JK +ZR +oB +wd +XP +XP +XP +XP +XP +XP +XP +Qf +RX +QH +CP +Tr +UD +QH +ko +Tr +Tr +Tr +Tr +Tr +Fd +QH +QH +QH +QH +QH +QH +XP +XP +XP +XP +XP +XP +XP +XP +XP +wd +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(27,1,2) = {" +Yg +aB +oc +PK +Gp +BW +PK +hi +cz +Gp +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +ZR +ZR +Om +fY +fY +fY +Gp +eD +Tr +Gp +ru +CI +Gp +Tf +Xx +Gp +Tr +sG +Gp +ZR +ZR +fY +fY +fY +ZR +ZR +fY +fY +VJ +wd +kx +XP +XP +XP +XP +ZR +XP +Qf +RX +QH +Sw +AK +uG +QH +ft +ql +Xe +Ln +zC +oi +II +QH +XP +XP +XP +XP +XP +XP +XP +XP +ZR +ZR +vr +XP +XP +kx +wd +oB +Ez +Vq +Vq +Ez +IC +NS +Nb +Az +Az +Az +ZR +ZR +zQ +JS +mA +In +Az +Az +Bb +DK +lK +On +KO +VA +jD +MD +ht +Az +za +NS +FP +Vq +Vq +Vq +oB +wd +XP +XP +vr +XP +XP +XP +XP +Qf +RX +QH +Sw +AK +uG +QH +ft +ql +Xe +Ln +zC +oi +II +QH +XP +XP +XP +XP +XP +XP +XP +XP +vr +XP +XP +XP +XP +XP +wd +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(28,1,2) = {" +kZ +aB +Gp +Gp +Gp +NB +qX +qX +gO +Gp +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +ZR +ZR +ZR +fY +fY +wu +fY +Gp +Gp +Gp +Gp +VQ +pk +Gp +pk +VQ +Gp +Gp +Gp +Gp +ZR +ZR +Om +ZR +fY +fY +ZR +fY +fY +VJ +wd +XP +XP +kx +XP +ZR +ZR +XP +Qf +RX +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +LZ +XP +kx +XP +XP +di +XP +XP +ZR +vr +XP +kx +XP +XP +wd +oB +Vq +Vq +Vq +Vq +au +NS +fR +ZR +ZR +Hz +ZR +Az +Az +Kf +Az +ps +XD +Az +KO +VA +jD +WW +XD +qB +Az +Az +Az +Az +NS +NS +pz +Vq +Ez +Vq +oB +wd +XP +XP +XP +XP +XP +XP +XP +Qf +RX +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +LZ +XP +XP +XP +XP +di +XP +XP +XP +XP +XP +XP +XP +XP +wd +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(29,1,2) = {" +kZ +gK +Ho +Ho +Gp +Gp +ZK +oj +Gp +Gp +Ho +Ho +Ho +ZR +ZR +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +fY +fY +ZR +fY +fY +fY +Pp +Pp +ZR +Pp +Pp +ZR +fY +fY +fY +fY +fY +fY +ZR +fY +fY +ZR +fY +fY +VJ +wd +XP +XP +XP +XP +ZR +XP +XP +Qf +RX +RX +RX +ce +vr +vr +XP +XP +Ri +pf +id +QV +QV +pf +id +FV +qP +XP +di +XP +di +di +ZR +vr +ce +sq +XP +XP +wd +oB +Vq +Vq +Vq +Vq +Jd +Mr +dk +ZR +jK +jK +jK +jK +jK +jK +jK +jK +za +jK +jK +TD +jK +jK +jK +jK +jK +jK +za +NS +NS +SL +Yo +Vq +Vq +Vq +oB +wd +XP +XP +XP +XP +XP +XP +XP +Qf +RX +RX +RX +ce +vr +vr +XP +XP +Ri +pf +id +QV +QV +pf +id +FV +qP +XP +di +XP +di +di +XP +XP +XP +sq +XP +XP +wd +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(30,1,2) = {" +kZ +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +ZR +ZR +ZR +sO +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +ZR +ZR +fY +fY +fY +fY +fY +fY +Om +Pp +fY +Om +Pp +fY +wu +fY +fY +fY +ZR +ZR +wu +ZR +fY +Pp +VJ +wd +IY +IY +ZR +ZR +ZR +XP +kx +Qf +RX +Vj +RX +RX +gm +XP +XP +XP +cH +qP +Sr +QV +NP +QV +pf +id +cH +qP +XP +di +di +XP +ZR +vr +vr +XP +XP +Na +wd +oB +Vq +Vq +Ez +Nu +ZR +Cp +iG +ZR +NS +NS +cX +cX +pm +Nb +pm +pm +pm +jK +cX +cX +pm +Nb +Ss +pm +pm +NS +NS +NS +SL +Yo +Vq +Vq +Vq +Vq +oB +wd +XP +XP +XP +XP +XP +vr +XP +Qf +RX +Vj +RX +RX +gm +XP +XP +XP +cH +qP +Sr +QV +NP +QV +pf +id +cH +qP +XP +di +di +XP +XP +XP +XP +XP +XP +XP +wd +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(31,1,2) = {" +kZ +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +ZR +Ho +ZR +ZR +ZR +WP +kZ +Yg +Yg +Yg +VJ +fY +fY +wu +uF +bX +Om +fY +fY +fY +fY +fY +ZR +Om +ZR +fY +fY +ZR +ZR +fY +fY +fY +fY +fY +fY +ZR +Om +ZR +ZR +Om +VJ +wd +XP +XP +XP +XP +ZR +XP +XP +eL +vr +vr +RX +RX +ce +vr +kx +XP +XP +jJ +Sr +QV +ZQ +QV +QV +Sr +LZ +cH +Sy +PQ +XP +di +CE +PQ +vr +kx +XP +XP +wd +oB +JK +JK +ZR +ZR +ZR +Vq +Jd +pM +Mr +NS +NS +NS +pe +Kq +pm +pm +pm +jK +En +YS +xn +Nb +pm +NS +NS +ZR +SL +bC +Yo +Vq +Vq +Vq +Ez +Vq +oB +wd +XP +XP +XP +XP +XP +XP +XP +eL +vr +vr +RX +RX +ce +vr +XP +XP +XP +jJ +Sr +QV +ZQ +QV +QV +Sr +LZ +cH +Sy +PQ +XP +di +CE +PQ +vr +XP +XP +XP +wd +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(32,1,2) = {" +kZ +sO +ZR +ZR +ZR +Ho +Ho +sO +ZR +ZR +ZR +Ho +Ho +WP +Cz +Ho +WP +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +uF +uF +uF +fY +ZR +fY +fY +wu +ZR +fY +Pp +fY +wu +fY +uF +ZR +uF +fY +ZR +ZR +ZR +ZR +ZR +fY +fY +fY +Pp +VJ +wd +XP +XP +kx +XP +ZR +ZR +XP +ww +Nf +Nf +hB +RX +vr +vr +XP +LZ +UW +iI +wR +wd +ZQ +QV +QV +pf +iI +iI +iI +id +FV +Sy +od +Hf +Aj +ba +wd +wd +wd +oB +Vq +Vq +Vq +Nu +wg +Vq +Vq +ZR +Cp +bC +Mr +NS +NS +Nb +Nb +Nb +Nb +jK +Nb +Kq +Nb +uQ +NS +Cw +SL +bC +fu +ZR +Vq +Vq +hs +Vq +Vq +Vq +oB +wd +XP +XP +XP +XP +vr +XP +XP +ww +Nf +Nf +hB +RX +vr +vr +XP +LZ +UW +iI +wR +wd +ZQ +QV +QV +pf +iI +iI +iI +id +FV +Sy +od +Hf +Aj +ba +wd +wd +wd +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(33,1,2) = {" +kZ +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +ZR +Ho +Ho +WP +Cz +Ho +WP +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +uF +fY +fY +wu +ZR +fY +fY +fY +ZR +fY +fY +fY +fY +fY +uF +ZR +ZR +Om +ZR +fY +wu +fY +fY +fY +fY +fY +fY +VJ +wd +XP +XP +XP +XP +XP +IY +XP +vr +vr +vr +Qf +RX +LZ +LZ +LZ +UW +wR +wd +OX +fZ +zj +OX +oC +QV +QV +QV +QV +Sr +wd +OX +OX +iL +wd +QV +Yg +Yg +Yg +oB +Vq +Vq +Vq +Nu +Nu +Vq +Vq +Vq +JK +Vq +Jd +iG +ZR +ZR +ZR +YZ +YZ +ZR +ZR +pm +NS +NS +NS +SL +Yo +Vq +Vq +Vq +ZR +Vq +Nu +Vq +Vq +TM +oB +wd +XP +XP +XP +XP +XP +XP +XP +vr +vr +vr +Qf +RX +LZ +LZ +LZ +UW +wR +wd +OX +fZ +zj +OX +oC +QV +QV +QV +QV +Sr +wd +OX +OX +iL +wd +QV +cp +cp +cp +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(34,1,2) = {" +kZ +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +ZR +sO +Ho +ZR +ZR +ZR +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +fY +ZR +fY +fY +fY +ZR +fY +fY +fY +fY +fY +fY +ZR +wu +Pp +fY +fY +fY +fY +fY +fY +fY +wu +fY +VJ +wd +kx +XP +XP +kx +XP +IY +XP +XP +kx +XP +RX +LZ +UW +iI +iI +wR +wd +wd +Yg +Yg +Yg +Yg +wd +wd +wd +wd +wd +wd +wd +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +oB +Vq +Ez +Vq +Nu +Nu +Nu +Nu +Vq +ZR +ZR +ZR +Cp +bC +Mr +NS +NS +NS +za +ZR +ZR +NS +SL +bC +Yo +Vq +Ez +Vq +Vq +ZR +Nu +Nu +Vq +Vq +Vq +oB +wd +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +RX +RX +wd +iI +iI +wR +wd +wd +Yg +Yg +Yg +Yg +wd +wd +wd +wd +wd +wd +wd +wd +Yg +Yg +cp +cp +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(35,1,2) = {" +kZ +Ho +Ho +sO +Ho +Ho +Ho +Ho +Ho +Ho +sO +Ho +kZ +kZ +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +ZR +fY +fY +fY +Pp +Om +Pp +fY +fY +fY +fY +fY +Om +Pp +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +VJ +wd +XP +XP +XP +XP +XP +ZR +ZR +XP +XP +XP +LZ +Iw +wR +wd +wd +wd +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +oB +Vq +Vq +Vq +hs +Nu +Nu +Nu +wg +wg +Nu +ZR +Vq +Vq +Jd +bC +Us +NS +NS +NS +TF +pM +Yo +Vq +Vq +Vq +Vq +Vq +Nu +ZR +Nu +wg +Vq +Vq +Vq +oB +wd +XP +XP +XP +XP +XP +XP +XP +XP +XP +XP +RX +RX +wd +wd +wd +wd +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(36,1,2) = {" +kZ +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +ZR +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +CC +fY +fY +wu +ZR +fY +fY +fY +Pp +Om +Pp +CC +fY +fY +fY +fY +Om +Pp +fY +wu +fY +fY +fY +fY +fY +fY +fY +fY +VJ +wd +XP +XP +XP +XP +XP +XP +ZR +ZR +XP +LZ +UW +wd +wd +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +oB +Vq +Vq +Vq +Nu +wg +Nu +Nu +Nu +Nu +ZR +ZR +Nu +Nu +Vq +Vq +tG +DU +DU +DU +UZ +ZR +Vq +Vq +Vq +Vq +Vq +wg +wg +ZR +JK +oB +JK +ZR +Vq +oB +wd +XP +XP +XP +XP +XP +XP +XP +XP +XP +Ix +RX +RX +wd +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(37,1,2) = {" +kZ +WP +WP +kZ +kZ +WP +ZR +ZR +WP +ZR +ZR +WP +kZ +Ho +ZR +ZR +Ho +sO +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +ZR +fY +wu +fY +fY +ZR +fY +fY +wu +fY +fY +fY +ZR +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +CC +VJ +wd +kx +XP +XP +XP +kx +XP +XP +LZ +XP +UW +wR +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +oB +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZR +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Ez +Vq +Vq +ZR +Vq +Ez +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZR +ZR +oB +wd +XP +XP +XP +XP +XP +XP +XP +LZ +XP +wd +RX +RX +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(38,1,2) = {" +kZ +Cz +Cz +kZ +Ho +Cz +Ho +ZR +Cz +Ho +Ho +Cz +ZR +Ho +Ho +ZR +ZR +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +Om +fY +fY +fY +fY +ZR +fY +fY +fY +fY +fY +fY +ZR +fY +fY +fY +fY +fY +fY +fY +fY +wu +fY +fY +VJ +wd +XP +Na +XP +XP +XP +XP +XP +Iw +iI +wR +wd +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +oB +Vq +Vq +Vq +Vq +Vq +Ez +Vq +Vq +Vq +JK +Vq +Vq +Ez +Vq +Vq +Vq +Vq +Vq +Vq +Vq +JK +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Ez +Ez +Vq +Vq +Vq +Vq +oB +wd +XP +XP +XP +XP +XP +XP +XP +Iw +iI +wd +RX +RX +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(39,1,2) = {" +kZ +Ho +Ho +ZR +ZR +Ho +Ho +ZR +Ho +Ho +Ho +Ho +ZR +ZR +Ho +sO +ZR +WP +ZR +kZ +Yg +Yg +Yg +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +oB +Ez +Vq +Vq +Vq +TM +Vq +Vq +Ez +Vq +JK +Vq +Vq +Vq +Vq +Vq +Vq +Vq +TM +Vq +Vq +JK +Ez +Vq +Vq +Vq +Ez +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +oB +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +RX +RX +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +"} +(40,1,2) = {" +kZ +Ho +sO +Ho +ZR +sO +Ho +WP +Ho +sO +Ho +Ho +Ho +ZR +Ho +Ho +Kc +Ho +Ho +kZ +Yg +Yg +Yg +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +oB +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZR +Vq +Vq +Vq +Vq +Vq +Ez +Vq +Vq +Vq +Vq +ZR +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Ez +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +wd +RX +RX +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +"} +(41,1,2) = {" +kZ +Ho +Ho +Ho +WP +xB +Ho +ZR +Ho +Ho +Ho +Ho +Ho +WP +Ho +xB +ZR +Ho +Ho +kZ +Yg +Yg +Yg +VJ +wu +fY +fY +fY +fY +VJ +wu +Pp +Pp +Pp +Pp +Pp +Pp +Pp +Pp +Pp +Pp +Pp +wu +Pp +Pp +VJ +fY +fY +fY +fY +fY +fY +fY +VJ +wd +kx +XP +XP +XP +XP +EH +XP +XP +XP +XP +XP +XP +XP +XP +EZ +Na +EZ +XP +XP +XP +XP +IY +XP +IY +XP +XP +XP +XP +XP +XP +ZR +XP +XP +XP +XP +XP +wd +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +wd +RX +RX +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Od +Od +Od +Wv +Wv +Wv +Wv +Wv +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +"} +(42,1,2) = {" +kZ +Ho +Ho +Ho +ZR +Ho +Ho +WP +Ho +Ho +Ho +Ho +Ho +WP +Ho +Ho +ZR +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +uF +uF +fY +fY +VJ +VJ +VJ +Pp +CC +Pp +wu +Pp +Pp +wu +Pp +Pp +Pp +Pp +Pp +CC +Pp +VJ +Pp +fY +fY +fY +fY +fY +VJ +wd +XP +XP +kx +XP +XP +ZR +ZR +XP +XP +XP +kx +XP +XP +XP +kx +XP +EZ +kx +XP +XP +XP +ZR +kx +ZR +XP +XP +XP +XP +XP +XP +IY +XP +XP +XP +XP +Na +wd +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +wd +RX +RX +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Wv +HQ +Bp +xL +Bp +yn +Wv +Od +Od +Od +Wv +pC +Bp +qv +Wv +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +"} +(43,1,2) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Yg +Yg +Yg +VJ +CC +uF +fY +fY +fY +fY +fY +VJ +VJ +Pp +Pp +Pp +Pp +Pp +Pp +Pp +Pp +wu +Pp +VJ +VJ +VJ +VJ +Om +ZR +wu +fY +fY +fY +VJ +wd +XP +XP +XP +XP +XP +XP +ZR +ZR +XP +XP +XP +XP +XP +XP +ZR +XP +ZR +XP +XP +XP +XP +IY +XP +IY +XP +kx +XP +XP +kx +XP +IY +XP +kx +XP +XP +XP +wd +oB +Vq +Ez +Vq +Vq +Vq +Vq +ZR +Vq +Vq +Vq +Ez +Vq +Vq +ZR +ZR +Vq +Vq +Vq +Vq +Ez +JK +Vq +Vq +Vq +Vq +Vq +JK +Nu +Nu +Nu +Vq +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +wd +RX +RX +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Wv +Wv +UJ +HN +Ys +Ey +Ys +Jl +UJ +UJ +UJ +UJ +UJ +iC +Ys +uP +UJ +Wv +Wv +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +"} +(44,1,2) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +wu +fY +Pp +ZR +ZR +VJ +Gp +Gp +Gp +mp +ty +Gp +PG +Gp +Gp +VJ +VJ +fY +fY +fY +Pp +fY +ZR +fY +fY +fY +VJ +wd +XP +XP +XP +XP +EZ +EZ +kx +ZR +XP +XP +XP +XP +XP +XP +ZR +ZR +ZR +XP +XP +XP +XP +ZR +ZR +ZR +ZR +XP +XP +XP +XP +XP +ZR +XP +XP +XP +XP +XP +wd +oB +Vq +Vq +Vq +Vq +Vq +Vq +ZR +ZR +Vq +Vq +Vq +TM +Vq +ZR +ZR +Vq +Vq +Vq +Vq +Vq +JK +Ez +Vq +Vq +Ez +Vq +ZR +Nu +Nu +Vq +hs +Nu +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +wd +RX +RX +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Wv +oq +gE +JC +DF +DF +DF +DF +DF +FD +Ox +PZ +DF +DF +DF +DF +DF +FD +Wv +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +"} +(45,1,2) = {" +kZ +xB +Cz +WP +Ho +Ho +Cz +WP +Ho +Ho +Ho +Ho +Ho +WP +Cz +Ho +Ho +Ho +xB +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +ZR +ZR +Om +ZR +fY +fY +Gp +nE +Lk +gj +oF +rU +qN +ue +WU +Pp +wu +fY +fY +CC +fY +fY +ZR +ZR +fY +fY +VJ +wd +kx +XP +XP +XP +ZR +IY +ZR +ZR +ZR +ZR +ZR +XP +XP +XP +ZR +XP +ZR +ZR +ZR +EZ +EZ +ZR +XP +XP +ZR +ZR +ZR +ZR +ZR +ZR +ZR +XP +XP +XP +XP +kx +wd +oB +Vq +Vq +Vq +Vq +Vq +Vq +Vq +JK +Vq +Vq +Vq +Vq +Vq +Vq +ZR +ZR +Vq +Vq +Vq +Vq +ZR +Vq +Vq +TM +Vq +Vq +JK +Vq +Vq +Nu +Nu +Nu +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +mq +BV +RX +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Wv +NR +oJ +dA +CW +yT +CW +CW +CW +Df +BX +dA +CW +CW +CW +CW +CW +Ff +Wv +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +"} +(46,1,2) = {" +kZ +WP +ZR +ZR +Ho +Ho +Cz +WP +Ho +Ho +Ho +Ho +Ho +ZR +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +ZR +ZR +ZR +ZR +fY +Pp +fY +fY +Pp +ZK +db +yS +le +Qv +Qv +Qv +tD +AL +Pp +fY +fY +fY +fY +fY +uF +ZR +fY +ZR +Om +VJ +wd +XP +XP +ZR +ZR +ZR +XP +XP +XP +XP +XP +ZR +EH +ZR +EH +ZR +XP +kx +XP +ZR +IY +IY +ZR +XP +XP +XP +kx +XP +XP +XP +ZR +ZR +XP +XP +XP +XP +XP +wd +oB +Vq +Vq +Vq +hs +Vq +Vq +Vq +ZR +Ez +Vq +Vq +Vq +Vq +Ez +Vq +JK +Ez +Vq +Vq +Vq +ZR +Vq +Vq +Vq +Vq +Vq +ZR +Ez +Vq +Vq +Vq +Nu +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +wd +RX +RX +mq +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Wv +Rk +hp +dA +CW +OL +CW +CW +CW +Df +BX +dA +CW +Kx +Ue +IU +CW +aZ +Wv +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +"} +(47,1,2) = {" +kZ +Ho +Ho +ZR +Ho +sO +Ho +ZR +Ho +Ho +Ho +ZR +ZR +ZR +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +wu +fY +fY +fY +fY +wu +fY +Pp +ZK +fW +Qv +zG +Qv +Qv +Qv +iV +Gp +ZR +fY +fY +fY +fY +uF +uF +ZR +fY +fY +Pp +VJ +wd +ZR +IY +ZR +XP +XP +XP +XP +jV +jQ +jQ +jQ +bQ +jQ +jQ +jQ +jQ +jQ +jQ +jQ +jQ +jQ +jQ +jQ +cb +fM +vr +ce +ce +vr +vr +ZR +ZR +XP +XP +XP +XP +wd +oB +Vq +Vq +Nu +Nu +Nu +Vq +Vq +ZR +ZR +Nu +Nu +Nu +Nu +Nu +ZR +ZR +ZR +ZR +ZR +ZR +Vq +Vq +Vq +Vq +Vq +Vq +ZR +Vq +Vq +Vq +Vq +Vq +Ez +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +wd +BV +BV +mq +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Wv +gl +Ul +dA +YP +bT +pC +yq +CW +Ga +Ox +Ch +CW +qv +Ey +Py +CW +aZ +Wv +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +"} +(48,1,2) = {" +kZ +Cz +sO +ZR +Ho +Ho +ZR +ZR +sO +Cz +Cz +ZR +Ho +Ho +sO +Ho +sO +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +fY +fY +fY +fY +Gp +Nn +Qv +bL +vA +bO +Qv +wr +Gp +fY +ZR +fY +fY +fY +uF +JX +ZR +fY +fY +fY +VJ +wd +XP +XP +ZR +ZR +XP +XP +kx +hx +Xh +Xh +Xh +Xh +Xh +Xh +Xh +Xh +Xh +Xh +Xh +Xh +IR +Xh +Xh +Xh +NZ +ab +WF +ce +ce +vr +XP +ZR +XP +XP +XP +XP +wd +oB +Vq +Vq +Nu +Vq +Nu +Vq +Vq +Vc +ZR +oB +oB +oB +oB +eE +Vq +TY +VD +VD +VD +GM +Vq +Vq +Ez +Vq +Vq +Vq +ZR +Vq +Vq +Vq +Vq +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +wd +BV +RX +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Wv +zK +oJ +dA +YP +pw +HQ +yq +CW +CT +WS +xY +CW +Ey +Ey +Ey +CW +Ff +Wv +Od +Od +Od +Od +Od +Od +Od +UJ +UJ +UJ +"} +(49,1,2) = {" +kZ +WP +WP +ZR +WP +ZR +ZR +ZR +ZR +eg +eg +kZ +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +fY +fY +fY +Pp +ZK +Pt +Qv +zG +Qv +Qv +Qv +tD +ZK +Pp +ZR +ZR +wu +fY +uF +uF +ZR +fY +fY +fY +VJ +wd +XP +XP +XP +XP +ZR +XP +XP +Jo +wS +RX +RX +RX +RX +ce +RX +RX +RX +RX +RX +ce +RX +RX +RX +RX +zB +WL +HW +jQ +ce +vr +zT +xq +Lu +Lu +kx +XP +wd +oB +Ez +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Nu +lw +ZR +jn +kG +zI +Ef +NS +Cw +NS +An +zI +Lm +Vq +Vq +Nu +Nu +ZR +ZR +Nu +Vq +Vq +TM +Vq +Vq +oB +mq +mq +mq +mq +mq +mq +mq +mq +wd +mq +mq +RX +BV +mq +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Od +Od +Od +Od +Od +Od +Od +Od +Wv +Rk +Ey +dA +YP +fA +iM +oe +Dm +vq +Hk +Ku +Dm +Ze +Ze +Ze +fO +Ff +Wv +Od +Od +Od +Od +Od +Od +Od +UJ +Ba +UJ +"} +(50,1,2) = {" +kZ +Ho +Ho +ZR +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +kZ +ZR +Ho +Ho +ZR +ZR +WP +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +fY +fY +fY +Pp +ZK +hf +Qv +zG +Qv +Qv +Qv +tD +ZK +Pp +fY +fY +ZR +Om +ZR +ZR +fY +fY +fY +fY +VJ +wd +kx +XP +XP +XP +ZR +ZR +XP +fo +rR +ce +ce +ce +vr +vr +ce +ce +vr +vr +vr +vr +ce +vr +ce +ce +AN +ng +YM +ce +vr +XP +XP +IY +XP +XP +XP +XP +wd +oB +Vq +Vq +Vq +Vq +Vq +Vq +Ez +Vq +Vq +ZR +ZR +kG +zI +qG +NS +NS +NS +jK +NS +NS +NS +Cn +zI +wh +Vq +wg +Nu +ZR +ZR +Nu +Vq +Vq +Vq +Vq +oB +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +UJ +UJ +Od +Od +Od +Od +Od +Od +Od +UJ +Cj +oJ +dA +YP +ny +IU +yq +CW +Ga +Ox +Ch +CW +pC +Ey +pV +OL +Ga +UJ +Od +Od +Od +Od +Od +UJ +UJ +UJ +CR +UJ +"} +(51,1,2) = {" +kZ +Ho +Cz +WP +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +WP +Cz +Ho +ZR +Ho +Cz +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +wu +fY +fY +fY +wu +Gp +GK +Vo +XB +vA +vA +KK +XN +Gp +fY +fY +fY +fY +Pp +wu +fY +fY +fY +wu +fY +VJ +wd +XP +XP +XP +XP +XP +IY +XP +Bf +Eu +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +yt +Yy +QH +QH +QH +XP +ce +ZR +ZR +ZR +IY +IY +wd +oB +ZR +ZR +EH +JK +ZR +Vq +Vq +Vq +ZR +ZR +kG +qG +NS +NS +PS +pm +pm +TD +pm +pm +PS +NS +fR +Cn +Lm +Vq +wg +Nu +ZR +hs +Nu +Vq +Ez +Vq +oB +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +RX +BV +RX +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +xV +UJ +UJ +Od +Od +Od +Od +Od +Od +UJ +pC +Ey +dA +CW +OL +CW +CW +CW +Df +BX +dA +CW +HN +Kx +HQ +OL +tk +UJ +Od +Od +Od +Od +Od +UJ +CR +ai +Ax +UJ +"} +(52,1,2) = {" +kZ +kZ +kZ +kZ +Gp +Gp +ZK +ZK +Gp +Gp +Ho +Ho +Ho +WP +Cz +Ho +ZR +sO +Cz +kZ +Yg +Yg +Yg +VJ +ZR +ZR +fY +Pp +fY +fY +fY +fY +fY +Gp +il +fx +kj +KE +at +fx +Sm +Gp +wu +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +VJ +wd +XP +XP +XP +kx +XP +IY +XP +IB +RX +QH +vE +VO +dG +Gp +el +cD +dm +cD +JE +cD +Ya +QH +Qg +bM +Sa +JL +wn +wB +QH +XP +XP +ce +ZR +kx +XP +XP +wd +oB +Ez +Vq +Vq +Vq +ZR +ZR +ZR +ZR +kG +tC +qG +NS +Cw +Nb +Nb +kN +Nb +jK +Nb +Nb +Kq +kN +dk +wI +Cn +zI +Lm +ZR +Nu +Nu +Nu +Vq +Vq +Vq +oB +mq +BV +BV +mq +mq +mq +mq +mq +mq +mq +mq +wd +mq +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +dw +gu +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +xF +oJ +dA +CW +OL +CW +CW +CW +Df +BX +dA +CW +CW +CW +CW +OL +Ff +UJ +UJ +Wv +Wv +UJ +UJ +UJ +tV +kM +xN +UJ +"} +(53,1,2) = {" +kZ +kZ +kZ +kZ +Gp +Cb +kU +kU +pn +Gp +Vb +Ho +Ho +ZR +ZR +ZR +ZR +ZR +WP +kZ +Yg +Yg +Yg +VJ +fY +ZR +ZR +Om +ZR +fY +fY +Gp +Gp +Gp +pk +Bn +Gp +Gp +Gp +Bn +pk +Gp +Gp +Gp +fY +fY +fY +ZR +ZR +ZR +Om +ZR +ZR +VJ +wd +XP +XP +XP +XP +XP +ZR +XP +rn +RX +QH +AG +Tr +Hb +Gp +QJ +qb +ax +qb +nb +qb +mg +QH +aV +io +yC +xI +io +ks +QH +XP +sq +ZR +ZR +ZR +IY +IY +wd +oB +Vq +Vq +Vq +Vq +bf +Vq +kG +MI +qG +NS +NS +NS +Jy +kF +SP +LD +Ac +jK +pm +pm +pm +Nb +cX +dk +NS +NS +xT +zI +Lm +Nu +Nu +Vq +Vq +Vq +oB +mq +BV +BV +mq +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +WH +WH +Fz +gY +gY +HH +pr +ta +cl +gY +Kx +vU +dA +CW +rs +CW +CW +em +IE +Ox +xu +eq +eq +eq +ZT +OL +zm +Ox +CR +ai +ai +lj +gY +yY +WX +nh +gY +UJ +"} +(54,1,2) = {" +ld +kZ +kZ +kZ +Gp +sP +Ik +FL +IQ +ZK +hY +Ho +Ho +ZR +ZR +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +Pp +ZR +ZR +ZR +Gp +eD +UA +Tr +xs +Wq +Gp +TV +xs +Tr +UA +sG +Gp +fY +ZR +Om +ZR +fY +fY +Pp +ZR +fY +VJ +wd +XP +XP +XP +ZR +ZR +ZR +XP +IB +Vj +QH +aE +jm +Dw +Gp +EE +Tr +Nd +jm +Tr +Tr +XH +Gp +ac +It +rZ +vg +io +Ro +QH +XP +XP +ZR +XP +XP +XP +kx +wd +oB +Vq +Vq +Vq +Vq +Vq +kG +qG +ZR +NS +NS +pm +pm +pe +bE +GY +pm +pm +za +EU +Ss +pm +Nb +Ss +pm +pm +ZR +NS +NS +Cn +Lm +Vq +Vq +Vq +Vq +oB +mq +BV +BV +mq +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +gx +WH +WH +WH +iA +pr +GL +ta +ta +gY +gY +Ox +dA +CW +CW +CW +CW +Ff +Ox +Ox +Ox +BX +BX +Ox +dA +OL +Ff +Ox +yA +Eh +Eh +sE +gY +yA +Zj +ya +Jk +UJ +"} +(55,1,2) = {" +ld +kZ +kZ +kZ +Gp +xc +lT +Ik +en +ZK +hY +Ho +Ho +Ho +sO +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +fY +fY +Gp +Gp +Gp +LJ +xs +xQ +Gp +aC +xs +ji +Gp +Gp +Gp +ZR +fY +Pp +ZR +wu +fY +fY +ZR +fY +VJ +wd +XP +XP +ZR +ZR +XP +XP +XP +IB +RX +QH +Gp +ad +Gp +Gp +UX +Tr +lu +xs +Tr +Tr +VX +iD +bl +io +zZ +Sf +io +ks +QH +XP +ZR +ZR +ce +XP +XP +XP +wd +oB +Vq +Vq +Ez +Vq +kG +qG +NS +ZR +ZR +za +jK +jK +jK +jK +RC +jK +jK +jK +jK +jK +jK +jK +jK +jK +za +ZR +jK +NS +Cw +Cn +Lm +Vq +Ez +Vq +oB +mq +BV +BV +mq +Yg +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +WH +WH +WH +WH +gY +gY +ta +Xp +pr +pr +iA +hD +dA +CW +CW +CW +CW +pi +Ox +HF +kR +Ab +QK +zM +xY +OL +Ff +BX +np +Lg +KJ +PB +gY +np +oK +BQ +gY +UJ +"} +(56,1,2) = {" +ld +kZ +kZ +kZ +Gp +up +bs +mT +Pv +ZK +hY +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +wu +fY +fY +fY +wu +Gp +eD +UA +Tr +xs +zR +Gp +bA +xs +Tr +UA +sG +Gp +fY +fY +fY +ZR +fY +fY +fY +ZR +ZR +VJ +wd +IY +IY +ZR +ZR +ZR +XP +XP +IB +RX +ZK +UG +tc +tu +tu +uW +ap +tm +rg +tm +tm +FT +fV +ND +xg +Hc +sp +do +ks +QH +XP +IY +XP +XP +kx +XP +XP +wd +oB +Vq +Vq +Vq +Vq +au +NS +NS +ZR +ZR +ZR +ZR +ZR +Az +zQ +Az +Az +zQ +Az +Bb +Xi +rl +On +XD +Az +Az +Hz +Az +Az +NS +NS +pz +Vq +Vq +Vq +oB +mq +BV +BV +mq +Yg +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +BV +BV +BV +BV +mq +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +mm +Wf +WH +WH +WH +gY +dx +ta +pr +CF +gY +pS +ds +FU +Ts +Ts +FI +Md +Ox +Ib +Ys +Ey +Ys +oq +CW +OL +Ff +BX +np +zA +zA +PB +gY +gY +lU +gY +gY +UJ +"} +(57,1,2) = {" +ld +aB +Gp +Gp +Gp +bs +Mc +Ao +iz +Gp +qC +Ho +Ho +Ho +Ho +Ho +sO +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +fY +fY +Gp +Gp +Gp +Tr +uA +Tr +PU +Tr +xs +Tr +Gp +Gp +Gp +fY +fY +fY +Om +fY +fY +fY +fY +fY +VJ +wd +kx +XP +XP +XP +ZR +XP +XP +IB +RX +ZK +wj +xs +AK +nv +kC +xs +bw +bw +bw +bw +yD +Gp +wL +YR +pN +KX +oZ +aa +QH +XP +IY +XP +XP +XP +XP +XP +wd +oB +Vq +Vq +Vq +Vq +nT +NS +ZR +ZR +Az +Az +zQ +ZR +Az +XE +Jj +Dz +Az +Az +KO +rk +No +WW +Bb +Xi +rl +On +lX +Az +jK +NS +kE +ZR +JK +JK +oB +mq +BV +BV +mq +Yg +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +BV +BV +BV +BV +mq +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +RR +dD +WH +WH +WH +WH +gY +UJ +UJ +UJ +UJ +UJ +UJ +Ox +rH +jg +yR +rH +Ox +Ox +nx +CW +CW +CW +CW +CW +OL +Ff +BX +np +pr +pr +nh +KC +bh +DD +nh +ai +UJ +"} +(58,1,2) = {" +ld +aB +oc +PK +Gp +PK +WT +vH +pL +Pi +RM +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +fY +fY +Gp +tt +UA +yj +xs +AL +AL +zR +xs +YW +UA +sG +Gp +fY +fY +fY +ZR +fY +fY +fY +fY +fY +VJ +wd +XP +XP +XP +XP +ZR +ZR +XP +IB +RX +QH +Gp +fJ +Gp +Gp +Gp +oL +Gp +Gp +Gp +Gp +Gp +Gp +pk +pk +Wo +uJ +QH +QH +QH +di +ZR +XP +XP +sq +XP +Na +wd +oB +Vq +Vq +ZR +JK +Qh +ZR +ZR +Az +Az +Az +Az +ZR +IH +Yc +nd +gk +ux +rz +ov +ig +Cm +nR +KO +rk +No +WW +St +Az +jK +ZR +Dq +ZR +Vq +Vq +oB +mq +BV +BV +mq +Yg +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +BV +BV +BV +BV +mq +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +KC +KC +KC +eu +eu +KC +UJ +Od +Od +Od +Od +UJ +xj +ZY +ZY +ZY +ZY +mH +Ox +Ye +CW +yG +Dm +Dm +Dm +mW +Ff +BX +hG +SV +Zr +SV +Ap +SV +DD +SV +sN +UJ +"} +(59,1,2) = {" +ld +aB +ag +bH +bi +bs +Uu +PK +Gu +PK +RM +Ho +Ho +ZR +ZR +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +wu +fY +fY +fY +fY +ZR +ZR +Gp +Gp +Gp +Gp +YN +xQ +AL +PU +jd +Gp +Gp +Gp +Gp +fY +wu +fY +ZR +ZR +ZR +fY +fY +fY +VJ +wd +XP +XP +XP +XP +XP +ZR +XP +IB +RX +QH +Zd +xs +Gk +Gp +CX +xs +yW +lD +lD +Ol +Is +Gp +er +iu +Vp +Gd +QH +di +XP +XP +ZR +ZR +kx +XP +XP +XP +wd +oB +ZR +ZR +ZR +Vq +iy +NS +Nb +Az +zQ +Az +Az +Bb +Bd +rV +ip +rV +dc +dc +rV +lf +rV +rA +ov +ig +Cm +ov +th +Hz +eE +ZR +Sk +ZR +Vq +Vq +oB +mq +BV +BV +mq +mq +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +BV +BV +BV +BV +mq +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +WH +WH +mm +WH +WH +WH +UJ +UJ +Od +Od +Od +UJ +eX +dZ +dZ +dZ +dZ +Sv +Ox +nB +jr +Ey +jr +lA +CW +OL +Ga +Ox +hG +SV +Kg +WZ +LE +WZ +Ir +SV +Zr +UJ +"} +(60,1,2) = {" +ld +aB +KL +vH +Gp +up +bH +bH +hU +Gp +an +Ho +Ho +ZR +ZR +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +Pp +ZR +ZR +fY +Gp +bA +Tr +UA +tc +YC +Gp +bA +xs +UA +Tr +xQ +Gp +fY +fY +fY +fY +wu +ZR +fY +fY +fY +VJ +wd +Na +XP +XP +kx +XP +ZR +XP +IB +ce +QH +Nv +Xv +Hb +Gp +GS +Xv +Tr +Tr +Tr +Tr +Vz +RN +io +aX +uI +vv +QH +di +di +di +di +ZR +XP +XP +XP +XP +wd +oB +Vq +Vq +Vq +Vq +iy +NS +Nb +Az +Az +JB +EL +Fh +Gh +ms +ux +ux +ux +ux +bc +ux +yI +Aw +tr +ip +rV +ZO +sx +Az +jK +ZR +Dq +Vq +Vq +Vq +oB +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +BV +BV +BV +BV +mq +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +WH +WH +WH +WH +WH +WH +WH +UJ +Od +Od +Od +UJ +YE +pj +Zm +Zm +oo +KS +Ox +dr +Jh +jW +jT +tS +ZT +OL +Ff +Ox +KC +Ap +ZV +KC +KC +To +Ov +To +To +UJ +"} +(61,1,2) = {" +ld +aB +Gp +Gp +Gp +Ru +bH +gH +Pv +ZK +hY +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +ZR +ZR +Om +fY +fY +fY +Gp +eD +Tr +Gp +ru +CI +Gp +Tf +Xx +Gp +Tr +sG +Gp +ZR +ZR +fY +fY +fY +ZR +ZR +fY +fY +VJ +wd +XP +XP +XP +XP +XP +IY +XP +IB +ce +QH +EE +Tr +Hb +Gp +jZ +Tr +Tr +Tr +Tr +Tr +Fd +Gp +ZW +Ev +cj +uS +QH +XP +di +XP +XP +ZR +ZR +IY +IY +ZR +wd +oB +Vq +Vq +Ez +Vq +iy +NS +Nb +Az +Az +QP +MF +HR +sr +Fe +qO +tH +eA +eA +ou +hT +Fe +VZ +ux +ux +ux +qm +Az +Az +jK +NS +Dq +Vq +Ez +Vq +oB +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +BV +BV +BV +BV +mq +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +WH +WH +vb +lW +WH +WH +WH +UJ +UJ +Od +Od +Wv +ZY +OI +WJ +ui +RL +ZY +Ox +Ox +Ox +BX +BX +Ox +dA +OL +mZ +BX +WK +vY +DD +CJ +UJ +UJ +UJ +UJ +UJ +UJ +"} +(62,1,2) = {" +ld +aB +ag +bH +Gp +up +sM +bH +Pv +ZK +hY +Ho +Ho +Ho +sO +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +ZR +ZR +ZR +fY +fY +wu +fY +Gp +Gp +Gp +Gp +VQ +pk +Gp +pk +VQ +Gp +Gp +Gp +Gp +ZR +ZR +Om +ZR +fY +fY +ZR +fY +fY +VJ +wd +XP +XP +XP +XP +XP +IY +XP +Qf +RX +QH +CP +Tr +UD +QH +ko +Tr +Tr +Tr +Tr +Tr +Fd +QH +QH +QH +QH +QH +QH +XP +XP +XP +XP +ZR +vr +XP +XP +XP +wd +oB +Vq +Vq +Vq +Vq +iy +NS +Kq +Az +Az +Pn +hd +yV +Gh +Zf +ux +ux +ux +ux +ux +ux +PA +tX +VV +AC +BF +jB +uU +XD +za +NS +Dq +Vq +Vq +Vq +oB +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +BV +BV +Gr +BV +mq +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +WH +Pa +AB +zU +WH +WH +WH +WH +UJ +Od +Od +Wv +ZY +OI +Ah +VK +RL +ZY +Ox +wM +Uv +IF +hc +Wd +xY +de +xz +tg +WZ +WZ +cu +CJ +UJ +yl +Si +lc +UJ +UJ +"} +(63,1,2) = {" +ld +aB +KL +hi +SX +bH +qL +bH +Mx +ZK +bn +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +fY +fY +ZR +fY +fY +fY +Pp +Pp +ZR +Pp +Pp +ZR +fY +fY +fY +fY +fY +fY +ZR +fY +fY +ZR +fY +fY +VJ +wd +kx +XP +XP +XP +XP +ZR +XP +Qf +RX +QH +Sw +AK +uG +QH +ft +ql +Xe +Ln +zC +oi +II +QH +XP +XP +XP +XP +XP +XP +XP +XP +ZR +ZR +vr +XP +XP +kx +wd +oB +Vq +Vq +Vq +Vq +iy +NS +Nb +Az +Az +Az +Az +KO +Bd +BF +AC +WE +mz +mz +BF +qe +BF +OV +Ur +Uc +kP +Ur +hw +Hz +ZR +ZR +Dq +Vq +Vq +Vq +oB +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +Bt +BV +BV +BV +BV +mq +BV +BV +BV +BV +mq +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +Wf +na +UH +xV +Pa +WH +mm +WH +UJ +UJ +Od +Wv +ZY +OI +lB +Mw +RL +ZY +Ox +jC +CW +CW +CW +CW +CW +OL +nm +BX +bJ +SV +DD +tM +UJ +zw +qW +mY +UJ +UJ +"} +(64,1,2) = {" +ld +aB +oc +PK +Gp +BW +PK +hi +cz +Gp +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +ZR +ZR +fY +fY +fY +fY +fY +fY +Om +Pp +fY +Om +Pp +fY +wu +fY +fY +fY +ZR +ZR +wu +ZR +fY +Pp +VJ +wd +XP +XP +kx +XP +ZR +ZR +XP +Qf +RX +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +LZ +XP +kx +XP +XP +di +XP +XP +ZR +vr +XP +kx +XP +XP +wd +oB +Ez +TM +Vq +Vq +iy +NS +Nb +Az +Az +zQ +Az +ZR +fq +Ls +Jf +Yl +ux +rz +Ur +Uc +kP +or +Bb +DK +lK +On +Ou +Az +jK +ZR +Sk +JK +JK +ZR +oB +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +BV +BV +BV +BV +mq +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +yy +Ak +CU +ei +xV +WH +WH +WH +WH +UJ +Od +Wv +ZY +OI +Ah +sW +RL +ZY +Ox +ox +CW +yG +Dm +Dm +Dm +dY +Df +BX +hG +SV +DD +CJ +UJ +je +xw +Dj +UJ +UJ +"} +(65,1,2) = {" +kZ +aB +Gp +Gp +Gp +NB +qX +qX +gO +Gp +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +wu +uF +bX +Om +fY +fY +fY +fY +fY +ZR +Om +ZR +fY +fY +ZR +ZR +fY +fY +fY +fY +fY +fY +ZR +Om +ZR +ZR +Om +VJ +wd +XP +XP +XP +XP +ZR +XP +XP +Qf +RX +RX +RX +ce +vr +vr +XP +XP +Ri +pf +id +QV +QV +pf +id +FV +qP +XP +di +XP +di +di +ZR +vr +ce +sq +XP +XP +wd +oB +Ez +Vq +Vq +Ez +IC +NS +Nb +Az +Az +Az +ZR +ZR +zQ +JS +mA +In +Az +Az +Bb +DK +lK +On +KO +VA +jD +MD +ht +Az +za +NS +FP +Vq +Vq +Vq +oB +mq +mq +mq +mq +mq +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +BV +BV +BV +BV +mq +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +DP +dw +CU +CU +wb +WH +WH +WH +WH +UJ +Od +UJ +YE +Ji +mt +mt +hX +KS +Ox +lR +dh +Le +PY +dh +CW +CW +mZ +BX +WK +SV +DD +CJ +UJ +yL +xl +yL +UJ +UJ +"} +(66,1,2) = {" +kZ +gK +Ho +Ho +Gp +Gp +ZK +oj +Gp +Gp +Ho +Ho +Ho +ZR +ZR +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +uF +uF +uF +fY +ZR +fY +fY +wu +ZR +fY +Pp +fY +wu +fY +uF +ZR +uF +fY +ZR +ZR +ZR +ZR +ZR +fY +fY +fY +Pp +VJ +wd +IY +IY +ZR +ZR +ZR +XP +kx +Qf +RX +Vj +RX +RX +gm +XP +XP +XP +cH +qP +Sr +QV +NP +QV +pf +id +cH +qP +XP +di +di +XP +ZR +vr +vr +XP +XP +Na +wd +oB +Vq +Vq +Vq +Vq +au +NS +fR +ZR +ZR +Hz +ZR +Az +Az +Kf +Az +ps +XD +Az +KO +VA +jD +WW +XD +qB +Az +Az +Az +Az +NS +NS +pz +Vq +Ez +Vq +oB +Yg +Yg +Yg +Yg +Yg +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +BV +BV +BV +BV +mq +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +ew +YY +CU +VF +gu +yy +WH +WH +vb +UJ +UJ +UJ +JG +dZ +dZ +dZ +dZ +ON +Ox +Ib +dh +Le +ob +dh +CW +CW +Vu +Wm +SV +SV +DD +CJ +UJ +vf +ZZ +vR +bZ +UJ +"} +(67,1,2) = {" +kZ +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +ZR +ZR +ZR +sO +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +uF +fY +fY +wu +ZR +fY +fY +fY +ZR +fY +fY +fY +fY +fY +uF +ZR +ZR +Om +ZR +fY +wu +fY +fY +fY +fY +fY +fY +VJ +wd +XP +XP +XP +XP +ZR +XP +XP +eL +vr +vr +RX +RX +ce +vr +kx +XP +XP +jJ +Sr +QV +ZQ +QV +QV +Sr +LZ +cH +Sy +PQ +XP +di +CE +PQ +vr +kx +XP +XP +wd +oB +Vq +Vq +Vq +Vq +Jd +Mr +dk +ZR +jK +jK +jK +jK +jK +jK +jK +jK +za +jK +jK +TD +jK +jK +jK +jK +jK +jK +za +NS +NS +SL +Yo +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +BV +BV +BV +BV +mq +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +fh +na +CU +gu +vb +Lv +hW +hW +Wg +UI +gY +Qc +JG +ZY +zf +zf +ZY +ON +Ox +go +vI +eq +eq +eq +eq +vI +SF +BX +bJ +Zr +xi +YL +UJ +HB +ZZ +ZZ +FR +UJ +"} +(68,1,2) = {" +kZ +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +ZR +Ho +ZR +ZR +ZR +WP +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +fY +ZR +fY +fY +fY +ZR +fY +fY +fY +fY +fY +fY +ZR +wu +Pp +fY +fY +fY +fY +fY +fY +fY +wu +fY +VJ +wd +XP +XP +kx +XP +ZR +ZR +XP +ww +Nf +Nf +hB +RX +vr +vr +XP +LZ +UW +iI +wR +wd +ZQ +QV +QV +pf +iI +iI +iI +id +FV +Sy +od +Hf +Aj +ba +wd +wd +wd +oB +Vq +Vq +Ez +Nu +ZR +Cp +iG +ZR +NS +NS +cX +cX +pm +Nb +pm +pm +pm +jK +cX +cX +pm +Nb +Ss +pm +pm +NS +NS +NS +SL +Yo +Vq +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +mq +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +mq +BV +BV +BV +BV +mq +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +vs +jc +Em +gu +AB +DP +WH +WH +WH +AB +gY +Qc +gY +gY +gY +gY +gY +gY +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +hG +SV +DD +CJ +UJ +nq +ZZ +ZL +ZZ +UJ +"} +(69,1,2) = {" +kZ +sO +ZR +ZR +ZR +Ho +Ho +sO +ZR +ZR +ZR +Ho +Ho +WP +Cz +Ho +WP +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +ZR +fY +fY +fY +Pp +Om +Pp +fY +fY +fY +fY +fY +Om +Pp +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +VJ +wd +XP +XP +XP +XP +XP +IY +XP +vr +vr +vr +Qf +RX +LZ +LZ +LZ +UW +wR +wd +OX +fZ +zj +OX +oC +QV +QV +QV +QV +Sr +wd +OX +OX +iL +wd +QV +Yg +Yg +Yg +oB +JK +JK +ZR +ZR +ZR +Vq +Jd +pM +Mr +NS +NS +NS +pe +Kq +pm +pm +pm +jK +En +YS +xn +Nb +pm +NS +NS +ZR +SL +bC +Yo +Vq +Vq +Vq +Ez +Vq +oB +Yg +Yg +Yg +Yg +Yg +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +mq +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +qJ +WH +dw +gu +ar +YJ +WH +dW +dW +WH +DP +gY +Qc +Qr +hZ +ai +ai +Ck +gY +CR +ai +ai +bh +Qw +xv +wJ +wJ +QZ +Ox +hG +SV +DD +CJ +UJ +XO +ZZ +hl +NW +UJ +"} +(70,1,2) = {" +kZ +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +ZR +Ho +Ho +WP +Cz +Ho +WP +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +CC +fY +fY +wu +ZR +fY +fY +fY +Pp +Om +Pp +CC +fY +fY +fY +fY +Om +Pp +fY +wu +fY +fY +fY +fY +fY +fY +fY +fY +VJ +wd +kx +XP +XP +kx +XP +IY +XP +XP +kx +XP +RX +LZ +UW +iI +iI +wR +wd +wd +Yg +Yg +Yg +Yg +wd +wd +wd +wd +wd +wd +wd +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +oB +Vq +Vq +Vq +Nu +wg +Vq +Vq +ZR +Cp +bC +Mr +NS +NS +Nb +Nb +Nb +Nb +jK +Nb +Kq +Nb +uQ +NS +Cw +SL +bC +fu +ZR +Vq +Vq +hs +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +sf +sB +kl +IW +IW +dW +dW +dW +dW +dW +dW +gY +Qc +pa +Gg +pr +jy +Bo +gY +np +Kg +WZ +WZ +ee +WZ +WZ +SG +MG +Ox +KC +Ap +ZV +KC +UJ +yL +Ig +yL +UJ +UJ +"} +(71,1,2) = {" +kZ +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +ZR +sO +Ho +ZR +ZR +ZR +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +ZR +fY +wu +fY +fY +ZR +fY +fY +wu +fY +fY +fY +ZR +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +CC +VJ +wd +XP +XP +XP +XP +XP +ZR +ZR +XP +XP +XP +LZ +Iw +wR +wd +wd +wd +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +oB +Vq +Vq +Vq +Nu +Nu +Vq +Vq +Vq +JK +Vq +Jd +iG +ZR +ZR +ZR +YZ +YZ +ZR +ZR +pm +NS +NS +NS +SL +Yo +Vq +Vq +Vq +ZR +Vq +Nu +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +sf +dW +dW +dW +dW +dW +dW +dW +dW +dW +dW +gY +Qc +FX +TJ +pu +ya +Zz +gY +np +ha +Ms +px +of +Ms +px +DD +xv +KC +WK +SV +ha +CJ +UJ +yl +VY +mk +UJ +UJ +"} +(72,1,2) = {" +kZ +Ho +Ho +sO +Ho +Ho +Ho +Ho +Ho +Ho +sO +Ho +kZ +kZ +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +Om +fY +fY +fY +fY +ZR +fY +fY +fY +fY +fY +fY +ZR +fY +fY +fY +fY +fY +fY +fY +fY +wu +fY +fY +VJ +wd +XP +XP +XP +XP +XP +XP +ZR +ZR +XP +LZ +UW +wd +wd +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +oB +Vq +Ez +Vq +Nu +Nu +Nu +Nu +Vq +ZR +ZR +ZR +Cp +bC +Mr +NS +NS +NS +za +ZR +ZR +NS +SL +bC +Yo +Vq +Ez +Vq +Vq +ZR +Nu +Nu +Vq +Vq +TM +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +sf +dW +dW +dW +dW +LH +dW +dW +HG +dW +Mu +ie +Qc +cs +pr +pr +GL +ex +gY +np +DD +CJ +UJ +UJ +UJ +LC +xi +WZ +LE +WZ +WZ +cu +tM +UJ +mY +Nj +cR +UJ +UJ +"} +(73,1,2) = {" +kZ +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +ZR +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +wd +kx +XP +XP +XP +kx +XP +XP +LZ +XP +UW +wR +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +oB +Vq +Vq +Vq +hs +Nu +Nu +Nu +wg +wg +Nu +ZR +Vq +Vq +Jd +bC +Us +NS +NS +NS +TF +pM +Yo +Vq +Vq +Vq +Vq +Vq +Nu +ZR +Nu +wg +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +sf +ie +IW +dW +ie +dW +IW +dW +dW +IW +pP +ie +Qc +PH +ph +Kh +xK +oK +gY +np +DD +CJ +UJ +Od +UJ +LC +DD +SV +Ap +SV +SV +DD +CJ +UJ +jb +MR +WA +UJ +UJ +"} +(74,1,2) = {" +kZ +WP +WP +kZ +kZ +WP +ZR +ZR +WP +ZR +ZR +WP +kZ +Ho +ZR +ZR +Ho +sO +Ho +kZ +Yg +Yg +Yg +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +wd +XP +Na +XP +XP +XP +XP +XP +Iw +iI +wR +wd +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +oB +Vq +Vq +Vq +Nu +wg +Nu +Nu +Nu +Nu +ZR +ZR +Nu +Nu +Vq +Vq +tG +DU +DU +DU +UZ +ZR +Vq +Vq +Vq +Vq +Vq +wg +wg +ZR +JK +oB +JK +ZR +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +sf +Nm +IW +IW +pA +pA +pA +dW +dW +KV +Nm +Nm +UJ +zL +zL +gY +zL +bv +gY +np +DD +CJ +pX +Od +pX +LC +ha +Ms +Jg +px +SV +DD +Rf +UJ +UJ +UJ +UJ +UJ +UJ +"} +(75,1,2) = {" +kZ +Cz +Cz +kZ +Ho +Cz +Ho +ZR +Cz +Ho +Ho +Cz +ZR +Ho +Ho +ZR +ZR +Ho +Ho +kZ +Yg +Yg +Yg +VJ +wu +fY +fY +fY +fY +VJ +wu +Pp +Pp +Pp +Pp +Pp +Pp +Pp +Pp +Pp +Pp +Pp +wu +Pp +Pp +VJ +fY +fY +fY +fY +fY +fY +fY +VJ +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +oB +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZR +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Ez +Vq +Vq +ZR +Vq +Ez +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZR +ZR +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +sf +AY +dW +dW +dW +dW +dW +dW +dW +dW +dW +dW +pl +Nz +pr +Go +Nz +DD +nh +bh +DD +CJ +pX +Od +pX +LC +DD +CJ +Ox +LC +SV +DD +CJ +UJ +yl +VY +lc +yL +UJ +"} +(76,1,2) = {" +kZ +Ho +Ho +ZR +ZR +Ho +Ho +ZR +Ho +Ho +Ho +Ho +ZR +ZR +Ho +sO +ZR +WP +ZR +kZ +Yg +Yg +Yg +VJ +fY +uF +uF +fY +fY +VJ +VJ +VJ +Pp +CC +Pp +wu +Pp +Pp +wu +Pp +Pp +Pp +Pp +Pp +CC +Pp +VJ +Pp +fY +fY +fY +fY +fY +VJ +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +oB +Vq +Vq +Vq +Vq +Vq +Ez +Vq +Vq +Vq +JK +Vq +Vq +Ez +Vq +Vq +Vq +TM +Vq +Vq +Vq +JK +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Ez +Ez +Vq +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Wa +TB +TB +TB +TB +TB +TB +Vr +TB +TB +TB +AU +Al +Vl +SV +gq +SV +DD +SV +SV +DD +CJ +UJ +Od +UJ +LC +DD +CJ +Ox +LC +Zr +DD +CJ +UJ +mY +WV +mY +vk +UJ +"} +(77,1,2) = {" +kZ +Ho +sO +Ho +ZR +sO +Ho +WP +Ho +sO +Ho +Ho +Ho +ZR +Ho +Ho +Kc +Ho +Ho +kZ +Yg +Yg +Yg +VJ +CC +uF +fY +fY +fY +fY +fY +VJ +VJ +Pp +Pp +Pp +Pp +Pp +Pp +Pp +Pp +wu +Pp +VJ +VJ +VJ +VJ +Om +ZR +wu +fY +fY +fY +VJ +wd +kx +XP +XP +XP +XP +EH +XP +XP +XP +XP +XP +XP +XP +XP +XP +Na +XP +XP +XP +XP +XP +IY +XP +IY +XP +XP +XP +XP +XP +XP +ZR +XP +XP +XP +XP +XP +wd +oB +Ez +Vq +Vq +Vq +Vq +Vq +Vq +Ez +Vq +JK +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +JK +Ez +Vq +Vq +Vq +Ez +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +HG +dW +dW +dW +dW +dW +HE +dW +dW +dW +dW +mJ +SV +Ek +JF +WZ +So +VE +WZ +cu +CJ +UJ +Od +UJ +LC +DD +CJ +Ox +LF +SV +DD +CJ +UJ +je +MR +WA +yL +UJ +"} +(78,1,2) = {" +kZ +Ho +Ho +Ho +WP +xB +Ho +ZR +Ho +Ho +Ho +Ho +Ho +WP +Ho +xB +ZR +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +wu +fY +Pp +ZR +ZR +VJ +Gp +Gp +Gp +mp +ty +Gp +PG +Gp +Gp +VJ +VJ +fY +fY +fY +Pp +fY +ZR +fY +fY +fY +VJ +wd +XP +XP +kx +XP +XP +ZR +ZR +XP +XP +XP +kx +XP +XP +XP +kx +XP +XP +kx +XP +XP +XP +ZR +kx +ZR +XP +XP +XP +XP +XP +XP +IY +XP +XP +XP +XP +Na +wd +oB +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZR +Vq +Vq +Vq +Vq +Vq +Ez +Vq +Vq +Vq +Vq +ZR +Vq +Vq +TM +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Ez +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +dW +dW +IW +IW +dW +dW +HL +dW +dW +dW +dW +mJ +Nz +pr +gq +Nz +DD +BQ +xK +DD +CJ +pX +Od +pX +LC +DD +CJ +Ox +LC +SV +DD +CJ +UJ +UJ +UJ +UJ +UJ +UJ +"} +(79,1,2) = {" +kZ +Ho +Ho +Ho +ZR +Ho +Ho +WP +Ho +Ho +Ho +Ho +Ho +WP +Ho +Ho +ZR +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +ZR +ZR +Om +ZR +fY +fY +Gp +nE +rU +Ut +DM +rU +rU +yp +WU +Pp +wu +fY +fY +CC +fY +fY +ZR +ZR +fY +fY +VJ +wd +XP +XP +XP +XP +XP +XP +ZR +ZR +XP +XP +XP +XP +XP +XP +ZR +XP +ZR +XP +XP +XP +XP +IY +XP +IY +XP +kx +XP +XP +kx +XP +IY +XP +kx +XP +XP +XP +wd +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +KV +ie +sB +pA +pA +pA +HL +dW +pA +pA +lx +UJ +UO +XA +gY +zL +lU +UJ +np +DD +CJ +pX +Od +pX +LC +ha +iW +bY +gI +SV +DD +iW +fN +fN +fN +fN +Kb +UJ +"} +(80,1,2) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Yg +Yg +Yg +VJ +ZR +ZR +ZR +ZR +fY +Pp +fY +fY +Pp +ZK +nA +yS +le +Qv +Qv +Qv +YV +AL +Pp +fY +fY +fY +fY +fY +uF +ZR +fY +ZR +Om +VJ +wd +XP +XP +XP +XP +EZ +EZ +kx +ZR +XP +XP +XP +XP +XP +XP +ZR +ZR +ZR +XP +XP +XP +XP +ZR +ZR +ZR +ZR +XP +XP +XP +XP +XP +ZR +XP +XP +XP +XP +XP +wd +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +WH +WH +ie +pP +dW +dW +HL +dW +IW +ie +Er +Qc +SN +kX +AI +bh +oK +gY +np +DD +CJ +UJ +Od +UJ +LC +DD +SV +Ap +SV +SV +DD +SV +SV +SV +SV +SV +CJ +UJ +"} +(81,1,2) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Yg +Yg +Yg +VJ +fY +wu +fY +fY +fY +fY +wu +fY +Pp +ZK +YT +Oe +zG +Qv +Qv +Oe +iV +Gp +ZR +fY +fY +fY +fY +uF +uF +ZR +fY +fY +Pp +VJ +wd +kx +XP +XP +XP +ZR +IY +ZR +ZR +ZR +ZR +ZR +EZ +XP +EZ +ZR +XP +ZR +ZR +ZR +EZ +EZ +ZR +XP +XP +ZR +ZR +ZR +ZR +ZR +ZR +ZR +XP +XP +XP +XP +kx +wd +oB +Vq +Ez +Vq +Vq +Vq +Vq +ZR +Vq +Vq +Vq +Ez +Vq +Vq +ZR +ZR +Vq +Vq +Vq +Vq +Ez +JK +Vq +Vq +Vq +Vq +Vq +JK +Nu +Nu +Nu +Vq +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +WH +Pa +WH +ie +sB +IW +HL +dW +dW +ie +pP +Qc +nU +pr +eb +pr +dU +gY +np +DD +CJ +UJ +UJ +UJ +LC +xi +WZ +LE +WZ +WZ +kO +WZ +WZ +WZ +WZ +XZ +tM +UJ +"} +(82,1,2) = {" +kZ +xB +Cz +WP +Ho +Ho +Cz +WP +Ho +Ho +Ho +Ho +Ho +WP +Cz +Ho +Ho +Ho +xB +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +fY +fY +fY +fY +Gp +Nn +Qv +bL +vA +bO +Qv +wr +Gp +fY +ZR +fY +fY +fY +uF +JX +ZR +fY +fY +fY +VJ +wd +XP +XP +ZR +ZR +ZR +XP +XP +XP +XP +XP +ZR +EH +ZR +EH +ZR +XP +kx +XP +ZR +IY +IY +ZR +XP +XP +XP +kx +XP +XP +XP +ZR +ZR +XP +XP +XP +XP +XP +wd +oB +Vq +Vq +Vq +Vq +Vq +Vq +ZR +ZR +Vq +Vq +Vq +Vq +Vq +ZR +ZR +Vq +Vq +Vq +Vq +Vq +JK +Ez +Vq +Vq +Ez +Vq +ZR +Nu +Nu +Vq +hs +Nu +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +LM +LM +UI +WH +WH +ie +Eo +dW +dW +ie +gY +Qc +gJ +TJ +pu +DW +SU +gY +np +DD +iW +gI +RJ +iW +gI +DD +BQ +KC +Kh +Kh +Kh +Kh +Kh +xK +SV +DD +CJ +UJ +"} +(83,1,2) = {" +kZ +WP +ZR +ZR +Ho +Ho +Cz +WP +Ho +Ho +Ho +Ho +Ho +ZR +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +fY +fY +fY +Pp +ZK +Nn +Qv +Sp +Qv +KC +Qv +YV +ZK +Pp +ZR +ZR +wu +fY +uF +uF +ZR +fY +fY +fY +VJ +wd +ZR +IY +ZR +XP +XP +XP +XP +jV +jQ +jQ +jQ +bQ +jQ +jQ +jQ +jQ +jQ +jQ +jQ +jQ +jQ +jQ +jQ +cb +fM +vr +ce +ce +vr +vr +ZR +ZR +XP +XP +XP +XP +wd +oB +Vq +TM +Vq +Vq +Vq +Vq +Vq +JK +Vq +Vq +Vq +Vq +Vq +Vq +ZR +ZR +Vq +Vq +Vq +Vq +ZR +Vq +Vq +Vq +Vq +Vq +JK +Vq +Vq +Nu +Nu +Nu +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +ej +xV +AB +ar +FO +WH +Di +dW +ie +Da +gY +Qc +Yz +pr +pr +GW +Xm +gY +np +wt +VE +WZ +Yh +WZ +WZ +Ir +PB +gY +gY +gY +gY +gY +gY +np +sN +ha +CJ +UJ +"} +(84,1,2) = {" +kZ +Ho +Ho +ZR +Ho +sO +Ho +ZR +Ho +Ho +Ho +ZR +ZR +ZR +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +fY +fY +fY +Pp +ZK +KN +Oe +Sp +KC +KC +Qv +YV +ZK +Pp +fY +fY +ZR +Om +ZR +ZR +fY +fY +fY +fY +VJ +wd +XP +XP +ZR +ZR +XP +XP +kx +hx +Xh +Xh +Xh +Xh +Xh +Xh +Xh +Xh +Xh +Xh +Xh +Xh +IR +Xh +Xh +Xh +NZ +ab +WF +ce +ce +vr +XP +ZR +XP +XP +XP +XP +wd +oB +Vq +Vq +Vq +hs +Vq +Vq +Vq +ZR +Ez +Vq +Vq +Vq +Vq +Ez +Vq +JK +Ez +Vq +Vq +Vq +ZR +Vq +TM +Vq +Vq +Vq +ZR +Ez +Vq +Vq +Vq +Nu +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +"} +(85,1,2) = {" +kZ +Cz +sO +ZR +Ho +Ho +ZR +ZR +sO +Cz +Cz +ZR +Ho +Ho +sO +Ho +sO +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +wu +fY +fY +fY +wu +Gp +GK +Vo +XB +vA +vA +KK +XN +Gp +fY +fY +fY +fY +Pp +wu +fY +fY +fY +wu +fY +VJ +wd +XP +XP +XP +XP +ZR +XP +XP +Jo +wS +RX +RX +RX +RX +ce +RX +RX +RX +RX +RX +ce +RX +RX +RX +RX +zB +WL +HW +jQ +ce +vr +zT +xq +Lu +Lu +kx +XP +wd +oB +Vq +Vq +Nu +Nu +Nu +Vq +Vq +ZR +ZR +Nu +Nu +Nu +Nu +Nu +ZR +ZR +ZR +ZR +ZR +ZR +Vq +Vq +Vq +Vq +Vq +Vq +ZR +Vq +Vq +Vq +Vq +Vq +Ez +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +"} +(86,1,2) = {" +kZ +WP +WP +ZR +WP +ZR +ZR +ZR +ZR +eg +eg +kZ +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +ZR +ZR +fY +Pp +fY +fY +fY +fY +fY +Gp +kf +Cd +kj +KE +at +Cd +jq +Gp +wu +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +VJ +wd +kx +XP +XP +XP +ZR +ZR +XP +fo +rR +ce +ce +ce +vr +vr +ce +ce +vr +vr +vr +vr +ce +vr +ce +ce +AN +ng +YM +ce +vr +XP +XP +IY +XP +XP +XP +XP +wd +oB +Vq +Vq +Nu +Vq +Nu +Vq +Vq +Vc +ZR +oB +oB +oB +oB +eE +Vq +TY +VD +VD +VD +GM +Vq +Vq +Ez +Vq +Vq +Vq +ZR +Vq +Vq +Vq +Vq +TM +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(87,1,2) = {" +kZ +Ho +Ho +ZR +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +kZ +ZR +Ho +Ho +ZR +ZR +WP +kZ +Yg +Yg +Yg +VJ +fY +ZR +ZR +Om +ZR +fY +fY +Gp +Gp +Gp +pk +Zg +Gp +Gp +Gp +ki +pk +Gp +Gp +Gp +fY +fY +fY +ZR +ZR +ZR +Om +ZR +ZR +VJ +wd +XP +XP +XP +XP +EZ +IY +XP +Bf +Eu +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +yt +Yy +QH +QH +QH +XP +ce +ZR +ZR +ZR +IY +IY +wd +oB +Ez +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Nu +lw +ZR +jn +kG +zI +Ef +NS +Cw +NS +An +zI +Lm +Vq +Vq +Nu +Nu +ZR +ZR +Nu +Vq +Vq +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(88,1,2) = {" +kZ +Ho +Cz +WP +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +WP +Cz +Ho +ZR +Ho +Cz +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +Pp +ZR +ZR +ZR +Gp +eD +UA +vl +fk +Wq +Gp +TV +tv +vl +UA +sG +Gp +fY +ZR +Om +ZR +fY +fY +Pp +ZR +fY +VJ +wd +XP +XP +XP +kx +EZ +IY +XP +IB +RX +QH +vE +VO +dG +Gp +el +cD +dm +cD +JE +cD +Ya +QH +Qg +fv +Bq +Fp +nW +Jv +QH +XP +XP +ce +ZR +kx +XP +XP +wd +oB +Vq +Vq +Vq +Vq +Vq +Vq +Ez +Vq +Vq +ZR +ZR +kG +zI +qG +NS +NS +NS +jK +NS +NS +NS +Cn +zI +wh +Vq +wg +Nu +ZR +ZR +Nu +Vq +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(89,1,2) = {" +kZ +kZ +kZ +kZ +Gp +Gp +ZK +ZK +Gp +Gp +Ho +Ho +Ho +WP +Cz +Ho +ZR +sO +Cz +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +fY +fY +Gp +Gp +Gp +Zk +xs +xQ +Gp +Tr +xs +Eb +Gp +Gp +Gp +ZR +fY +Pp +ZR +wu +fY +fY +ZR +fY +VJ +wd +XP +XP +XP +XP +XP +ZR +XP +rn +RX +QH +AG +Tr +Hb +Gp +QJ +qb +ax +qb +nb +qb +mg +QH +aV +Tr +xs +cS +Tr +Ld +QH +XP +sq +ZR +ZR +ZR +IY +IY +wd +oB +ZR +ZR +EH +JK +ZR +Vq +Vq +Vq +ZR +ZR +kG +qG +NS +NS +PS +pm +pm +TD +pm +pm +PS +NS +fR +Cn +Lm +Vq +wg +Nu +ZR +hs +Nu +Vq +Ez +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(90,1,2) = {" +kZ +kZ +kZ +kZ +Gp +Cb +kU +kU +pn +Gp +Vb +Ho +Ho +ZR +ZR +ZR +ZR +ZR +WP +kZ +Yg +Yg +Yg +VJ +fY +fY +wu +fY +fY +fY +wu +Gp +eD +UA +Tr +xs +zR +Gp +bA +xs +Tr +UA +sG +Gp +fY +fY +fY +ZR +fY +fY +fY +ZR +ZR +VJ +wd +XP +XP +XP +ZR +ZR +ZR +XP +IB +Vj +QH +aE +jm +Dw +Gp +EE +Tr +Nd +jm +Tr +Tr +XH +Gp +ac +rm +tb +cn +Tr +tF +QH +XP +XP +ZR +XP +XP +XP +kx +wd +oB +Ez +Vq +Vq +Vq +ZR +ZR +ZR +ZR +kG +tC +qG +NS +Cw +Nb +Nb +kN +Nb +jK +Nb +Nb +Kq +kN +dk +wI +Cn +zI +Lm +ZR +Nu +Nu +Nu +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(91,1,2) = {" +ld +kZ +kZ +kZ +Gp +sP +Ik +FL +IQ +ZK +hY +Ho +Ho +ZR +ZR +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +fY +fY +Gp +Gp +Gp +Tr +uA +Tr +PU +Tr +xs +Tr +Gp +Gp +Gp +fY +fY +fY +Om +fY +fY +fY +fY +fY +VJ +wd +XP +XP +ZR +ZR +XP +XP +XP +IB +RX +QH +Gp +ad +Gp +Gp +UX +Tr +lu +xs +Tr +Tr +VX +iD +Yw +Tr +Lz +YX +Tr +Ld +QH +XP +ZR +ZR +ce +XP +XP +XP +wd +oB +Vq +Vq +Vq +Vq +bf +Vq +kG +MI +qG +NS +NS +NS +Jy +kF +SP +LD +Ac +jK +pm +pm +pm +Nb +cX +dk +NS +NS +xT +zI +Lm +Nu +Nu +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(92,1,2) = {" +ld +kZ +kZ +kZ +Gp +xc +lT +Ik +en +ZK +hY +Ho +Ho +Ho +sO +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +fY +fY +Gp +tt +UA +yj +xs +AL +AL +zR +xs +YW +UA +sG +Gp +fY +fY +fY +ZR +fY +fY +fY +fY +fY +VJ +wd +IY +IY +ZR +ZR +ZR +XP +XP +IB +RX +ZK +UG +tc +tu +tu +uW +ap +tm +rg +tm +tm +FT +fV +DG +tm +MH +Ci +jM +Ld +QH +XP +IY +XP +XP +kx +XP +XP +wd +oB +Vq +Vq +Vq +Vq +Vq +kG +qG +ZR +NS +NS +pm +pm +pe +bE +GY +pm +pm +za +EU +Ss +pm +Nb +Ss +pm +pm +ZR +NS +NS +Cn +Lm +Vq +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(93,1,2) = {" +ld +kZ +kZ +kZ +Gp +up +bs +mT +Pv +ZK +hY +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +wu +fY +fY +fY +fY +ZR +ZR +Gp +Gp +Gp +Gp +YN +xQ +AL +PU +jd +Gp +Gp +Gp +Gp +fY +wu +fY +ZR +ZR +ZR +fY +fY +fY +VJ +wd +kx +XP +XP +XP +ZR +XP +XP +IB +RX +ZK +wj +xs +AK +nv +kC +xs +bw +bw +bw +bw +yD +Gp +sU +ZE +lh +GI +KD +uy +QH +XP +IY +XP +XP +XP +XP +XP +wd +oB +Vq +Vq +Ez +Vq +kG +qG +NS +ZR +ZR +za +jK +jK +jK +jK +RC +jK +jK +jK +jK +jK +jK +jK +jK +jK +za +ZR +jK +NS +Cw +Cn +Lm +Vq +Ez +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(94,1,2) = {" +ld +aB +Gp +Gp +Gp +bs +Mc +Ao +iz +Gp +qC +Ho +Ho +Ho +Ho +Ho +sO +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +Pp +ZR +ZR +fY +Gp +bA +Tr +UA +tc +YC +Gp +bA +xs +UA +Tr +xQ +Gp +fY +fY +fY +fY +wu +ZR +fY +fY +fY +VJ +wd +XP +XP +XP +XP +ZR +ZR +XP +IB +RX +QH +Gp +fJ +Gp +Gp +Gp +oL +Gp +Gp +Gp +Gp +Gp +Gp +pk +pk +Qp +uJ +QH +QH +QH +di +ZR +XP +XP +sq +XP +Na +wd +oB +Vq +Vq +Vq +Vq +au +NS +NS +ZR +ZR +ZR +ZR +ZR +Az +zQ +Az +Az +zQ +Az +Bb +Xi +rl +On +XD +Az +Az +Hz +Az +Az +NS +NS +pz +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +cp +cp +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(95,1,2) = {" +ld +aB +oc +PK +Gp +PK +WT +vH +pL +Pi +RM +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +ZR +ZR +Om +fY +fY +fY +Gp +eD +Tr +Gp +ru +CI +Gp +Tf +Xx +Gp +Tr +sG +Gp +ZR +ZR +fY +fY +fY +ZR +ZR +fY +fY +VJ +wd +XP +XP +XP +XP +XP +ZR +XP +IB +RX +QH +Zd +xs +Gk +Gp +CX +xs +yW +lD +lD +Ol +Is +Gp +qt +Oh +nk +zE +QH +di +XP +XP +ZR +ZR +kx +XP +XP +XP +wd +oB +Vq +Vq +Vq +Vq +nT +NS +ZR +ZR +Az +Az +zQ +ZR +Az +XE +Jj +Dz +Az +Az +KO +rk +No +WW +Bb +Xi +rl +On +lX +Az +jK +NS +kE +ZR +JK +JK +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +cp +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(96,1,2) = {" +ld +aB +ag +bH +bi +bs +Uu +PK +Gu +PK +RM +Ho +Ho +ZR +ZR +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +ZR +ZR +ZR +fY +fY +wu +fY +Gp +Gp +Gp +Gp +VQ +pk +Gp +pk +VQ +Gp +Gp +Gp +Gp +ZR +ZR +Om +ZR +fY +fY +ZR +fY +fY +VJ +wd +Na +XP +XP +kx +XP +ZR +XP +IB +ce +QH +Nv +Xv +Hb +Gp +GS +Xv +Tr +Tr +Tr +Tr +Vz +RN +Tr +bx +Xv +Hb +QH +di +di +di +di +ZR +XP +XP +XP +XP +wd +oB +Vq +Vq +ZR +JK +Qh +ZR +ZR +Az +Az +Az +Az +ZR +IH +Yc +nd +gk +ux +rz +ov +ig +Cm +nR +KO +rk +No +WW +St +Az +jK +ZR +Dq +ZR +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(97,1,2) = {" +ld +aB +KL +vH +Gp +up +bH +bH +hU +Gp +an +Ho +Ho +ZR +ZR +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +fY +fY +ZR +fY +fY +fY +Pp +Pp +ZR +Pp +Pp +ZR +fY +fY +fY +fY +fY +fY +ZR +fY +fY +ZR +fY +fY +VJ +wd +XP +XP +XP +XP +EZ +IY +XP +IB +ce +QH +EE +VL +Hb +Gp +jZ +Tr +Tr +Tr +Tr +Tr +Fd +Gp +ZW +Ev +cj +uS +QH +XP +di +XP +XP +ZR +ZR +IY +IY +ZR +wd +oB +ZR +ZR +ZR +Vq +iy +NS +Nb +Az +zQ +Az +Az +Az +Bd +rV +ip +rV +dc +dc +rV +lf +rV +rA +ov +ig +Cm +ov +th +Hz +eE +ZR +Sk +ZR +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(98,1,2) = {" +ld +aB +Gp +Gp +Gp +Ru +bH +gH +Pv +ZK +hY +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +ZR +ZR +fY +fY +fY +fY +fY +fY +Om +Pp +fY +Om +Pp +fY +wu +fY +fY +fY +ZR +ZR +wu +ZR +fY +Pp +VJ +wd +XP +XP +XP +XP +EZ +IY +XP +Qf +RX +QH +CP +Tr +UD +QH +ko +Tr +Tr +Tr +Tr +Tr +Fd +QH +QH +QH +QH +QH +QH +XP +XP +XP +XP +ZR +vr +XP +XP +XP +wd +oB +Vq +Vq +Vq +Vq +iy +NS +Nb +Az +Az +Az +Az +Az +wT +ms +ux +ux +ux +ux +bc +ux +yI +Aw +tr +ip +rV +ZO +sx +Az +jK +ZR +Dq +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(99,1,2) = {" +ld +aB +ag +bH +Gp +up +sM +bH +Pv +ZK +hY +Ho +Ho +Ho +sO +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +wu +uF +bX +Om +fY +fY +fY +fY +fY +ZR +Om +ZR +fY +fY +ZR +ZR +fY +fY +fY +fY +fY +fY +ZR +Om +ZR +ZR +Om +VJ +wd +kx +XP +XP +XP +XP +ZR +XP +Qf +RX +QH +Sw +AK +uG +QH +ft +ql +Xe +Ln +zC +oi +II +QH +XP +XP +XP +XP +XP +XP +XP +XP +ZR +ZR +vr +XP +XP +kx +wd +oB +Vq +Vq +Ez +Vq +iy +NS +Nb +Az +Az +Az +Az +zQ +wT +Fe +qO +tH +eA +eA +ou +hT +Fe +VZ +ux +ux +ux +qm +Az +Az +jK +NS +Dq +Vq +Ez +TM +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +"} +(100,1,2) = {" +ld +aB +KL +hi +SX +bH +qL +bH +Mx +ZK +bn +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +uF +uF +uF +fY +ZR +fY +fY +wu +ZR +fY +Pp +fY +wu +fY +uF +ZR +uF +fY +ZR +ZR +ZR +ZR +ZR +fY +fY +fY +Pp +VJ +wd +XP +XP +kx +XP +ZR +ZR +XP +Qf +RX +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +QH +LZ +XP +kx +XP +XP +di +XP +XP +ZR +vr +XP +kx +XP +XP +wd +oB +Vq +Vq +Vq +Vq +iy +NS +Kq +Az +Az +Az +Az +Az +wT +Zf +ux +ux +ux +ux +ux +ux +PA +tX +VV +AC +BF +jB +uU +XD +za +NS +Dq +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +"} +(101,1,2) = {" +ld +aB +oc +PK +Gp +BW +PK +hi +cz +Gp +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +uF +fY +fY +wu +ZR +fY +fY +fY +ZR +fY +fY +fY +fY +fY +uF +ZR +ZR +Om +ZR +fY +wu +fY +fY +fY +fY +fY +fY +VJ +wd +XP +XP +XP +XP +ZR +XP +XP +Qf +RX +RX +RX +ce +vr +vr +XP +XP +Ri +pf +id +QV +QV +pf +id +FV +qP +XP +di +XP +di +di +ZR +vr +ce +sq +XP +XP +wd +oB +Vq +Vq +Vq +Vq +iy +NS +Nb +Az +Az +Az +Az +Az +Bd +BF +AC +WE +mz +mz +BF +qe +BF +OV +Ur +Uc +kP +Ur +hw +Hz +ZR +ZR +Dq +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +"} +(102,1,2) = {" +kZ +aB +Gp +Gp +Gp +NB +qX +qX +gO +Gp +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +fY +ZR +fY +fY +fY +ZR +fY +fY +fY +fY +fY +fY +ZR +wu +Pp +fY +fY +fY +fY +fY +fY +fY +wu +fY +VJ +wd +IY +IY +ZR +ZR +ZR +XP +kx +Qf +RX +Vj +RX +RX +gm +XP +XP +XP +cH +qP +Sr +QV +NP +QV +pf +id +cH +qP +XP +di +di +XP +ZR +vr +vr +XP +XP +Na +wd +oB +Ez +Vq +Vq +Vq +iy +NS +Nb +Az +Az +zQ +Az +ZR +fq +Ls +Jf +Yl +ux +rz +Ur +Uc +kP +or +Bb +DK +lK +On +Ou +Az +jK +ZR +Sk +JK +JK +ZR +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Od +Od +Od +Wv +Wv +Wv +Wv +Wv +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +"} +(103,1,2) = {" +kZ +gK +Ho +Ho +Gp +Gp +ZK +oj +Gp +Gp +Ho +Ho +Ho +ZR +ZR +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +ZR +fY +fY +fY +Pp +Om +Pp +fY +fY +fY +fY +fY +Om +Pp +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +VJ +wd +XP +XP +XP +XP +ZR +XP +XP +eL +vr +vr +RX +RX +ce +vr +kx +XP +XP +jJ +Sr +QV +ZQ +QV +QV +Sr +LZ +cH +Sy +PQ +XP +di +CE +PQ +vr +kx +XP +XP +wd +oB +Ez +TM +Vq +Ez +IC +NS +Nb +Az +Az +Az +ZR +ZR +zQ +JS +mA +In +Az +Az +Bb +DK +lK +On +KO +VA +jD +MD +ht +Az +za +NS +FP +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Wv +HQ +Bp +xL +Bp +yn +Wv +Od +Od +Od +Wv +pC +Bp +qv +Wv +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +"} +(104,1,2) = {" +kZ +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +ZR +ZR +ZR +sO +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +CC +fY +fY +wu +ZR +fY +fY +fY +Pp +Om +Pp +CC +fY +fY +fY +fY +Om +Pp +fY +wu +fY +fY +fY +fY +fY +fY +fY +fY +VJ +wd +XP +XP +kx +XP +ZR +ZR +XP +ww +Nf +Nf +hB +RX +vr +vr +XP +LZ +UW +iI +wR +wd +ZQ +QV +QV +pf +iI +iI +iI +id +FV +Sy +od +Hf +Aj +ba +wd +wd +wd +oB +Vq +Vq +Vq +Vq +au +NS +fR +ZR +ZR +Hz +ZR +Az +Az +Kf +Az +ps +XD +Az +KO +VA +jD +WW +XD +qB +Az +Az +Az +Az +NS +NS +pz +Vq +Ez +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Wv +Wv +UJ +HN +Ys +Ey +Ys +Jl +UJ +UJ +UJ +UJ +UJ +iC +Ys +uP +UJ +Wv +Wv +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +"} +(105,1,2) = {" +kZ +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +ZR +Ho +ZR +ZR +ZR +WP +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +ZR +fY +wu +fY +fY +ZR +fY +fY +wu +fY +fY +fY +ZR +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +CC +VJ +wd +XP +XP +XP +XP +XP +IY +XP +vr +vr +vr +Qf +RX +LZ +LZ +LZ +UW +wR +wd +OX +fZ +zj +OX +oC +QV +QV +QV +QV +Sr +wd +OX +OX +iL +wd +QV +Yg +Yg +Yg +oB +Vq +Vq +Vq +Vq +Jd +Mr +dk +ZR +jK +jK +jK +jK +jK +jK +jK +jK +za +jK +jK +TD +jK +jK +jK +jK +jK +jK +za +NS +NS +SL +Yo +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Wv +oq +gE +JC +DF +DF +DF +DF +DF +FD +Ox +PZ +DF +DF +DF +DF +DF +FD +Wv +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +"} +(106,1,2) = {" +kZ +sO +ZR +ZR +ZR +Ho +Ho +sO +ZR +ZR +ZR +Ho +Ho +WP +Cz +Ho +WP +Ho +Ho +kZ +Yg +Yg +Yg +VJ +fY +fY +fY +fY +fY +Om +fY +fY +fY +fY +ZR +fY +fY +fY +fY +fY +fY +ZR +fY +fY +fY +fY +fY +fY +fY +fY +wu +fY +fY +VJ +wd +kx +XP +XP +kx +XP +IY +XP +XP +kx +XP +RX +LZ +UW +iI +iI +wR +wd +wd +Yg +Yg +Yg +Yg +wd +wd +wd +wd +wd +wd +wd +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +oB +Vq +Vq +Ez +Nu +ZR +Cp +iG +ZR +NS +NS +cX +cX +pm +Nb +pm +pm +pm +jK +cX +cX +pm +Nb +Ss +pm +pm +NS +NS +NS +SL +Yo +Vq +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Wv +NR +oJ +dA +CW +yT +CW +CW +CW +Df +BX +dA +CW +CW +CW +CW +CW +Ff +Wv +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +"} +(107,1,2) = {" +kZ +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +ZR +Ho +Ho +WP +Cz +Ho +WP +Ho +Ho +kZ +Yg +Yg +Yg +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +VJ +wd +XP +XP +XP +XP +XP +ZR +ZR +XP +XP +XP +LZ +Iw +wR +wd +wd +wd +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +oB +JK +JK +ZR +ZR +ZR +Vq +Jd +pM +Mr +NS +NS +NS +pe +Kq +pm +pm +pm +jK +En +YS +xn +Nb +pm +NS +NS +ZR +SL +bC +Yo +Vq +Vq +Vq +Ez +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Wv +Rk +hp +dA +CW +OL +CW +CW +CW +Df +BX +dA +CW +Kx +Ue +IU +CW +aZ +Wv +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +"} +(108,1,2) = {" +kZ +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +ZR +sO +Ho +ZR +ZR +ZR +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +wd +XP +XP +XP +XP +XP +XP +ZR +ZR +XP +LZ +UW +wd +wd +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +oB +Vq +Vq +Vq +Nu +wg +Vq +Vq +ZR +Cp +bC +Mr +NS +NS +Nb +Nb +Nb +Nb +jK +Nb +Kq +Nb +uQ +NS +Cw +SL +bC +fu +ZR +Vq +Vq +hs +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Wv +gl +Ul +dA +YP +bT +pC +yq +CW +Ga +Ox +Ch +CW +qv +Ey +Py +CW +aZ +Wv +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +"} +(109,1,2) = {" +kZ +Ho +Ho +sO +Ho +Ho +Ho +Ho +Ho +Ho +sO +Ho +kZ +kZ +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +wd +kx +XP +XP +XP +kx +XP +XP +LZ +XP +UW +wR +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +oB +Vq +Vq +Vq +Nu +Nu +Vq +Vq +Vq +JK +Vq +Jd +iG +ZR +ZR +ZR +YZ +YZ +ZR +ZR +pm +NS +NS +NS +SL +Yo +Vq +Vq +Vq +ZR +Vq +Nu +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Wv +zK +oJ +dA +YP +pw +HQ +yq +CW +CT +WS +xY +CW +Ey +Ey +Ey +CW +Ff +Wv +Od +Od +Od +Od +Od +Od +Od +UJ +UJ +UJ +"} +(110,1,2) = {" +kZ +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +ZR +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +wd +XP +Na +XP +XP +XP +XP +XP +Iw +iI +wR +wd +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +oB +Vq +Ez +Vq +Nu +Nu +Nu +Nu +Vq +ZR +ZR +ZR +Cp +bC +Mr +NS +NS +NS +za +ZR +ZR +NS +SL +bC +Yo +Vq +Ez +Vq +Vq +ZR +Nu +Nu +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Od +Od +Od +Od +Od +Od +Od +Od +Wv +Rk +Ey +dA +YP +fA +iM +oe +Dm +vq +Hk +Ku +Dm +Ze +Ze +Ze +fO +Ff +Wv +Od +Od +Od +Od +Od +Od +Od +UJ +Ba +UJ +"} +(111,1,2) = {" +kZ +WP +WP +kZ +kZ +WP +ZR +ZR +WP +ZR +ZR +WP +kZ +Ho +ZR +ZR +Ho +sO +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +oB +Vq +Vq +Vq +hs +Nu +Nu +Nu +wg +wg +Nu +ZR +Vq +Vq +Jd +bC +Us +NS +NS +NS +TF +pM +Yo +Vq +Vq +Vq +Vq +Vq +Nu +ZR +Nu +wg +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +UJ +UJ +Od +Od +Od +Od +Od +Od +Od +UJ +Cj +oJ +dA +YP +ny +IU +yq +CW +Ga +Ox +Ch +CW +pC +Ey +pV +OL +Ga +UJ +Od +Od +Od +Od +Od +UJ +UJ +UJ +CR +UJ +"} +(112,1,2) = {" +kZ +Cz +Cz +kZ +Ho +Cz +Ho +ZR +Cz +Ho +Ho +Cz +ZR +Ho +Ho +ZR +ZR +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +oB +Vq +Vq +Vq +Nu +wg +Nu +Nu +Nu +Nu +ZR +ZR +Nu +Nu +Vq +Vq +tG +DU +DU +DU +UZ +ZR +Vq +Vq +Vq +Vq +Vq +wg +wg +ZR +JK +oB +JK +ZR +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +xV +UJ +UJ +Od +Od +Od +Od +Od +Od +UJ +pC +Ey +dA +CW +OL +CW +CW +CW +Df +BX +dA +CW +HN +Kx +HQ +OL +tk +UJ +Od +Od +Od +Od +Od +UJ +CR +ai +Ax +UJ +"} +(113,1,2) = {" +kZ +Ho +Ho +ZR +ZR +Ho +Ho +ZR +Ho +Ho +Ho +Ho +ZR +ZR +Ho +sO +ZR +WP +ZR +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +oB +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZR +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Ez +Vq +Vq +ZR +Vq +Ez +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZR +ZR +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +dw +gu +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +xF +oJ +dA +CW +OL +CW +CW +CW +Df +BX +dA +CW +CW +CW +CW +OL +Ff +UJ +UJ +Wv +Wv +UJ +UJ +UJ +tV +kM +xN +UJ +"} +(114,1,2) = {" +kZ +Ho +sO +Ho +ZR +sO +Ho +WP +Ho +sO +Ho +Ho +Ho +ZR +Ho +Ho +Kc +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +oB +Vq +Vq +Vq +Vq +Vq +Ez +Vq +Vq +Vq +JK +Vq +Vq +Ez +Vq +Vq +Vq +Vq +Vq +TM +Vq +JK +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Ez +Ez +Vq +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +WH +WH +Fz +gY +gY +HH +pr +ta +cl +gY +Kx +vU +dA +CW +rs +CW +CW +em +IE +Ox +xu +eq +eq +eq +ZT +OL +zm +Ox +CR +ai +ai +lj +gY +yY +WX +nh +gY +UJ +"} +(115,1,2) = {" +kZ +Ho +Ho +Ho +WP +xB +Ho +ZR +Ho +Ho +Ho +Ho +Ho +WP +Ho +xB +ZR +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +oB +Ez +Vq +Vq +Vq +Vq +Vq +Vq +Ez +Vq +JK +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +JK +Ez +Vq +Vq +Vq +Ez +Vq +Vq +Vq +Vq +TM +Vq +Vq +Vq +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +gx +WH +WH +WH +iA +pr +GL +ta +ta +gY +gY +Ox +dA +CW +CW +CW +CW +Ff +Ox +Ox +Ox +BX +BX +Ox +dA +OL +Ff +Ox +yA +Eh +Eh +sE +gY +yA +Zj +ya +Jk +UJ +"} +(116,1,2) = {" +kZ +Ho +Ho +Ho +ZR +Ho +Ho +WP +Ho +Ho +Ho +Ho +Ho +WP +Ho +Ho +ZR +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +oB +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZR +Vq +Vq +Vq +Vq +Vq +Ez +Vq +Vq +Vq +Vq +ZR +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Ez +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +WH +WH +WH +WH +gY +gY +ta +Xp +pr +pr +iA +hD +dA +CW +CW +CW +CW +pi +Ox +HF +kR +Ab +QK +zM +xY +OL +Ff +BX +np +Lg +KJ +PB +gY +np +oK +BQ +gY +UJ +"} +(117,1,2) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +oB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +mm +Wf +WH +WH +WH +gY +dx +ta +pr +CF +gY +pS +ds +FU +Ts +Ts +FI +Md +Ox +Ib +Ys +Ey +Ys +oq +CW +OL +Ff +BX +np +zA +zA +PB +gY +gY +lU +gY +gY +UJ +"} +(118,1,2) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +cp +RR +dD +WH +WH +WH +WH +gY +UJ +UJ +UJ +UJ +UJ +UJ +Ox +rH +jg +yR +rH +Ox +Ox +nx +CW +CW +CW +CW +CW +OL +Ff +BX +np +pr +pr +nh +KC +bh +DD +nh +ai +UJ +"} +(119,1,2) = {" +kZ +xB +Cz +WP +Ho +Ho +Cz +WP +Ho +Ho +Ho +Ho +Ho +WP +Cz +Ho +Ho +Ho +xB +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +UJ +KC +KC +KC +eu +eu +KC +UJ +Od +Od +Od +Od +UJ +xj +ZY +ZY +ZY +ZY +mH +Ox +Ye +CW +yG +Dm +Dm +Dm +mW +Ff +BX +hG +SV +Zr +SV +Ap +SV +DD +SV +sN +UJ +"} +(120,1,2) = {" +kZ +WP +ZR +ZR +Ho +Ho +Cz +WP +Ho +Ho +Ho +Ho +Ho +ZR +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +UJ +WH +WH +mm +WH +WH +WH +UJ +UJ +Od +Od +Od +UJ +eX +dZ +dZ +dZ +dZ +Sv +Ox +nB +jr +Ey +jr +lA +CW +OL +Ga +Ox +hG +SV +Kg +WZ +LE +WZ +Ir +SV +Zr +UJ +"} +(121,1,2) = {" +kZ +Ho +Ho +ZR +Ho +sO +Ho +ZR +Ho +Ho +Ho +ZR +ZR +ZR +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +UJ +WH +WH +WH +WH +WH +WH +WH +UJ +Od +Od +Od +UJ +YE +pj +Zm +Zm +oo +KS +Ox +dr +Jh +jW +jT +tS +ZT +OL +Ff +Ox +KC +Ap +ZV +KC +KC +To +Ov +To +To +UJ +"} +(122,1,2) = {" +kZ +Cz +sO +ZR +Ho +Ho +ZR +ZR +sO +Cz +Cz +ZR +Ho +Ho +sO +Ho +sO +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +UJ +WH +WH +vb +lW +WH +WH +WH +UJ +UJ +Od +Od +Wv +ZY +OI +WJ +ui +RL +ZY +Ox +Ox +Ox +BX +BX +Ox +dA +OL +mZ +BX +WK +vY +DD +CJ +UJ +UJ +UJ +UJ +UJ +UJ +"} +(123,1,2) = {" +kZ +WP +WP +ZR +WP +ZR +ZR +ZR +ZR +eg +eg +kZ +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +UJ +WH +Pa +AB +zU +WH +WH +WH +WH +UJ +Od +Od +Wv +ZY +OI +Ah +VK +RL +ZY +Ox +wM +Uv +IF +hc +Wd +xY +de +xz +tg +WZ +WZ +cu +CJ +UJ +yl +Si +lc +UJ +UJ +"} +(124,1,2) = {" +kZ +Ho +Ho +ZR +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +kZ +ZR +Ho +Ho +ZR +ZR +WP +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +UJ +Wf +na +UH +xV +Pa +WH +mm +WH +UJ +UJ +Od +Wv +ZY +OI +lB +Mw +RL +ZY +Ox +jC +CW +CW +CW +CW +CW +OL +nm +BX +bJ +SV +DD +tM +UJ +zw +qW +mY +UJ +UJ +"} +(125,1,2) = {" +kZ +Ho +Cz +WP +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +WP +Cz +Ho +ZR +Ho +Cz +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +UJ +yy +Ak +CU +ei +xV +WH +WH +WH +WH +UJ +Od +Wv +ZY +OI +Ah +sW +RL +ZY +Ox +ox +CW +yG +Dm +Dm +Dm +dY +Df +BX +hG +SV +DD +CJ +UJ +je +xw +Dj +UJ +UJ +"} +(126,1,2) = {" +kZ +kZ +kZ +kZ +Gp +Gp +ZK +ZK +Gp +Gp +Ho +Ho +Ho +WP +Cz +Ho +ZR +sO +Cz +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +UJ +DP +dw +CU +CU +wb +WH +WH +WH +WH +UJ +Od +UJ +YE +Ji +mt +mt +hX +KS +Ox +lR +dh +Le +PY +dh +CW +CW +mZ +BX +WK +SV +DD +CJ +UJ +yL +xl +yL +UJ +UJ +"} +(127,1,2) = {" +kZ +kZ +kZ +kZ +Gp +Cb +FG +FG +pn +Gp +Vb +Ho +Ho +ZR +ZR +ZR +ZR +ZR +WP +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +cp +cp +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +UJ +ew +YY +CU +VF +gu +yy +WH +WH +vb +UJ +UJ +UJ +JG +dZ +dZ +dZ +dZ +ON +Ox +Ib +dh +Le +ob +dh +CW +CW +Vu +Wm +SV +SV +DD +CJ +UJ +vf +ZZ +vR +bZ +UJ +"} +(128,1,2) = {" +ld +kZ +kZ +kZ +Gp +sP +Ik +FL +FG +ZK +hY +Ho +Ho +ZR +ZR +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +cp +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +UJ +fh +na +CU +gu +vb +Lv +hW +hW +Wg +UI +gY +Qc +JG +ZY +zf +zf +ZY +ON +Ox +go +vI +eq +eq +eq +eq +vI +SF +BX +bJ +Zr +xi +YL +UJ +HB +ZZ +ZZ +FR +UJ +"} +(129,1,2) = {" +ld +kZ +kZ +kZ +Gp +xc +lT +Ik +Ik +ZK +hY +Ho +Ho +Ho +sO +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +UJ +vs +jc +Em +gu +AB +DP +WH +WH +WH +AB +gY +Qc +gY +gY +gY +gY +gY +gY +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +hG +SV +DD +CJ +UJ +nq +ZZ +ZL +ZZ +UJ +"} +(130,1,2) = {" +ld +kZ +kZ +kZ +Gp +up +bs +mT +up +ZK +hY +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +qJ +WH +dw +gu +ar +YJ +WH +dW +dW +WH +DP +gY +Qc +Qr +hZ +ai +ai +Ck +gY +CR +ai +ai +bh +Qw +xv +wJ +wJ +QZ +Ox +hG +SV +DD +CJ +UJ +XO +ZZ +hl +NW +UJ +"} +(131,1,2) = {" +ld +aB +Gp +Gp +Gp +bs +Mc +Ao +iz +Gp +qC +Ho +Ho +Ho +Ho +Ho +sO +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +sf +sB +kl +IW +IW +dW +dW +dW +dW +dW +dW +gY +Qc +pa +Gg +pr +jy +Bo +gY +np +Kg +WZ +WZ +ee +WZ +WZ +SG +MG +Ox +KC +Ap +ZV +KC +UJ +yL +Ig +yL +UJ +UJ +"} +(132,1,2) = {" +ld +aB +oc +PK +Gp +PK +WT +vH +bH +Pi +RM +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +sf +dW +dW +dW +dW +dW +dW +dW +dW +dW +dW +gY +Qc +FX +TJ +pu +ya +Zz +gY +np +ha +Ms +px +of +Ms +px +DD +xv +KC +WK +SV +ha +CJ +UJ +yl +VY +mk +UJ +UJ +"} +(133,1,2) = {" +ld +aB +ag +bH +bi +bs +Uu +PK +bH +PK +RM +Ho +Ho +ZR +ZR +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +sf +dW +dW +dW +dW +LH +dW +dW +HG +dW +Mu +ie +Qc +cs +pr +pr +GL +ex +gY +np +DD +CJ +UJ +UJ +UJ +LC +xi +WZ +LE +WZ +WZ +cu +tM +UJ +mY +Nj +cR +UJ +UJ +"} +(134,1,2) = {" +ld +aB +KL +vH +Gp +up +bH +bH +hU +Gp +an +Ho +Ho +ZR +ZR +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +sf +ie +IW +dW +ie +dW +IW +dW +dW +IW +pP +ie +Qc +PH +ph +Kh +xK +oK +gY +np +DD +CJ +UJ +Od +UJ +LC +DD +SV +Ap +SV +SV +DD +CJ +UJ +jb +MR +WA +UJ +UJ +"} +(135,1,2) = {" +ld +aB +Gp +Gp +Gp +Ru +bH +gH +up +ZK +hY +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Od +Od +Od +Wv +Wv +Wv +Wv +Wv +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +sf +Nm +IW +IW +pA +pA +pA +dW +dW +KV +Nm +Nm +UJ +zL +zL +gY +zL +bv +gY +np +DD +CJ +pX +Od +pX +LC +ha +Ms +Jg +px +SV +DD +Rf +UJ +UJ +UJ +UJ +UJ +UJ +"} +(136,1,2) = {" +ld +aB +ag +bH +Gp +up +sM +bH +up +ZK +hY +Ho +Ho +Ho +sO +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Wv +HQ +Bp +xL +Bp +yn +Wv +Od +Od +Od +Wv +pC +Bp +qv +Wv +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +sf +AY +dW +dW +dW +dW +dW +dW +dW +dW +dW +dW +pl +Nz +pr +Go +Nz +DD +nh +bh +DD +CJ +pX +Od +pX +LC +DD +CJ +Ox +LC +SV +DD +CJ +UJ +yl +VY +lc +yL +UJ +"} +(137,1,2) = {" +ld +aB +KL +hi +SX +bH +qL +bH +Gy +ZK +bn +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Wv +Wv +UJ +HN +Ys +Ey +Ys +Jl +UJ +UJ +UJ +UJ +UJ +iC +Ys +uP +UJ +Wv +Wv +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +Wa +TB +TB +TB +TB +TB +TB +Vr +TB +TB +TB +AU +Al +Vl +SV +gq +SV +DD +SV +SV +DD +CJ +UJ +Od +UJ +LC +DD +CJ +Ox +LC +Zr +DD +CJ +UJ +mY +WV +mY +vk +UJ +"} +(138,1,2) = {" +ld +aB +oc +PK +Gp +BW +PK +hi +cz +Gp +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Wv +oq +gE +JC +DF +DF +DF +DF +DF +FD +Ox +PZ +DF +DF +DF +DF +DF +FD +Wv +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +UJ +HG +dW +dW +dW +dW +dW +HE +dW +dW +dW +dW +mJ +SV +Ek +JF +WZ +So +VE +WZ +cu +CJ +UJ +Od +UJ +LC +DD +CJ +Ox +LF +SV +DD +CJ +UJ +je +MR +WA +yL +UJ +"} +(139,1,2) = {" +kZ +aB +Gp +Gp +Gp +NB +ep +up +gO +Gp +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Wv +NR +oJ +dA +CW +yT +CW +CW +CW +Df +BX +dA +CW +CW +CW +CW +CW +Ff +Wv +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +UJ +dW +dW +IW +IW +dW +dW +HL +dW +dW +dW +dW +mJ +Nz +pr +gq +Nz +DD +BQ +xK +DD +CJ +pX +Od +pX +LC +DD +CJ +Ox +LC +SV +DD +CJ +UJ +UJ +UJ +UJ +UJ +UJ +"} +(140,1,2) = {" +kZ +gK +Ho +Ho +Gp +Gp +PU +oj +Gp +Gp +Ho +Ho +Ho +ZR +ZR +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Wv +Rk +hp +dA +CW +OL +CW +CW +CW +Df +BX +dA +CW +Kx +Ue +IU +CW +aZ +Wv +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +UJ +KV +ie +sB +pA +pA +pA +HL +dW +pA +pA +lx +UJ +UO +XA +gY +zL +lU +UJ +np +DD +CJ +pX +Od +pX +LC +ha +iW +bY +gI +SV +DD +iW +fN +fN +fN +fN +Kb +UJ +"} +(141,1,2) = {" +kZ +Ho +Ho +Ho +Ho +Ho +Op +Ho +Ho +Ho +Ho +Ho +Ho +ZR +ZR +ZR +sO +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Wv +gl +Ul +dA +YP +bT +pC +yq +CW +Ga +Ox +Ch +CW +qv +Ey +Py +CW +aZ +Wv +Od +Od +Od +Od +Od +Od +Od +Od +Od +cp +UJ +WH +WH +ie +pP +dW +dW +HL +dW +IW +ie +Er +Qc +SN +kX +AI +bh +oK +gY +np +DD +CJ +UJ +Od +UJ +LC +DD +SV +Ap +SV +SV +DD +SV +SV +SV +SV +SV +CJ +UJ +"} +(142,1,2) = {" +kZ +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +ZR +Ho +ZR +ZR +ZR +WP +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Od +Od +Od +Od +Od +Od +Od +Od +Od +Wv +zK +oJ +dA +YP +pw +HQ +yq +CW +CT +WS +xY +CW +Ey +Ey +Ey +CW +Ff +Wv +Od +Od +Od +Od +Od +Od +Od +UJ +UJ +UJ +UJ +WH +Pa +WH +ie +sB +IW +HL +dW +dW +ie +pP +Qc +nU +pr +eb +pr +dU +gY +np +DD +CJ +UJ +UJ +UJ +LC +xi +WZ +LE +WZ +WZ +kO +WZ +WZ +WZ +WZ +XZ +tM +UJ +"} +(143,1,2) = {" +kZ +sO +ZR +ZR +ZR +Ho +Ho +sO +ZR +ZR +ZR +Ho +Ho +WP +Cz +Ho +WP +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +cp +Yg +Od +Od +Od +Od +Od +Od +Od +Od +Wv +Rk +Ey +dA +YP +fA +iM +oe +Dm +vq +Hk +Ku +Dm +Ze +Ze +Ze +fO +Ff +Wv +Od +Od +Od +Od +Od +Od +Od +UJ +Ba +UJ +UJ +LM +LM +UI +WH +WH +ie +Eo +dW +dW +ie +gY +Qc +gJ +TJ +pu +DW +SU +gY +np +DD +iW +gI +RJ +iW +gI +DD +BQ +KC +Kh +Kh +Kh +Kh +Kh +xK +SV +DD +CJ +UJ +"} +(144,1,2) = {" +kZ +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +ZR +Ho +Ho +WP +Cz +Ho +WP +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +UJ +UJ +Od +Od +Od +Od +Od +Od +Od +UJ +Cj +oJ +dA +YP +ny +IU +yq +CW +Ga +Ox +Ch +CW +pC +Ey +pV +OL +Ga +UJ +Od +Od +Od +Od +Od +UJ +UJ +UJ +CR +UJ +UJ +ej +xV +AB +ar +FO +WH +Di +dW +ie +Da +gY +Qc +Yz +pr +pr +GW +Xm +gY +np +wt +VE +WZ +Yh +WZ +WZ +Ir +PB +gY +gY +gY +gY +gY +gY +np +sN +ha +CJ +UJ +"} +(145,1,2) = {" +kZ +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +ZR +sO +Ho +ZR +ZR +ZR +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +xV +UJ +UJ +Od +Od +Od +Od +Od +Od +UJ +pC +Ey +dA +CW +OL +CW +CW +CW +Df +BX +dA +CW +HN +Kx +HQ +OL +tk +UJ +Od +Od +Od +Od +Od +UJ +CR +ai +Ax +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +"} +(146,1,2) = {" +kZ +Ho +Ho +sO +Ho +Ho +Ho +Ho +Ho +Ho +sO +Ho +kZ +kZ +Ho +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +dw +gu +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +xF +oJ +dA +CW +OL +CW +CW +CW +Df +BX +dA +CW +CW +CW +CW +OL +Ff +UJ +UJ +Wv +Wv +UJ +UJ +UJ +tV +kM +xN +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(147,1,2) = {" +kZ +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +Ho +kZ +ZR +Ho +Ho +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +WH +WH +Fz +gY +gY +HH +pr +ta +cl +gY +Kx +vU +dA +CW +rs +CW +CW +em +IE +Ox +xu +eq +eq +eq +ZT +OL +zm +Ox +CR +ai +ai +lj +gY +yY +WX +nh +gY +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(148,1,2) = {" +kZ +WP +WP +kZ +kZ +WP +ZR +ZR +WP +ZR +ZR +WP +kZ +Ho +ZR +ZR +Ho +sO +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +gx +WH +WH +WH +iA +pr +GL +ta +ta +gY +gY +Ox +dA +CW +CW +CW +CW +Ff +Ox +Ox +Ox +BX +BX +Ox +dA +OL +Ff +Ox +yA +Eh +Eh +sE +gY +yA +Zj +ya +Jk +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(149,1,2) = {" +kZ +Cz +Cz +kZ +Ho +Cz +Ho +ZR +Cz +Ho +Ho +Cz +ZR +Ho +Ho +ZR +ZR +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +WH +WH +WH +WH +gY +gY +ta +Xp +pr +pr +iA +hD +dA +CW +CW +CW +CW +pi +Ox +HF +kR +Ab +QK +zM +xY +OL +Ff +BX +np +Lg +KJ +PB +gY +np +oK +BQ +gY +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(150,1,2) = {" +kZ +Ho +Ho +ZR +ZR +Ho +Ho +ZR +Ho +Ho +Ho +Ho +ZR +ZR +Ho +sO +ZR +WP +ZR +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +mm +Wf +WH +WH +WH +gY +dx +ta +pr +CF +gY +pS +ds +FU +Ts +Ts +FI +Md +Ox +Ib +Ys +Ey +Ys +oq +CW +OL +Ff +BX +np +zA +zA +PB +gY +gY +lU +gY +gY +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(151,1,2) = {" +kZ +Ho +sO +Ho +ZR +sO +Ho +WP +Ho +sO +Ho +Ho +Ho +ZR +Ho +Ho +Kc +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +RR +dD +WH +WH +WH +WH +gY +UJ +UJ +UJ +UJ +UJ +UJ +Ox +rH +jg +yR +rH +Ox +Ox +nx +CW +CW +CW +CW +CW +OL +Ff +BX +np +pr +pr +nh +KC +bh +DD +nh +ai +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(152,1,2) = {" +kZ +Ho +Ho +Ho +WP +xB +Ho +ZR +Ho +Ho +Ho +Ho +Ho +WP +Ho +xB +ZR +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +KC +KC +KC +eu +eu +KC +UJ +Od +Od +Od +Od +UJ +xj +ZY +ZY +ZY +ZY +mH +Ox +Ye +CW +yG +Dm +Dm +Dm +mW +Ff +BX +hG +SV +Zr +SV +Ap +SV +DD +SV +sN +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(153,1,2) = {" +kZ +Ho +Ho +Ho +ZR +Ho +Ho +WP +Ho +Ho +Ho +Ho +Ho +WP +Ho +Ho +ZR +Ho +Ho +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +WH +WH +mm +WH +WH +WH +UJ +UJ +Od +Od +Od +UJ +eX +dZ +dZ +dZ +dZ +Sv +Ox +nB +jr +Ey +jr +lA +CW +OL +Ga +Ox +hG +SV +Kg +WZ +LE +WZ +Ir +SV +Zr +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(154,1,2) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +WH +WH +WH +WH +WH +WH +WH +UJ +Od +Od +Od +UJ +YE +pj +Zm +Zm +oo +KS +Ox +dr +Jh +jW +jT +tS +ZT +OL +Ff +Ox +KC +Ap +ZV +KC +KC +To +Ov +To +To +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(155,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +WH +WH +vb +lW +WH +WH +WH +UJ +UJ +Od +Od +Wv +ZY +OI +WJ +ui +RL +ZY +Ox +Ox +Ox +BX +BX +Ox +dA +OL +mZ +BX +WK +vY +DD +CJ +UJ +UJ +UJ +UJ +UJ +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(156,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +WH +Pa +AB +zU +WH +WH +WH +WH +UJ +Od +Od +Wv +ZY +OI +Ah +VK +RL +ZY +Ox +wM +Uv +IF +hc +Wd +xY +de +xz +tg +WZ +WZ +cu +CJ +UJ +yl +Si +lc +UJ +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(157,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +Wf +na +UH +xV +Pa +WH +mm +WH +UJ +UJ +Od +Wv +ZY +OI +lB +Mw +RL +ZY +Ox +jC +CW +CW +CW +CW +CW +OL +nm +BX +bJ +SV +DD +tM +UJ +zw +qW +mY +UJ +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(158,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +yy +Ak +CU +ei +xV +WH +WH +WH +WH +UJ +Od +Wv +ZY +OI +Ah +sW +RL +ZY +Ox +ox +CW +yG +Dm +Dm +Dm +dY +Df +BX +hG +SV +DD +CJ +UJ +je +xw +Dj +UJ +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(159,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +DP +dw +CU +CU +wb +WH +WH +WH +WH +UJ +Od +UJ +YE +Ji +mt +mt +hX +KS +Ox +lR +dh +Le +PY +dh +CW +CW +mZ +BX +WK +SV +DD +CJ +UJ +yL +xl +yL +UJ +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(160,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +ew +YY +CU +VF +gu +yy +WH +WH +vb +UJ +UJ +UJ +JG +dZ +dZ +dZ +dZ +ON +Ox +Ib +dh +Le +ob +dh +CW +CW +Vu +Wm +SV +SV +DD +CJ +UJ +vf +ZZ +vR +bZ +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(161,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +fh +na +CU +gu +vb +Lv +hW +hW +Wg +UI +gY +Qc +JG +ZY +zf +zf +ZY +ON +Ox +go +vI +eq +eq +eq +eq +vI +SF +BX +bJ +Zr +xi +YL +UJ +HB +ZZ +ZZ +FR +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(162,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +vs +jc +Em +gu +AB +DP +WH +WH +WH +AB +gY +Qc +gY +gY +gY +gY +gY +gY +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +hG +SV +DD +CJ +UJ +nq +ZZ +ZL +ZZ +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(163,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +qJ +WH +dw +gu +ar +YJ +WH +dW +dW +WH +DP +gY +Qc +Qr +hZ +ai +ai +Ck +gY +CR +ai +ai +bh +Qw +xv +wJ +wJ +QZ +Ox +hG +SV +DD +CJ +UJ +XO +ZZ +hl +NW +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(164,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +sf +sB +kl +IW +IW +dW +dW +dW +dW +dW +dW +gY +Qc +pa +Gg +pr +jy +Bo +gY +np +Kg +WZ +WZ +ee +WZ +WZ +SG +MG +Ox +KC +Ap +ZV +KC +UJ +yL +Ig +yL +UJ +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(165,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +sf +dW +dW +dW +dW +dW +dW +dW +dW +dW +dW +gY +Qc +FX +TJ +pu +ya +Zz +gY +np +ha +Ms +px +of +Ms +px +DD +xv +KC +WK +SV +ha +CJ +UJ +yl +VY +mk +UJ +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(166,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +sf +dW +dW +dW +dW +LH +dW +dW +HG +dW +Mu +ie +Qc +cs +pr +pr +GL +ex +gY +np +DD +CJ +UJ +UJ +UJ +LC +xi +WZ +LE +WZ +WZ +cu +tM +UJ +mY +Nj +cR +UJ +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(167,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +sf +ie +IW +dW +ie +dW +IW +dW +dW +IW +pP +ie +Qc +PH +ph +Kh +xK +oK +gY +np +DD +CJ +UJ +Od +UJ +LC +DD +SV +Ap +SV +SV +DD +CJ +UJ +jb +MR +WA +UJ +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(168,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +sf +Nm +IW +IW +pA +pA +pA +dW +dW +KV +Nm +Nm +UJ +zL +zL +gY +zL +bv +gY +np +DD +CJ +pX +Od +pX +LC +ha +Ms +Jg +px +SV +DD +Rf +UJ +UJ +UJ +UJ +UJ +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(169,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +sf +AY +dW +dW +dW +dW +dW +dW +dW +dW +dW +dW +pl +Nz +pr +Go +Nz +DD +nh +bh +DD +CJ +pX +Od +pX +LC +DD +CJ +Ox +LC +SV +DD +CJ +UJ +yl +VY +lc +yL +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(170,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Wa +TB +TB +TB +TB +TB +TB +Vr +TB +TB +TB +AU +Al +Vl +SV +gq +SV +DD +SV +SV +DD +CJ +UJ +Od +UJ +LC +DD +CJ +Ox +LC +Zr +DD +CJ +UJ +mY +WV +mY +vk +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(171,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +HG +dW +dW +dW +dW +dW +HE +dW +dW +dW +dW +mJ +SV +Ek +JF +WZ +So +VE +WZ +cu +CJ +UJ +Od +UJ +LC +DD +CJ +Ox +LF +SV +DD +CJ +UJ +je +MR +WA +yL +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(172,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +dW +dW +IW +IW +dW +dW +HL +dW +dW +dW +dW +mJ +Nz +pr +gq +Nz +DD +BQ +xK +DD +CJ +pX +Od +pX +LC +DD +CJ +Ox +LC +SV +DD +CJ +UJ +UJ +UJ +UJ +UJ +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(173,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +KV +ie +sB +pA +pA +pA +HL +dW +pA +pA +lx +UJ +UO +XA +gY +zL +lU +UJ +np +DD +CJ +pX +Od +pX +LC +ha +iW +bY +gI +SV +DD +iW +fN +fN +fN +fN +Kb +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(174,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +WH +WH +ie +pP +dW +dW +HL +dW +IW +ie +Er +Qc +SN +kX +AI +bh +oK +gY +np +DD +CJ +UJ +Od +UJ +LC +DD +SV +Ap +SV +SV +DD +SV +SV +SV +SV +SV +CJ +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(175,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +WH +Pa +WH +ie +sB +IW +HL +dW +dW +ie +pP +Qc +nU +pr +eb +pr +dU +gY +np +DD +CJ +UJ +UJ +UJ +LC +xi +WZ +LE +WZ +WZ +kO +WZ +WZ +WZ +WZ +XZ +tM +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(176,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +LM +LM +UI +WH +WH +ie +Eo +dW +dW +ie +gY +Qc +gJ +TJ +pu +DW +SU +gY +np +DD +iW +gI +RJ +iW +gI +DD +BQ +KC +Kh +Kh +Kh +Kh +Kh +xK +SV +DD +CJ +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(177,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +ej +xV +AB +ar +FO +WH +Di +dW +ie +Da +gY +Qc +Yz +pr +pr +GW +Xm +gY +np +wt +VE +WZ +Yh +WZ +WZ +Ir +PB +gY +gY +gY +gY +gY +gY +np +sN +ha +CJ +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(178,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +UJ +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(179,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(180,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(181,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(182,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(183,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(184,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(185,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(186,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(187,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(188,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(189,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(190,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(191,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(192,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(193,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(194,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(195,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(196,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(197,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(198,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(199,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} +(200,1,2) = {" +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +"} diff --git a/maps/simulacrum.json b/maps/simulacrum.json new file mode 100644 index 0000000000..376279ae90 --- /dev/null +++ b/maps/simulacrum.json @@ -0,0 +1,17 @@ +{ + "map_name": "Unknown Signal", + "map_path": "map_files/simulacrum", + "map_file": "simulacrum.dmm", + "webmap_url": "WhiskeyOutpost", + "map_item_type": "/obj/item/map/whiskey_outpost_map", + "nightmare_path": "maps/Nightmare/maps/Whiskey_Outpost_v3/", + "camouflage": "desert", + "gamemodes": [ + "Distress Signal", + "Hunter Games", + "Hive Wars", + "Faction Clash", + "Infection" + ], + "weather_holder": "/datum/weather_ss_map_holder/big_red" +}