diff --git a/.gitignore b/.gitignore index 282f3eabf8..b7121fe8fb 100644 --- a/.gitignore +++ b/.gitignore @@ -22,9 +22,6 @@ cfg/ !/.vscode/settings.json !/.vscode/tasks.json -code/game/gamemodes/technomancer/spells/projectile/overload.dm -code/game/gamemodes/technomancer/spells/projectile/overload.dm -code/modules/client/preference_setup/loadout/loadout_xeno.dm temp.dmi node_modules/ diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000000..2b7500b231 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,5 @@ +# We don't want prettier to run on anything outside of the TGUI folder, so we have to do this. +/* + +# We want it to run into the TGUI folder, however. +!/tgui diff --git a/code/__defines/planets.dm b/code/__defines/planets.dm index da67d42ea2..3579cc804d 100644 --- a/code/__defines/planets.dm +++ b/code/__defines/planets.dm @@ -11,6 +11,7 @@ #define WEATHER_BLOOD_MOON "blood moon" // For admin fun or cult later on. #define WEATHER_EMBERFALL "emberfall" // More adminbuse, from TG. Harmless. #define WEATHER_ASH_STORM "ash storm" // Ripped from TG, like the above. Less harmless. +#define WEATHER_ASH_STORM_SAFE "light ash storm" //Safe version of the ash storm. Dimmer. #define WEATHER_FALLOUT "fallout" // Modified emberfall, actually harmful. Admin only. #define MOON_PHASE_NEW_MOON "new moon" diff --git a/code/__defines/species_languages_vr.dm b/code/__defines/species_languages_vr.dm index b8f3ed3429..7980683f9c 100644 --- a/code/__defines/species_languages_vr.dm +++ b/code/__defines/species_languages_vr.dm @@ -14,5 +14,7 @@ #define LANGUAGE_ECHOSONG "Echo Song" #define LANGUAGE_ANIMAL "Animal" +#define LANGUAGE_TEPPI "Teppi" +#define LANGUAGE_MOUSE "Mouse" #define LANGUAGE_SHADEKIN "Shadekin Empathy" diff --git a/code/_global_vars/mobs.dm b/code/_global_vars/mobs.dm index 7e60dc71ea..9e1027bc88 100644 --- a/code/_global_vars/mobs.dm +++ b/code/_global_vars/mobs.dm @@ -1,5 +1,7 @@ GLOBAL_LIST_EMPTY(admins) //all clients whom are admins GLOBAL_PROTECT(admins) +GLOBAL_LIST_EMPTY(mentors) +GLOBAL_PROTECT(mentors) GLOBAL_LIST_EMPTY(deadmins) //all ckeys who have used the de-admin verb. GLOBAL_LIST_EMPTY(stealthminID) GLOBAL_LIST_EMPTY(directory) //all ckeys with associated client diff --git a/code/_helpers/logging.dm b/code/_helpers/logging.dm index 0cb6c7ee27..15b48c77a7 100644 --- a/code/_helpers/logging.dm +++ b/code/_helpers/logging.dm @@ -37,7 +37,7 @@ /proc/log_debug(text) if (config.log_debug) - WRITE_LOG(debug_log, "DEBUG: [text]") + WRITE_LOG(debug_log, "DEBUG: [sanitize(text)]") for(var/client/C in GLOB.admins) if(C.is_preference_enabled(/datum/client_preference/debug/show_debug_logs)) diff --git a/code/_helpers/turfs.dm b/code/_helpers/turfs.dm index ddfcec7421..515370c50d 100644 --- a/code/_helpers/turfs.dm +++ b/code/_helpers/turfs.dm @@ -156,7 +156,8 @@ for(var/obj/O in T) if(O.simulated) O.loc = X - O.update_light() + if(O.light_system == STATIC_LIGHT) + O.update_light() if(z_level_change) // The objects still need to know if their z-level changed. O.onTransitZ(T.z, X.z) diff --git a/code/controllers/configuration.dm b/code/controllers/configuration.dm index 2f336d1a39..2a81ab313d 100644 --- a/code/controllers/configuration.dm +++ b/code/controllers/configuration.dm @@ -79,6 +79,7 @@ var/list/gamemode_cache = list() var/static/kick_inactive = 0 //force disconnect for inactive players after this many minutes, if non-0 var/static/show_mods = 0 var/static/show_devs = 0 + var/static/show_mentors = 0 var/static/show_event_managers = 0 var/static/mods_can_tempban = 0 var/static/mods_can_job_tempban = 0 @@ -290,7 +291,7 @@ var/list/gamemode_cache = list() // How strictly the loadout enforces object species whitelists var/loadout_whitelist = LOADOUT_WHITELIST_LAX - + var/static/vgs_access_identifier = null // VOREStation Edit - VGS var/static/vgs_server_port = null // VOREStation Edit - VGS @@ -660,6 +661,9 @@ var/list/gamemode_cache = list() if("show_devs") config.show_devs = 1 + if("show_mentors") + config.show_mentors = 1 + if("show_event_managers") config.show_event_managers = 1 diff --git a/code/controllers/globals.dm b/code/controllers/globals.dm index 6b7c0b4137..bacaa59f8f 100644 --- a/code/controllers/globals.dm +++ b/code/controllers/globals.dm @@ -36,7 +36,7 @@ GLOBAL_REAL(GLOB, /datum/controller/global_vars) if(!statclick) statclick = new/obj/effect/statclick/debug(null, "Initializing...", src) - stat("GLOB:", statclick.update("Edit")) + stat("GLOB:", "Button Removed Due To Crashing") //VOREStation Edit /datum/controller/global_vars/vv_edit_var(var_name, var_value) if(gvars_datum_protected_varlist[var_name]) diff --git a/code/controllers/subsystems/chat.dm b/code/controllers/subsystems/chat.dm index aece61d39e..92a1be2757 100644 --- a/code/controllers/subsystems/chat.dm +++ b/code/controllers/subsystems/chat.dm @@ -52,7 +52,7 @@ SUBSYSTEM_DEF(chat) for(var/I in target) var/client/C = CLIENT_FROM_VAR(I) //Grab us a client if possible - if(!C) + if(!C || !C.chatOutput) continue // No client? No care. else if(C.chatOutput.broken) DIRECT_OUTPUT(C, original_message) @@ -65,7 +65,7 @@ SUBSYSTEM_DEF(chat) else var/client/C = CLIENT_FROM_VAR(target) //Grab us a client if possible - if(!C) + if(!C || !C.chatOutput) return // No client? No care. else if(C.chatOutput.broken) DIRECT_OUTPUT(C, original_message) diff --git a/code/controllers/subsystems/xenoarch.dm b/code/controllers/subsystems/xenoarch.dm index a175625b1f..111653fc68 100644 --- a/code/controllers/subsystems/xenoarch.dm +++ b/code/controllers/subsystems/xenoarch.dm @@ -1,8 +1,8 @@ #define XENOARCH_SPAWN_CHANCE 0.5 #define DIGSITESIZE_LOWER 4 #define DIGSITESIZE_UPPER 12 -#define ARTIFACTSPAWNNUM_LOWER 6 -#define ARTIFACTSPAWNNUM_UPPER 12 +#define ARTIFACTSPAWNNUM_LOWER 12 +#define ARTIFACTSPAWNNUM_UPPER 24 // // Xenoarch subsystem handles initialization of Xenoarcheaology artifacts and digsites. diff --git a/code/datums/helper_datums/teleport.dm b/code/datums/helper_datums/teleport.dm index 956adec1fb..270f52410c 100644 --- a/code/datums/helper_datums/teleport.dm +++ b/code/datums/helper_datums/teleport.dm @@ -1,3 +1,10 @@ +var/bluespace_item_types = newlist(/obj/item/weapon/storage/backpack/holding, +/obj/item/weapon/storage/bag/trash/holding, +/obj/item/weapon/storage/pouch/holding, +/obj/item/weapon/storage/belt/utility/holding, +/obj/item/weapon/storage/belt/medical/holding +) + //wrapper /proc/do_teleport(ateleatom, adestination, aprecision=0, afteleport=1, aeffectin=null, aeffectout=null, asoundin=null, asoundout=null, local=TRUE, bohsafe=FALSE) //CHOMPStation Edit new /datum/teleport/instant/science(arglist(args)) @@ -157,21 +164,27 @@ /datum/teleport/instant/science/setPrecision(aprecision) ..() - if(bohsafe) - return 1 - if(istype(teleatom, /obj/item/weapon/storage/backpack/holding)) - precision = rand(1,100) + if(bohsafe) //CHOMPedit + return 1 //CHOMPedit + + var/list/bluespace_things = newlist() + + for (var/item in bluespace_item_types) + if (istype(teleatom, item)) + precision = rand(1, 100) + bluespace_things |= teleatom.search_contents_for(item) - var/list/bagholding = teleatom.search_contents_for(/obj/item/weapon/storage/backpack/holding) //VOREStation Addition Start: Prevent taurriding abuse if(istype(teleatom, /mob/living)) var/mob/living/L = teleatom if(LAZYLEN(L.buckled_mobs)) for(var/mob/rider in L.buckled_mobs) - bagholding += rider.search_contents_for(/obj/item/weapon/storage/backpack/holding) + for (var/item in bluespace_item_types) + bluespace_things |= rider.search_contents_for(item) //VOREStation Addition End: Prevent taurriding abuse - if(bagholding.len) - precision = max(rand(1,100)*bagholding.len,100) + + if(bluespace_things.len) + precision = max(rand(1,100)*bluespace_things.len,100) if(istype(teleatom, /mob/living)) var/mob/living/MM = teleatom to_chat(MM, "The Bluespace interface on your [teleatom] interferes with the teleport!") @@ -226,4 +239,4 @@ return 0 else return 1 - //VOREStation Edit End \ No newline at end of file + //VOREStation Edit End diff --git a/code/datums/helper_datums/teleport_vr.dm b/code/datums/helper_datums/teleport_vr.dm index d8e8428535..bf98361151 100644 --- a/code/datums/helper_datums/teleport_vr.dm +++ b/code/datums/helper_datums/teleport_vr.dm @@ -1,8 +1,14 @@ //wrapper +//This teleport effect means that bluespace items will cause a teleport location variation of 1 to 100 tiles. /proc/do_noeffect_teleport(ateleatom, adestination, aprecision=0, afteleport=1, aeffectin=null, aeffectout=null, asoundin=null, asoundout=null, local=FALSE) new /datum/teleport/instant/science/noeffect(arglist(args)) return +//This teleport effect does not interact with bluespace items. +/proc/do_safe_teleport(ateleatom, adestination, aprecision=0, afteleport=1, aeffectin=null, aeffectout=null, asoundin=null, asoundout=null, local=FALSE) + new /datum/teleport/instant(arglist(args)) + return + /datum/teleport/instant/science/noeffect/setEffects(datum/effect/effect/system/aeffectin,datum/effect/effect/system/aeffectout) return 1 diff --git a/code/datums/outfits/jobs/command.dm b/code/datums/outfits/jobs/command.dm index d8a74f925d..3bc5bb3099 100644 --- a/code/datums/outfits/jobs/command.dm +++ b/code/datums/outfits/jobs/command.dm @@ -7,7 +7,7 @@ backpack = /obj/item/weapon/storage/backpack/captain satchel_one = /obj/item/weapon/storage/backpack/satchel/cap messenger_bag = /obj/item/weapon/storage/backpack/messenger/com - id_type = /obj/item/weapon/card/id/gold + id_type = /obj/item/weapon/card/id/gold/captain // CHOMPFix, captain gets their two gold stripe drip back. pda_type = /obj/item/device/pda/captain /decl/hierarchy/outfit/job/captain/post_equip(var/mob/living/carbon/human/H) diff --git a/code/datums/supplypacks/science_vr.dm b/code/datums/supplypacks/science_vr.dm index 1d9922e7d8..2e9f756aa2 100644 --- a/code/datums/supplypacks/science_vr.dm +++ b/code/datums/supplypacks/science_vr.dm @@ -29,7 +29,7 @@ containertype = /obj/structure/largecrate/animal/weretiger containername = "Weretiger crate" access = access_xenobiology -/* + /datum/supply_pack/sci/otie name = "VARMAcorp adoptable reject (Dangerous!)" cost = 100 @@ -43,4 +43,3 @@ containertype = /obj/structure/largecrate/animal/otie/phoron containername = "VARMAcorp adaptive beta subject (Experimental)" access = access_xenobiology -*/ //VORESTATION AI TEMPORARY REMOVAL. Oties commented out cuz broke. diff --git a/code/datums/supplypacks/security_vr.dm b/code/datums/supplypacks/security_vr.dm index a00556e528..bbb28e08fb 100644 --- a/code/datums/supplypacks/security_vr.dm +++ b/code/datums/supplypacks/security_vr.dm @@ -1,4 +1,4 @@ -/*/datum/supply_pack/security/guardbeast //VORESTATION AI TEMPORARY REMOVAL +/datum/supply_pack/security/guardbeast name = "VARMAcorp autoNOMous security solution" cost = 150 containertype = /obj/structure/largecrate/animal/guardbeast @@ -17,7 +17,6 @@ access_security, access_xenobiology) one_access = TRUE -*/ /datum/supply_pack/randomised/security/armor access = access_armory diff --git a/code/datums/supplypacks/vending_refills_vr.dm b/code/datums/supplypacks/vending_refills_vr.dm index 47ee538d7e..348193a1bf 100644 --- a/code/datums/supplypacks/vending_refills_vr.dm +++ b/code/datums/supplypacks/vending_refills_vr.dm @@ -48,6 +48,11 @@ name = "Ration Station Vendor Refill Cartridge" cost = 10 +/datum/supply_pack/vending_refills/altevian + contains = list(/obj/item/weapon/refill_cartridge/autoname/food/altevian) + name = "Altevian Vendor Refill Cartridge" + cost = 10 + /datum/supply_pack/vending_refills/coffee contains = list(/obj/item/weapon/refill_cartridge/autoname/drink/coffee) name = "Hot Drinks Vendor Refill Cartridge" diff --git a/code/datums/supplypacks/voidsuits.dm b/code/datums/supplypacks/voidsuits.dm index f8e091bb3d..2d1ae7c99a 100644 --- a/code/datums/supplypacks/voidsuits.dm +++ b/code/datums/supplypacks/voidsuits.dm @@ -259,4 +259,11 @@ cost = 80 containertype = /obj/structure/closet/crate/oculum containername = "Vox Civilian Hardsuit" + +/datum/supply_pack/voidsuits/voxeng + name = "Vox Engineering Hardsuit" + contains = list (/obj/item/weapon/rig/vox/engineering) + cost = 150 + containertype = /obj/structure/closet/crate/oculum + containername = "Vox Engineering Hardsuit" //ChompEdit End diff --git a/code/datums/uplink/tools.dm b/code/datums/uplink/tools.dm index eee41e9699..9c1a46d632 100644 --- a/code/datums/uplink/tools.dm +++ b/code/datums/uplink/tools.dm @@ -6,22 +6,22 @@ /datum/uplink_item/item/tools/binoculars name = "Binoculars" - item_cost = 5 + item_cost = 3 path = /obj/item/device/binoculars /datum/uplink_item/item/tools/toolbox // Leaving the basic as an option since powertools are loud. name = "Fully Loaded Toolbox" - item_cost = 5 + item_cost = 3 path = /obj/item/weapon/storage/toolbox/syndicate /datum/uplink_item/item/tools/powertoolbox name = "Fully Loaded Powertool Box" - item_cost = 10 + item_cost = 5 path = /obj/item/weapon/storage/toolbox/syndicate/powertools /datum/uplink_item/item/tools/clerical name = "Morphic Clerical Kit" - item_cost = 10 + item_cost = 5 path = /obj/item/weapon/storage/box/syndie_kit/clerical /datum/uplink_item/item/tools/encryptionkey_radio @@ -42,7 +42,7 @@ /datum/uplink_item/item/tools/duffle name = "Black Duffle Bag" - item_cost = 10 + item_cost = 5 path = /obj/item/weapon/storage/backpack/dufflebag/syndie /datum/uplink_item/item/tools/duffle/med @@ -61,7 +61,7 @@ /datum/uplink_item/item/tools/space_suit name = "Space Suit" - item_cost = 15 + item_cost = 10 path = /obj/item/weapon/storage/box/syndie_kit/space /datum/uplink_item/item/tools/encryptionkey_binary @@ -71,7 +71,7 @@ /datum/uplink_item/item/tools/hacking_tool name = "Door Hacking Tool" - item_cost = 20 + item_cost = 15 path = /obj/item/device/multitool/hacktool desc = "Appears and functions as a standard multitool until the mode is toggled by applying a screwdriver appropriately. \ When in hacking mode this device will grant full access to any standard airlock within 20 to 40 seconds. \ @@ -79,7 +79,7 @@ /datum/uplink_item/item/tools/ai_detector name = "Anti-Surveillance Tool" - item_cost = 20 + item_cost = 15 path = /obj/item/device/multitool/ai_detector desc = "This functions like a normal multitool, but includes an integrated camera network sensor that will warn the holder if they are being \ watched, by changing color and beeping. It is able to detect both AI visual surveillance and security camera utilization from terminals, and \ @@ -87,20 +87,20 @@ /datum/uplink_item/item/tools/radio_jammer name = "Subspace Jammer" - item_cost = 25 + item_cost = 20 path = /obj/item/device/radio_jammer desc = "A device which is capable of disrupting subspace communications, preventing the use of headsets, PDAs, and communicators within \ a radius of seven meters. It runs off weapon cells, which can be replaced as needed. One cell will last for approximately ten minutes." /datum/uplink_item/item/tools/wall_elecrtifier name = "Wall Electrifier" - item_cost = 10 + item_cost = 5 path = /obj/item/weapon/cell/spike desc = "A modified powercell which will electrify walls and reinforced floors in a 3x3 tile range around it. Always active." /datum/uplink_item/item/tools/emag name = "Cryptographic Sequencer" - item_cost = 30 + item_cost = 20 path = /obj/item/weapon/card/emag /datum/uplink_item/item/tools/graviton @@ -111,7 +111,7 @@ /datum/uplink_item/item/tools/thermal name = "Thermal Imaging Glasses" - item_cost = 30 + item_cost = 25 path = /obj/item/clothing/glasses/thermal/syndi /datum/uplink_item/item/tools/packagebomb diff --git a/code/game/dna/dna2_helpers.dm b/code/game/dna/dna2_helpers.dm index 931b298091..d5cdc700c7 100644 --- a/code/game/dna/dna2_helpers.dm +++ b/code/game/dna/dna2_helpers.dm @@ -22,7 +22,7 @@ // Give Random Bad Mutation to M /proc/randmutb(var/mob/living/M) - if(!M) return + if(!M || !(M.dna)) return M.dna.check_integrity() //var/block = pick(GLASSESBLOCK,COUGHBLOCK,FAKEBLOCK,NERVOUSBLOCK,CLUMSYBLOCK,TWITCHBLOCK,HEADACHEBLOCK,BLINDBLOCK,DEAFBLOCK,HALLUCINATIONBLOCK) // Most of these are disabled anyway. var/block = pick(FAKEBLOCK,CLUMSYBLOCK,BLINDBLOCK,DEAFBLOCK) @@ -30,7 +30,7 @@ // Give Random Good Mutation to M /proc/randmutg(var/mob/living/M) - if(!M) return + if(!M || !(M.dna)) return M.dna.check_integrity() //var/block = pick(HULKBLOCK,XRAYBLOCK,FIREBLOCK,TELEBLOCK,NOBREATHBLOCK,REMOTEVIEWBLOCK,REGENERATEBLOCK,INCREASERUNBLOCK,REMOTETALKBLOCK,MORPHBLOCK,BLENDBLOCK,NOPRINTSBLOCK,SHOCKIMMUNITYBLOCK,SMALLSIZEBLOCK) // Much like above, most of these blocks are disabled in code. var/block = pick(HULKBLOCK,XRAYBLOCK,FIREBLOCK,TELEBLOCK,REGENERATEBLOCK,REMOTETALKBLOCK) @@ -38,13 +38,13 @@ // Random Appearance Mutation /proc/randmuti(var/mob/living/M) - if(!M) return + if(!M || !(M.dna)) return M.dna.check_integrity() M.dna.SetUIValue(rand(1,DNA_UI_LENGTH),rand(1,4095)) // Scramble UI or SE. /proc/scramble(var/UI, var/mob/M, var/prob) - if(!M) return + if(!M || !(M.dna)) return M.dna.check_integrity() if(UI) for(var/i = 1, i <= DNA_UI_LENGTH-1, i++) diff --git a/code/game/jobs/job/captain_vr.dm b/code/game/jobs/job/captain_vr.dm index e327805cc0..62b0eb93ef 100644 --- a/code/game/jobs/job/captain_vr.dm +++ b/code/game/jobs/job/captain_vr.dm @@ -14,6 +14,9 @@ /datum/alt_title/captain title = "Captain" +/datum/job/captain/get_request_reasons() + return list("Training crew") + /datum/job/hop disallow_jobhop = TRUE pto_type = PTO_CIVILIAN @@ -29,13 +32,13 @@ access_all_personal_lockers, access_maint_tunnels, access_bar, access_janitor, access_construction, access_morgue, access_crematorium, access_kitchen, access_cargo, access_cargo_bot, access_mailsorting, access_qm, access_hydroponics, access_lawyer, access_chapel_office, access_library, access_research, access_mining, access_heads_vault, access_mining_station, - access_hop, access_RC_announce, access_clown, access_tomfoolery, access_mime, access_keycard_auth, access_gateway) + access_hop, access_RC_announce, access_clown, access_tomfoolery, access_mime, access_keycard_auth, access_gateway, access_entertainment) minimal_access = list(access_security, access_sec_doors, access_brig, access_forensics_lockers, access_medical, access_engine, access_change_ids, access_ai_upload, access_eva, access_heads, access_all_personal_lockers, access_maint_tunnels, access_bar, access_janitor, access_construction, access_morgue, access_crematorium, access_kitchen, access_cargo, access_cargo_bot, access_mailsorting, access_qm, access_hydroponics, access_lawyer, access_chapel_office, access_library, access_research, access_mining, access_heads_vault, access_mining_station, - access_hop, access_RC_announce, access_clown, access_tomfoolery, access_mime, access_keycard_auth, access_gateway) + access_hop, access_RC_announce, access_clown, access_tomfoolery, access_mime, access_keycard_auth, access_gateway, access_entertainment) /datum/alt_title/deputy_director title = "Deputy Director" @@ -46,6 +49,9 @@ /datum/alt_title/facility_steward title = "Facility Steward" +/datum/job/hop/get_request_reasons() + return list("ID modification", "Training crew") + /datum/job/secretary disallow_jobhop = TRUE diff --git a/code/game/jobs/job/civilian_vr.dm b/code/game/jobs/job/civilian_vr.dm index 688f52bf85..e33bbf11d9 100644 --- a/code/game/jobs/job/civilian_vr.dm +++ b/code/game/jobs/job/civilian_vr.dm @@ -57,6 +57,9 @@ /datum/alt_title/cargo_supervisor title = "Cargo Supervisor" +/datum/job/qm/get_request_reasons() + return list("Training crew") + /datum/job/cargo_tech total_positions = 3 diff --git a/code/game/jobs/job/engineering_vr.dm b/code/game/jobs/job/engineering_vr.dm index e0ca7bac7e..58ebb57dd2 100644 --- a/code/game/jobs/job/engineering_vr.dm +++ b/code/game/jobs/job/engineering_vr.dm @@ -24,7 +24,7 @@ title = "Maintenance Manager" /datum/job/chief_engineer/get_request_reasons() - return list("Engine setup", "Construction project", "Repairs necessary") + return list("Engine setup", "Construction project", "Repairs necessary", "Training crew") /datum/job/engineer diff --git a/code/game/jobs/job/exploration_vr.dm b/code/game/jobs/job/exploration_vr.dm index 05427d5173..66ece35139 100644 --- a/code/game/jobs/job/exploration_vr.dm +++ b/code/game/jobs/job/exploration_vr.dm @@ -55,6 +55,9 @@ /datum/alt_title/exploration_manager title = "Exploration Manager" +/datum/job/pathfinder/get_request_reasons() + return list("Training crew") + /datum/job/pilot title = "Pilot" diff --git a/code/game/jobs/job/medical_vr.dm b/code/game/jobs/job/medical_vr.dm index 5fc2081ebd..8c2140c5a0 100644 --- a/code/game/jobs/job/medical_vr.dm +++ b/code/game/jobs/job/medical_vr.dm @@ -22,7 +22,7 @@ title = "Healthcare Manager" /datum/job/cmo/get_request_reasons() - return list("Surgery pending", "Viral outbreak") + return list("Surgery pending", "Viral outbreak", "Training crew") /datum/job/doctor diff --git a/code/game/jobs/job/science_vr.dm b/code/game/jobs/job/science_vr.dm index b40b264aff..bbcf853324 100644 --- a/code/game/jobs/job/science_vr.dm +++ b/code/game/jobs/job/science_vr.dm @@ -25,6 +25,9 @@ /datum/alt_title/head_scientist title = "Head Scientist" +/datum/job/rd/get_request_reasons() + return list("Repairs needed", "Training crew") + /datum/job/scientist spawn_positions = 5 pto_type = PTO_SCIENCE @@ -87,6 +90,9 @@ /datum/alt_title/assembly_tech title = "Assembly Technician" +/datum/job/roboticist/get_request_reasons() + return list("Repairs needed") + ////////////////////////////////// // Xenobotanist ////////////////////////////////// @@ -116,4 +122,4 @@ title = "Xenoflorist" /datum/alt_title/xenohydroponicist - title = "Xenohydroponicist" \ No newline at end of file + title = "Xenohydroponicist" diff --git a/code/game/jobs/job/security_vr.dm b/code/game/jobs/job/security_vr.dm index 22de747d7b..80acbb451e 100644 --- a/code/game/jobs/job/security_vr.dm +++ b/code/game/jobs/job/security_vr.dm @@ -17,7 +17,7 @@ title = "Security Manager" /datum/job/hos/get_request_reasons() - return list("Wildlife management", "Forensic investigation") + return list("Wildlife management", "Forensic investigation", "Training crew") /datum/job/warden diff --git a/code/game/machinery/Sleeper.dm b/code/game/machinery/Sleeper.dm index b785a42639..18765fcf9b 100644 --- a/code/game/machinery/Sleeper.dm +++ b/code/game/machinery/Sleeper.dm @@ -423,6 +423,8 @@ /obj/machinery/sleeper/relaymove(var/mob/user) ..() + if(user.incapacitated()) + return go_out() /obj/machinery/sleeper/emp_act(var/severity) diff --git a/code/game/machinery/deployable_vr.dm b/code/game/machinery/deployable_vr.dm index bbb835b763..c939fea3f4 100644 --- a/code/game/machinery/deployable_vr.dm +++ b/code/game/machinery/deployable_vr.dm @@ -72,7 +72,7 @@ /obj/structure/barricade/cutout/attackby(var/obj/I, var/mob/user) if(is_type_in_list(I, painters)) var/choice = tgui_input_list(user, "What would you like to paint the cutout as?", "Cutout Painting", cutout_types) - if(!choice || !Adjacent(user, src) || I != user.get_active_hand()) + if(!choice || !Adjacent(user) || I != user.get_active_hand()) return TRUE if(do_after(user, 10 SECONDS, src)) var/picked_type = cutout_types[choice] diff --git a/code/game/machinery/teleporter.dm b/code/game/machinery/teleporter.dm index 505ff94947..dc0a70f711 100644 --- a/code/game/machinery/teleporter.dm +++ b/code/game/machinery/teleporter.dm @@ -92,8 +92,8 @@ return -/obj/machinery/teleport/station/attack_ai() - attack_hand() +/obj/machinery/teleport/station/attack_ai(mob/user) + attack_hand(user) /obj/machinery/computer/teleporter/attack_ai(mob/user) teleport_control.tgui_interact(user) diff --git a/code/game/machinery/virtual_reality/vr_console.dm b/code/game/machinery/virtual_reality/vr_console.dm index 9d165cc7e3..81df6d934b 100644 --- a/code/game/machinery/virtual_reality/vr_console.dm +++ b/code/game/machinery/virtual_reality/vr_console.dm @@ -2,9 +2,9 @@ name = "virtual reality sleeper" desc = "A fancy bed with built-in sensory I/O ports and connectors to interface users' minds with their bodies in virtual reality." icon = 'icons/obj/Cryogenic2.dmi' - icon_state = "syndipod_0" + icon_state = "body_scanner_0" - var/base_state = "syndipod_" + var/base_state = "body_scanner_" density = TRUE anchored = TRUE @@ -88,9 +88,9 @@ -/obj/machinery/sleeper/relaymove(var/mob/user) +/obj/machinery/vr_sleeper/relaymove(var/mob/user) ..() - if(usr.incapacitated()) + if(user.incapacitated()) return go_out() @@ -245,9 +245,14 @@ if(occupant.species.name != "Promethean" && occupant.species.name != "Human" && mirror_first_occupant) avatar.shapeshifter_change_shape(occupant.species.name) avatar.forceMove(get_turf(S)) // Put the mob on the landmark, instead of inside it - avatar.Sleeping(1) + occupant.enter_vr(avatar) + //Yes, I am using a aheal just so your markings transfer over, I could not get .prefs.copy_to working. This is very stupid, and I can't be assed to rewrite this. Too bad! + avatar.revive() + avatar.revive() + avatar.verbs += /mob/living/carbon/human/proc/exit_vr //ahealing removes the prommie verbs and the VR verbs, giving it back + avatar.Sleeping(1) // Prompt for username after they've enterred the body. var/newname = sanitize(tgui_input_text(avatar, "You are entering virtual reality. Your username is currently [src.name]. Would you like to change it to something else?", "Name change", null, MAX_NAME_LEN), MAX_NAME_LEN) diff --git a/code/game/objects/explosion_recursive.dm b/code/game/objects/explosion_recursive.dm index c530e37692..d60dc90f3e 100644 --- a/code/game/objects/explosion_recursive.dm +++ b/code/game/objects/explosion_recursive.dm @@ -94,12 +94,8 @@ if(power <= 0) return if(src in explosion_turfs) - return - - explosion_turfs |= src - - if(explosion_turfs[src] >= power) - return //The turf already sustained and spread a power greated than what we are dealing with. No point spreading again. + if(explosion_turfs[src] >= power) + return //The turf already sustained and spread a power greated than what we are dealing with. No point spreading again. explosion_turfs[src] = power var/spread_power = power - src.explosion_resistance //This is the amount of power that will be spread to the tile in the direction of the blast @@ -112,7 +108,7 @@ T = get_step(src, turn(direction,90)) T.explosion_spread(spread_power, turn(direction,90), explosion_turfs) T = get_step(src, turn(direction,-90)) - T.explosion_spread(spread_power, turn(direction,90), explosion_turfs) + T.explosion_spread(spread_power, turn(direction,-90), explosion_turfs) /turf/unsimulated/explosion_spread(power) return //So it doesn't get to the parent proc, which simulates explosions diff --git a/code/game/objects/items/devices/communicator/UI_tgui.dm b/code/game/objects/items/devices/communicator/UI_tgui.dm index 092b45cea2..2f4e73c5eb 100644 --- a/code/game/objects/items/devices/communicator/UI_tgui.dm +++ b/code/game/objects/items/devices/communicator/UI_tgui.dm @@ -382,7 +382,7 @@ im_list += list(list("address" = exonet.address, "to_address" = their_address, "im" = text)) log_pda("(COMM: [src]) sent \"[text]\" to [exonet.get_atom_from_address(their_address)]", usr) var/obj/item/device/communicator/comm = exonet.get_atom_from_address(their_address) - to_chat(usr, "\icon[src][bicon(src)] Sent message to [comm.owner], \"[text]\" (Reply)") + to_chat(usr, "\icon[src][bicon(src)] Sent message to [istype(comm, /obj/item/device/communicator) ? comm.owner : comm.name], \"[text]\" (Reply)") for(var/mob/M in player_list) if(M.stat == DEAD && M.is_preference_enabled(/datum/client_preference/ghost_ears)) if(istype(M, /mob/new_player) || M.forbid_seeing_deadchat) diff --git a/code/game/objects/items/devices/communicator/messaging.dm b/code/game/objects/items/devices/communicator/messaging.dm index 5c27d8a850..e5a27902b1 100644 --- a/code/game/objects/items/devices/communicator/messaging.dm +++ b/code/game/objects/items/devices/communicator/messaging.dm @@ -108,7 +108,7 @@ exonet.send_message(comm.exonet.address, "text", message) im_list += list(list("address" = exonet.address, "to_address" = comm.exonet.address, "im" = message)) log_pda("(COMM: [src]) sent \"[message]\" to [exonet.get_atom_from_address(comm.exonet.address)]", usr) - to_chat(usr, "\icon[src][bicon(src)] Sent message to [comm.owner], \"[message]\" (Reply)") + to_chat(usr, "\icon[src][bicon(src)] Sent message to [istype(comm, /obj/item/device/communicator) ? comm.owner : comm.name], \"[message]\" (Reply)") // Verb: text_communicator() // Parameters: None diff --git a/code/game/objects/items/devices/defib.dm b/code/game/objects/items/devices/defib.dm index f672cbcf1b..75fddde40e 100644 --- a/code/game/objects/items/devices/defib.dm +++ b/code/game/objects/items/devices/defib.dm @@ -308,8 +308,8 @@ return bad_vital_organ //this needs to be last since if any of the 'other conditions are met their messages take precedence - if(!H.client && !H.teleop) - return "buzzes, \"Resuscitation failed - Mental interface error. Further attempts may be successful.\"" + //if(!H.client && !H.teleop) + // return "buzzes, \"Resuscitation failed - Mental interface error. Further attempts may be successful.\""// CHOMPEdit, removing this check to allow revival through bad internet connections. return null diff --git a/code/game/objects/items/devices/flashlight.dm b/code/game/objects/items/devices/flashlight.dm index f3f8b5c982..eff6d34848 100644 --- a/code/game/objects/items/devices/flashlight.dm +++ b/code/game/objects/items/devices/flashlight.dm @@ -126,7 +126,11 @@ if(H.species.vision_organ) vision = H.internal_organs_by_name[H.species.vision_organ] if(!vision) + user.visible_message("\The [user] directs [src] at [M]'s face.", \ + "You direct [src] at [M]'s face.") to_chat(user, "You can't find any [H.species.vision_organ ? H.species.vision_organ : "eyes"] on [H]!") + user.setClickCooldown(user.get_attack_speed(src)) + return user.visible_message("\The [user] directs [src] to [M]'s eyes.", \ "You direct [src] to [M]'s eyes.") diff --git a/code/game/objects/items/devices/lightreplacer.dm b/code/game/objects/items/devices/lightreplacer.dm index 6ae95bcf8a..54cc46d802 100644 --- a/code/game/objects/items/devices/lightreplacer.dm +++ b/code/game/objects/items/devices/lightreplacer.dm @@ -53,6 +53,7 @@ var/emagged = 0 var/failmsg = "" var/charge = 0 + var/selected_color = LIGHT_COLOR_INCANDESCENT_TUBE //Default color! // Eating used bulbs gives us bulb shards var/bulb_shards = 0 @@ -141,6 +142,10 @@ return */ to_chat(usr, "It has [uses] lights remaining.") + var/new_color = input(usr, "Choose a color to set the light to! (Default is [LIGHT_COLOR_INCANDESCENT_TUBE])", "", selected_color) as color|null + if(new_color) + selected_color = new_color + to_chat(usr, "The light color has been changed.") /obj/item/device/lightreplacer/update_icon() icon_state = "lightreplacer[emagged]" @@ -184,19 +189,13 @@ to_chat(U, "\The [src] has fabricated a new bulb from the broken bulbs it has stored. It now has [uses] uses.") playsound(src, 'sound/machines/ding.ogg', 50, 1) target.status = LIGHT_EMPTY + target.installed_light = null //Remove the light! target.update() var/obj/item/weapon/light/L2 = new target.light_type() - - target.status = L2.status - target.switchcount = L2.switchcount - target.rigged = emagged - target.brightness_range = L2.brightness_range - target.brightness_power = L2.brightness_power - target.brightness_color = L2.brightness_color - target.on = target.has_power() + L2.brightness_color = selected_color + target.insert_bulb(L2) //Call the insertion proc. target.update() - qdel(L2) if(target.on && target.rigged) target.explode() diff --git a/code/game/objects/items/stacks/medical.dm b/code/game/objects/items/stacks/medical.dm index 9676919792..1cb0b442d9 100644 --- a/code/game/objects/items/stacks/medical.dm +++ b/code/game/objects/items/stacks/medical.dm @@ -20,7 +20,7 @@ to_chat(user, "\The [src] cannot be applied to [M]!") return 1 - if (!M.IsAdvancedToolUser()) + if (!user.IsAdvancedToolUser()) to_chat(user, "You don't have the dexterity to do this!") return 1 diff --git a/code/game/objects/items/stacks/stack.dm b/code/game/objects/items/stacks/stack.dm index 675c1141d3..71328d6a69 100644 --- a/code/game/objects/items/stacks/stack.dm +++ b/code/game/objects/items/stacks/stack.dm @@ -333,7 +333,10 @@ if (prob(transfer/orig_amount * 100)) transfer_fingerprints_to(S) if(blood_DNA) - S.blood_DNA |= blood_DNA + if(S.blood_DNA) + S.blood_DNA |= blood_DNA + else + S.blood_DNA = blood_DNA.Copy() return transfer return 0 diff --git a/code/game/objects/items/trash_vr.dm b/code/game/objects/items/trash_vr.dm index 7619130ed0..bb18141f4f 100644 --- a/code/game/objects/items/trash_vr.dm +++ b/code/game/objects/items/trash_vr.dm @@ -30,3 +30,18 @@ name = "dirty fancy plate" icon = 'icons/obj/trash_vr.dmi' icon_state = "fancyplate" + +/obj/item/trash/ratcheese + name = "\improper Flavor Unit package" + icon = 'icons/obj/trash_vr.dmi' + icon_state = "altevian_cheese_block-trash" + +/obj/item/trash/ratveg + name = "\improper Premium Ration packet" + icon = 'icons/obj/trash_vr.dmi' + icon_state = "altevian_veggies-trash" + +/obj/item/trash/ratjuice + name = "\improper Space-Safe Meal package" + icon = 'icons/obj/trash_vr.dmi' + icon_state = "altevian_juice-trash" \ No newline at end of file diff --git a/code/game/objects/items/weapons/inducer_vr.dm b/code/game/objects/items/weapons/inducer_vr.dm index 998447b5fa..0c39599071 100644 --- a/code/game/objects/items/weapons/inducer_vr.dm +++ b/code/game/objects/items/weapons/inducer_vr.dm @@ -9,7 +9,7 @@ slot_r_hand_str = 'icons/mob/items/righthand_vr.dmi', ) force = 7 - + var/powertransfer = 1000 //Transfer per time when charging something var/cell_type = /obj/item/weapon/cell/high //Type of cell to spawn in it var/charge_guns = FALSE //Can it charge guns? @@ -117,9 +117,10 @@ return TRUE else recharging = TRUE - + if(istype(A, /obj/item/weapon/gun/energy) && !charge_guns) - to_chat(user, "Error unable to interface with device.") + to_chat(user, "Error: Device is unable to interface with weapons.") + recharging = FALSE return FALSE //The cell we hopefully eventually find @@ -138,7 +139,7 @@ //Can set different coefficients per item if you want var/coefficient = 1 - + //Last ditch effort var/obj/O //For updating icons, just in case they have a battery meter icon if(!C && isobj(A)) @@ -147,17 +148,17 @@ if(C) var/done_any = FALSE - + if(C.charge >= C.maxcharge) to_chat(user, "[A] is fully charged ([round(C.charge)] / [C.maxcharge])!") recharging = FALSE return TRUE user.visible_message("[user] starts recharging [A] with [src].", "You start recharging [A] with [src].") - + var/datum/beam/charge_beam = user.Beam(A, icon_state = "rped_upgrade", time = 20 SECONDS) var/filter = filter(type = "outline", size = 1, color = "#22AAFF") A.filters += filter - + spark_system = new /datum/effect/effect/system/spark_spread spark_system.set_up(5, 0, get_turf(A)) spark_system.attach(A) @@ -171,20 +172,20 @@ O.update_icon() else break - + QDEL_NULL(charge_beam) QDEL_NULL(spark_system) if(A) A.filters -= filter - + if(done_any) // Only show a message if we succeeded at least once user.visible_message("[user] recharged [A]!", "You recharged [A]!") - + recharging = FALSE return TRUE else //Couldn't find a cell to_chat(user, "Error unable to interface with device.") - + recharging = FALSE /obj/item/weapon/inducer/attack_self(mob/user) @@ -206,7 +207,7 @@ /obj/item/weapon/inducer/update_icon() ..() - cut_overlays() + cut_overlays() if(opened) if(!cell) add_overlay("inducer-nobat") diff --git a/code/game/objects/items/weapons/material/whetstone.dm b/code/game/objects/items/weapons/material/whetstone.dm index dd0437198c..08e9955100 100644 --- a/code/game/objects/items/weapons/material/whetstone.dm +++ b/code/game/objects/items/weapons/material/whetstone.dm @@ -9,7 +9,7 @@ w_class = ITEMSIZE_SMALL var/repair_amount = 5 var/repair_time = 40 - + /obj/item/weapon/whetstone/attackby(obj/item/I, mob/user) if(istype(I, /obj/item/stack/material)) var/obj/item/stack/material/M = I @@ -43,7 +43,7 @@ . = ..() . += "There [uses == 1 ? "is" : "are"] [uses] [material] [uses == 1 ? src.material.sheet_singular_name : src.material.sheet_plural_name] left for use." -/obj/item/weapon/material/sharpeningkit/Initialize() +/obj/item/weapon/material/sharpeningkit/New() . = ..() setrepair() @@ -74,4 +74,4 @@ to_chat(user, "There's not enough spare sheets to sharpen [M]. You need [M.w_class*2] [M.material.sheet_plural_name].") return else - to_chat(user, "You can't sharpen [W] with [src]!") + to_chat(user, "You can't sharpen [W] with [src]!") diff --git a/code/game/objects/items/weapons/storage/bags.dm b/code/game/objects/items/weapons/storage/bags.dm index 268977463a..bdfb3397ce 100644 --- a/code/game/objects/items/weapons/storage/bags.dm +++ b/code/game/objects/items/weapons/storage/bags.dm @@ -400,7 +400,7 @@ max_storage_space = ITEMSIZE_COST_NORMAL * 25 max_w_class = ITEMSIZE_NORMAL w_class = ITEMSIZE_SMALL - can_hold = list(/obj/item/weapon/coin,/obj/item/weapon/spacecash) + can_hold = list(/obj/item/weapon/coin,/obj/item/weapon/spacecash,/obj/item/weapon/spacecasinocash) // ----------------------------- // Chemistry Bag diff --git a/code/game/objects/items/weapons/storage/boxes_vr.dm b/code/game/objects/items/weapons/storage/boxes_vr.dm index e234f22d4a..5b93d14456 100644 --- a/code/game/objects/items/weapons/storage/boxes_vr.dm +++ b/code/game/objects/items/weapons/storage/boxes_vr.dm @@ -35,4 +35,7 @@ starts_with = list(/obj/item/weapon/reagent_containers/food/snacks/canned/brainzsnax = 6) /obj/item/weapon/storage/box/brainzsnax/red - starts_with = list(/obj/item/weapon/reagent_containers/food/snacks/canned/brainzsnax/red = 6) \ No newline at end of file + starts_with = list(/obj/item/weapon/reagent_containers/food/snacks/canned/brainzsnax/red = 6) + +/obj/item/weapon/storage/box/freezer + can_hold = list(/obj/item/organ, /obj/item/weapon/reagent_containers/blood, /obj/item/weapon/reagent_containers/glass, /obj/item/weapon/reagent_containers/food) \ No newline at end of file diff --git a/code/game/objects/items/weapons/storage/wallets.dm b/code/game/objects/items/weapons/storage/wallets.dm index 13e744e141..050c1290f9 100644 --- a/code/game/objects/items/weapons/storage/wallets.dm +++ b/code/game/objects/items/weapons/storage/wallets.dm @@ -36,7 +36,8 @@ /obj/item/weapon/stamp, /obj/item/clothing/accessory/permit, /obj/item/clothing/accessory/badge, - /obj/item/weapon/makeover + /obj/item/weapon/makeover, + /obj/item/pizzavoucher //VOREStation edit ) cant_hold = list(/obj/item/weapon/tool/screwdriver/power) slot_flags = SLOT_ID diff --git a/code/game/objects/items/weapons/stunbaton.dm b/code/game/objects/items/weapons/stunbaton.dm index 40ab9cb45e..db7644476b 100644 --- a/code/game/objects/items/weapons/stunbaton.dm +++ b/code/game/objects/items/weapons/stunbaton.dm @@ -100,7 +100,7 @@ /obj/item/weapon/melee/baton/examine(mob/user) . = ..() - if(Adjacent(user, src)) + if(Adjacent(user)) if(bcell) . += "The baton is [round(bcell.percent())]% charged." if(!bcell) diff --git a/code/game/objects/micro_structures.dm b/code/game/objects/micro_structures.dm new file mode 100644 index 0000000000..8b10f31fa5 --- /dev/null +++ b/code/game/objects/micro_structures.dm @@ -0,0 +1,436 @@ +/obj/structure/micro_tunnel + name = "mouse hole" + desc = "A tiny little hole... where does it go?" + icon = 'icons/obj/structures/micro_structures.dmi' + icon_state = "mouse_hole" + + anchored = TRUE + density = FALSE + + var/magic = FALSE //For events and stuff, if true, this tunnel will show up in the list regardless of whether it's in valid range, of if you're in a tunnel with this var, all tunnels of the same faction will show up redardless of range + micro_target = TRUE + + var/static/non_micro_types = list( + /mob/living/simple_mob/vore/alienanimals/catslug, + /mob/living/simple_mob/vore/hostile/morph, + /mob/living/simple_mob/protean_blob, + /mob/living/simple_mob/slime + ) + +/obj/structure/micro_tunnel/Initialize() + . = ..() + if(name == initial(name)) + var/area/our_area = get_area(src) + name = "[our_area.name] [name]" + if(pixel_x || pixel_y) + return + offset_tunnel() + +/obj/structure/micro_tunnel/Destroy() + visible_message("\The [src] collapses!") + for(var/mob/thing in src.contents) + visible_message("\The [thing] tumbles out!") + thing.forceMove(get_turf(src.loc)) + thing.cancel_camera() + + return ..() + +/obj/structure/micro_tunnel/set_dir(new_dir) + . = ..() + offset_tunnel() + +/obj/structure/micro_tunnel/proc/offset_tunnel() + + pixel_x = 0 + pixel_y = 0 + + switch(dir) + if(1) + pixel_y = 32 + if(2) + pixel_y = -32 + if(4) + pixel_x = 32 + if(8) + pixel_x = -32 + +/obj/structure/micro_tunnel/attack_hand(mob/living/user) + if(!isliving(user)) + return ..() + if(user.loc == src) + var/list/our_options = list("Exit", "Move") + + if(is_type_in_list(user, non_micro_types)) + if(src.contents.len > 1) + our_options |= "Eat" + + our_options |= "Cancel" + + var/choice = tgui_alert(user,"It's dark and gloomy in here. What would you like to do?","Tunnel",our_options) + switch(choice) + if("Exit") + if(user.loc != src) + to_chat(user, "You can't do that unless you're in \the [src].") + return + + user.forceMove(get_turf(src.loc)) + user.cancel_camera() + user.visible_message("\The [user] climbs out of \the [src]!") + return + if("Move") + if(user.loc != src) + to_chat(user, "You can't do that unless you're in \the [src].") + return + + var/list/destinations = list() + var/turf/myturf = get_turf(src.loc) + var/datum/planet/planet + for(var/datum/planet/P in SSplanets.planets) + if(myturf.z in P.expected_z_levels) + planet = P + else + for(var/obj/structure/micro_tunnel/t in world) + if(t == src) + continue + if(magic || t.magic) + destinations |= t + continue + if(t.z == z) + destinations |= t + continue + var/turf/targetturf = get_turf(t.loc) + if(planet) + if(targetturf.z in planet.expected_z_levels) + destinations |= t + continue + else + var/above = GetAbove(myturf) + if(above && t.z == z + 1) + destinations |= t + continue + var/below = GetBelow(myturf) + if(below && t.z == z - 1) + destinations |= t + + if(!destinations.len) + to_chat(user, "There are no other tunnels connected to this one!") + return + else if(destinations.len == 1) + choice = pick(destinations) + else + choice = tgui_input_list(user, "Where would you like to go?", "Pick a tunnel", destinations) + if(!choice) + return + to_chat(user,"You begin moving...") + if(!do_after(user, 10 SECONDS, exclusive = TRUE)) + return + user.forceMove(choice) + user.cancel_camera() + var/obj/structure/micro_tunnel/da_oddawun = choice + da_oddawun.tunnel_notify(user) + return + if("Eat") + var/list/our_targets = list() + for(var/mob/living/L in src.contents) + if(L == user) + continue + our_targets |= L + if(!our_targets.len) + to_chat(user, "There is no one in here except for you!") + return + var/mob/our_choice + if(our_targets.len == 1) + our_choice = pick(our_targets) + else + our_choice = tgui_input_list(user, "Who would you like to eat?", "Pick a target to eat", our_targets) + if(user.loc != src) + to_chat(user, "You are no longer inside \the [src], and so cannot eat \the [our_choice].") + return + if(our_choice.loc != src) + to_chat(user, "\The [our_choice] is no longer inside \the [src], and so cannot be eaten.") + return + user.feed_grabbed_to_self(user,our_choice) + return + if("Cancel") + return + + if(!can_enter(user)) + user.visible_message("\The [user] reaches into \the [src]. . .","You reach into \the [src]. . .") + if(!do_after(user, 3 SECONDS, exclusive = TRUE)) + user.visible_message("\The [user] pulls their hand out of \the [src].","You pull your hand out of \the [src]") + return + if(!src.contents.len) + to_chat(user, "There was nothing inside.") + user.visible_message("\The [user] pulls their hand out of \the [src].","You pull your hand out of \the [src]") + return + var/grabbed = pick(src.contents) + if(!grabbed) + to_chat(user, "There was nothing inside.") + user.visible_message("\The [user] pulls their hand out of \the [src].","You pull your hand out of \the [src]") + return + + if(ishuman(user)) + var/mob/living/carbon/human/h = user + var/mob/living/l = grabbed + if(isliving(grabbed)) + if(!l.attempt_to_scoop(h)) + l.forceMove(get_turf(src.loc)) + else + var/atom/movable/whatever = grabbed + whatever.forceMove(get_turf(src.loc)) + + user.visible_message("\The [user] pulls \the [grabbed] out of \the [src]! ! !") + return + + else if(isanimal(user)) + var/mob/living/simple_mob/a = user + var/mob/living/l = grabbed + if(!a.has_hands || isliving(grabbed)) + if(!l.attempt_to_scoop(a)) + l.forceMove(get_turf(src.loc)) + else + var/atom/movable/whatever = grabbed + whatever.forceMove(get_turf(src.loc)) + user.visible_message("\The [user] pulls \the [grabbed] out of \the [src]! ! !") + return + + user.visible_message("\The [user] begins climbing into \the [src]!") + if(!do_after(user, 10 SECONDS, exclusive = TRUE)) + to_chat(user, "You didn't go into \the [src]!") + return + + enter_tunnel(user) + +/obj/structure/micro_tunnel/proc/can_enter(var/mob/living/user) + if(user.mob_size <= MOB_TINY || user.get_effective_size(TRUE) <= micro_accepted_scale) + return TRUE + + if(is_type_in_list(user, non_micro_types)) + if(tgui_alert(user, "Would you like to enter the tunnel, or reach inside it?", "Enter or reach", list("Enter","Reach")) == "Enter") + return TRUE + + return FALSE + +/obj/structure/micro_tunnel/attack_generic(mob/user, damage, attack_verb) + attack_hand(user) + return ..() + +/obj/structure/micro_tunnel/MouseDrop_T(mob/living/M, mob/living/user) + . = ..() + if(M != user) + return + + if(!can_enter(user)) + return + + var/mob/living/k = M + + k.visible_message("\The [k] begins climbing into \the [src]!") + if(!do_after(k, 3 SECONDS, exclusive = TRUE)) + to_chat(k, "You didn't go into \the [src]!") + return + + enter_tunnel(k) + +/obj/structure/micro_tunnel/proc/enter_tunnel(mob/living/k) + k.visible_message("\The [k] climbs into \the [src]!") + k.forceMove(src) + k.cancel_camera() + to_chat(k,"You are inside of \the [src]. It's dark and gloomy inside of here. You can click upon the tunnel to exit, or travel to another tunnel if there are other tunnels linked to it.") + tunnel_notify(k) + +/obj/structure/micro_tunnel/proc/tunnel_notify(var/mob/living/user) + to_chat(user, "You arrive inside \the [src].") + var/our_message = "You can see " + var/found_stuff = FALSE + for(var/thing in src.contents) + if(thing == user) + continue + found_stuff = TRUE + our_message = "[our_message] [thing], " + if(isliving(thing)) + var/mob/living/t = thing + to_chat(t, "\The [user] enters \the [src]!") + if(found_stuff) + to_chat(user, "[our_message]inside of \the [src]!") + if(prob(25)) + visible_message("Something moves inside of \the [src]. . .") + +/obj/structure/micro_tunnel/magic + magic = TRUE + +/obj + var/micro_accepted_scale = 0.5 + var/micro_target = FALSE + +/obj/Initialize(mapload) + . = ..() + if(micro_target) + verbs += /obj/proc/micro_interact + +/obj/proc/micro_interact() + set name = "Micro Interact" + set desc = "Micros can enter, or move between objects with this! Non-micros can reach into objects to search for micros!" + set category = "Object" + set src in oview(1) + + if(!isliving(usr)) + return + + var/list/contained_mobs = list() + for(var/mob/living/issamob in src.contents) + if(isliving(issamob)) + contained_mobs |= issamob + + if(usr.loc == src) + var/choice = tgui_alert(usr,"What would you like to do?","[src]",list("Exit", "Move", "Cancel")) + switch(choice) + if("Exit") + if(usr.loc != src) + to_chat(usr, "You can't do that unless you're in \the [src].") + return + + usr.forceMove(get_turf(src.loc)) + usr.cancel_camera() + usr.visible_message("\The [usr] climbs out of \the [src]!") + return + + if("Move") + if(usr.loc != src) + to_chat(usr, "You can't do that unless you're in \the [src].") + return + var/list/destinations = list() + var/turf/myturf = get_turf(src.loc) + for(var/obj/o in range(1,myturf)) + if(!istype(o,/obj)) + continue + if(o == src) + continue + if(o.micro_target) + destinations |= o + + if(!destinations.len) + to_chat(usr, "There is nowhere to move to!") + return + else if(destinations.len == 1) + choice = pick(destinations) + else + choice = tgui_input_list(usr, "Where would you like to go?", "Pick a destination", destinations) + if(!choice) + return + to_chat(usr,"You begin moving...") + if(!do_after(usr, 10 SECONDS, exclusive = TRUE)) + return + var/obj/our_choice = choice + + var/list/new_contained_mobs = list() + for(var/mob/living/issamob in src.contents) + if(isliving(issamob)) + contained_mobs |= issamob + + usr.forceMove(our_choice) + usr.cancel_camera() + + to_chat(usr,"You are inside of \the [our_choice]. You can click upon the thing you are in to exit, or travel to a nearby thing if there are other tunnels linked to it.") + + var/our_message = "You can see " + var/found_stuff = FALSE + for(var/thing in new_contained_mobs) + if(thing == usr) + continue + found_stuff = TRUE + our_message = "[our_message] [thing], " + if(isliving(thing)) + var/mob/living/t = thing + to_chat(t, "\The [usr] enters \the [src]!") + if(found_stuff) + to_chat(usr, "[our_message]inside of \the [src]!") + if(prob(25)) + our_choice.visible_message("Something moves inside of \the [our_choice]. . .") + return + if("Cancel") + return + + if(!(usr.mob_size <= MOB_TINY || usr.get_effective_size(TRUE) <= micro_accepted_scale)) + usr.visible_message("\The [usr] reaches into \the [src]. . .","You reach into \the [src]. . .") + if(!do_after(usr, 3 SECONDS, exclusive = TRUE)) + usr.visible_message("\The [usr] pulls their hand out of \the [src].","You pull your hand out of \the [src]") + return + + if(!contained_mobs.len) + to_chat(usr, "There was nothing inside.") + usr.visible_message("\The [usr] pulls their hand out of \the [src].","You pull your hand out of \the [src]") + return + var/grabbed = pick(contained_mobs) + if(!grabbed) + to_chat(usr, "There was nothing inside.") + usr.visible_message("\The [usr] pulls their hand out of \the [src].","You pull your hand out of \the [src]") + return + + if(ishuman(usr)) + var/mob/living/carbon/human/h = usr + var/mob/living/l = grabbed + if(isliving(grabbed)) + l.attempt_to_scoop(h) + if(!l.attempt_to_scoop(h)) + l.forceMove(get_turf(src.loc)) + else + var/atom/movable/whatever = grabbed + whatever.forceMove(get_turf(src.loc)) + + usr.visible_message("\The [usr] pulls \the [grabbed] out of \the [src]! ! !") + return + + else if(isanimal(usr)) + var/mob/living/simple_mob/a = usr + var/mob/living/l = grabbed + if(!a.has_hands || isliving(grabbed)) + if(!l.attempt_to_scoop(a)) + l.forceMove(get_turf(src.loc)) + else + var/atom/movable/whatever = grabbed + whatever.forceMove(get_turf(src.loc)) + usr.visible_message("\The [usr] pulls \the [grabbed] out of \the [src]! ! !") + return + + usr.visible_message("\The [usr] begins climbing into \the [src]!") + if(!do_after(usr, 10 SECONDS, exclusive = TRUE)) + to_chat(usr, "You didn't go into \the [src]!") + return + + usr.visible_message("\The [usr] climbs into \the [src]!") + usr.forceMove(src) + usr.cancel_camera() + to_chat(usr,"You are inside of \the [src]. You can click upon the tunnel to exit, or travel to another tunnel if there are other tunnels linked to it.") + + var/our_message = "You can see " + var/found_stuff = FALSE + for(var/thing in contained_mobs) + if(thing == usr) + continue + found_stuff = TRUE + our_message = "[our_message] [thing], " + if(isliving(thing)) + var/mob/living/t = thing + to_chat(t, "\The [usr] enters \the [src]!") + if(found_stuff) + to_chat(usr, "[our_message]inside of \the [src]!") + if(prob(25)) + visible_message("Something moves inside of \the [src]. . .") + +/obj/effect/mouse_hole_spawner + name = "mouse hole spawner" + icon = 'icons/obj/landmark_vr.dmi' + icon_state = "blue-x" + invisibility = 101 + + var/chance_to_spawn = 25 + +/obj/effect/mouse_hole_spawner/Initialize() + . = ..() + + if(prob(chance_to_spawn)) + var/obj/structure/micro_tunnel/tunnel = new (get_turf(src.loc)) + tunnel.set_dir(dir) + + qdel(src) \ No newline at end of file diff --git a/code/game/objects/objs.dm b/code/game/objects/objs.dm index b9e462190a..b9a0f53c7d 100644 --- a/code/game/objects/objs.dm +++ b/code/game/objects/objs.dm @@ -23,6 +23,20 @@ /obj/Destroy() STOP_PROCESSING(SSobj, src) + + //VOREStation Add Start - I really am an idiot why did I make it this way + if(micro_target) + for(var/thing in src.contents) + if(!ismob(thing)) + continue + var/mob/m = thing + if(isbelly(src.loc)) + m.forceMove(src.loc) + else + m.forceMove(get_turf(src.loc)) + m.visible_message("\The [m] tumbles out of \the [src]!") + //VOREStation Add End + return ..() /obj/Topic(href, href_list, var/datum/tgui_state/state = GLOB.tgui_default_state) diff --git a/code/game/objects/random/mapping.dm b/code/game/objects/random/mapping.dm index 809ab26fe4..8c762c0e23 100644 --- a/code/game/objects/random/mapping.dm +++ b/code/game/objects/random/mapping.dm @@ -97,7 +97,8 @@ /obj/machinery/vending/weeb, /obj/machinery/vending/sol, /obj/machinery/vending/snix, - /obj/machinery/vending/snlvend) + /obj/machinery/vending/snlvend, + /obj/machinery/vending/altevian) /obj/random/vendordrink //Random drink vendors for station use name = "random drink vending machine" diff --git a/code/game/objects/random/misc.dm b/code/game/objects/random/misc.dm index fc82ed9283..700d9c063f 100644 --- a/code/game/objects/random/misc.dm +++ b/code/game/objects/random/misc.dm @@ -323,7 +323,7 @@ name = "random drink" desc = "This is a random drink." icon = 'icons/obj/drinks.dmi' - icon_state = "whiskeybottle" + icon_state = "whiskeybottle1" /obj/random/drinkbottle/item_to_spawn() return pick(/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, diff --git a/code/game/objects/structures/artstuff.dm b/code/game/objects/structures/artstuff.dm index afa263a8ac..51c32a1f00 100644 --- a/code/game/objects/structures/artstuff.dm +++ b/code/game/objects/structures/artstuff.dm @@ -106,7 +106,7 @@ if(choice == "No") return var/basecolor = input(user, "Select a base color for the canvas:", "Base Color", canvas_color) as null|color - if(basecolor && Adjacent(user, src) && Adjacent(user, I)) + if(basecolor && Adjacent(user) && user.get_active_hand() == I) canvas_color = basecolor reset_grid() user.visible_message("[user] smears paint on [src], covering the entire thing in paint.", "You smear paint on [src], changing the color of the entire thing.", runemessage = "smears paint") diff --git a/code/game/objects/structures/crates_lockers/largecrate_vr.dm b/code/game/objects/structures/crates_lockers/largecrate_vr.dm index b70833ccea..3b35be2479 100644 --- a/code/game/objects/structures/crates_lockers/largecrate_vr.dm +++ b/code/game/objects/structures/crates_lockers/largecrate_vr.dm @@ -56,7 +56,7 @@ /mob/living/simple_mob/otie/zorgoia, //CHOMPstation edit /mob/living/simple_mob/vore/rabbit, /mob/living/simple_mob/vore/weretiger;0.5, -// /mob/living/simple_mob/otie;0.5 + /mob/living/simple_mob/otie;0.5 )) return ..() @@ -72,11 +72,12 @@ /mob/living/simple_mob/animal/space/alien/drone, /mob/living/simple_mob/animal/space/alien/sentinel, /mob/living/simple_mob/animal/space/alien/queen, -// /mob/living/simple_mob/otie/feral, -// /mob/living/simple_mob/otie/red, + /mob/living/simple_mob/otie/feral, + /mob/living/simple_mob/otie/feral/chubby, + /mob/living/simple_mob/otie/red, /mob/living/simple_mob/vore/aggressive/corrupthound)) return ..() -/* + /obj/structure/largecrate/animal/guardbeast name = "VARMAcorp autoNOMous security solution" desc = "The VARMAcorp bioengineering division flagship product on trained optimal snowflake guard dogs." @@ -84,6 +85,11 @@ icon_state = "sotiecrate" starts_with = list(/mob/living/simple_mob/otie/security) +/obj/structure/largecrate/animal/otie/guardbeast/Initialize() + starts_with = list(pick(/mob/living/simple_mob/otie/security, + /mob/living/simple_mob/otie/security/chubby)) + return ..() + /obj/structure/largecrate/animal/guardmutant name = "VARMAcorp autoNOMous security solution for hostile environments." desc = "The VARMAcorp bioengineering division flagship product on trained optimal snowflake guard dogs. This one can survive hostile atmosphere." @@ -91,6 +97,12 @@ icon_state = "sotiecrate" starts_with = list(/mob/living/simple_mob/otie/security/phoron) +/obj/structure/largecrate/animal/otie/guardmutant/Initialize() + starts_with = list(pick(/mob/living/simple_mob/otie/security/phoron;2, + /mob/living/simple_mob/otie/security/phoron/red;0.5, + /mob/living/simple_mob/otie/security/phoron/red/chubby;0.5)) + return ..() + /obj/structure/largecrate/animal/otie name = "VARMAcorp adoptable reject (Dangerous!)" desc = "A warning on the side says the creature inside was returned to the supplier after injuring or devouring several unlucky members of the previous adoption family. It was given a second chance with the next customer. Godspeed and good luck with your new pet!" @@ -99,6 +111,11 @@ starts_with = list(/mob/living/simple_mob/otie/cotie) var/taped = 1 +/obj/structure/largecrate/animal/otie/Initialize() + starts_with = list(pick(/mob/living/simple_mob/otie/cotie, + /mob/living/simple_mob/otie/cotie/chubby)) + return ..() + /obj/structure/largecrate/animal/otie/phoron name = "VARMAcorp adaptive beta subject (Experimental)" desc = "VARMAcorp experimental hostile environment adaptive breeding development kit. WARNING, DO NOT RELEASE IN WILD!" @@ -106,7 +123,8 @@ /obj/structure/largecrate/animal/otie/phoron/Initialize() starts_with = list(pick(/mob/living/simple_mob/otie/cotie/phoron;2, - /mob/living/simple_mob/otie/red/friendly;0.5)) + /mob/living/simple_mob/otie/red/friendly;0.5, + /mob/living/simple_mob/otie/red/chubby;0.5)) return ..() /obj/structure/largecrate/animal/otie/attack_hand(mob/living/carbon/human/M as mob)//I just couldn't decide between the icons lmao @@ -115,7 +133,6 @@ icon_state = "otiecrate" taped = 0 ..() -*/ //VORESTATION AI REMOVAL, Oties are still fucking broken. /obj/structure/largecrate/animal/catgirl name = "Catgirl Crate" diff --git a/code/game/sound.dm b/code/game/sound.dm index bfc01ad2cc..29e985a305 100644 --- a/code/game/sound.dm +++ b/code/game/sound.dm @@ -13,9 +13,11 @@ // Looping through the player list has the added bonus of working for mobs inside containers var/sound/S = sound(get_sfx(soundin)) var/maxdistance = (world.view + extrarange) * 2 //VOREStation Edit - 3 to 2 - var/list/listeners = player_list + var/list/listeners = player_list.Copy() if(!ignore_walls) //these sounds don't carry through walls - listeners = listeners & hearers(maxdistance,turf_source) + for(var/mob/listen in listeners) + if(!(get_turf(listen) in hear(maxdistance,source))) + listeners -= listen for(var/mob/M as anything in listeners) if(!M || !M.client) continue diff --git a/code/game/world.dm b/code/game/world.dm index 9d7ace91a6..07f7d4ac00 100644 --- a/code/game/world.dm +++ b/code/game/world.dm @@ -80,8 +80,8 @@ var/world_topic_spam_protect_ip = "0.0.0.0" var/world_topic_spam_protect_time = world.timeofday /world/Topic(T, addr, master, key) - TGS_TOPIC - VGS_TOPIC // VOREStation Edit - VGS + VGS_TOPIC // VOREStation Edit - VGS //CHOMP Edit swapped lines around + TGS_TOPIC //CHOMP Edit swapped lines around log_topic("\"[T]\", from:[addr], master:[master], key:[key]") if (T == "ping") @@ -113,7 +113,7 @@ var/world_topic_spam_protect_time = world.timeofday s["players"] = 0 s["stationtime"] = stationtime2text() s["roundduration"] = roundduration2text() - s["map"] = strip_improper(using_map.full_name) //Done to remove the non-UTF-8 text macros + s["map"] = strip_improper(using_map.full_name) //Done to remove the non-UTF-8 text macros if(input["status"] == "2") // Shiny new hip status. var/active = 0 @@ -509,12 +509,9 @@ var/world_topic_spam_protect_time = world.timeofday if (copytext(line, 1, 2) == ";") continue - var/title = "Mentor" - var/rights = admin_ranks[title] - var/ckey = copytext(line, 1, length(line)+1) - var/datum/admins/D = new /datum/admins(title, rights, ckey) - D.associate(GLOB.directory[ckey]) + var/datum/mentor/M = new /datum/mentor(ckey) + M.associate(GLOB.directory[ckey]) /world/proc/update_status() var/s = "" @@ -544,7 +541,7 @@ var/world_topic_spam_protect_time = world.timeofday features += config.abandon_allowed ? "respawn" : "no respawn" features += config.persistence_disabled ? "persistence disabled" : "persistence enabled" - + features += config.persistence_ignore_mapload ? "persistence mapload disabled" : "persistence mapload enabled" if (config && config.allow_vote_mode) @@ -694,7 +691,7 @@ var/failed_old_db_connections = 0 if(dbcon_old?.IsConnected()) results += "WARNING: dbcon_old is connected, not touching it, but is this intentional?" - + if(!config.sql_enabled) results += "stopping because config.sql_enabled = false" else @@ -703,7 +700,7 @@ var/failed_old_db_connections = 0 results += "SUCCESS: set up a connection successfully with setup_database_connection()" else results += "FAIL: failed to connect to the database with setup_database_connection()" - + results += "-- DB Reset End --" to_world_log(results.Join("\n")) */ @@ -713,11 +710,11 @@ var/failed_old_db_connections = 0 if(!istype(GLOB.players_by_zlevel, /list)) GLOB.players_by_zlevel = new /list(world.maxz, 0) GLOB.living_players_by_zlevel = new /list(world.maxz, 0) - + while(GLOB.players_by_zlevel.len < world.maxz) GLOB.players_by_zlevel.len++ GLOB.players_by_zlevel[GLOB.players_by_zlevel.len] = list() - + GLOB.living_players_by_zlevel.len++ GLOB.living_players_by_zlevel[GLOB.living_players_by_zlevel.len] = list() @@ -759,10 +756,10 @@ var/global/game_id = null game_id = "" var/list/c = list( - "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", - "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", - "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", - "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", + "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", + "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", + "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", + "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0" ) var/l = c.len diff --git a/code/modules/admin/admin_verb_lists_vr.dm b/code/modules/admin/admin_verb_lists_vr.dm index ced5e5712e..cbbeab71ad 100644 --- a/code/modules/admin/admin_verb_lists_vr.dm +++ b/code/modules/admin/admin_verb_lists_vr.dm @@ -7,6 +7,8 @@ var/list/admin_verbs_default = list( /client/proc/cmd_admin_say, //VOREStation Add, /client/proc/cmd_mod_say, //VOREStation Add, /client/proc/cmd_event_say, //VOREStation Add, + /client/proc/cmd_mentor_ticket_panel, + /client/proc/cmd_mentor_say // /client/proc/hide_verbs, //hides all our adminverbs, //VOREStation Remove, // /client/proc/hide_most_verbs, //hides all our hideable adminverbs, //VOREStation Remove, // /client/proc/debug_variables, //allows us to -see- the variables of any instance in the game. +VAREDIT needed to modify, //VOREStation Remove, @@ -122,7 +124,9 @@ var/list/admin_verbs_admin = list( /datum/admins/proc/set_uplink, //VOREStation Add, /datum/admins/proc/sendFax, /client/proc/despawn_player, - /datum/admins/proc/view_feedback + /datum/admins/proc/view_feedback, + /client/proc/make_mentor, + /client/proc/unmake_mentor ) var/list/admin_verbs_ban = list( diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index 4e01100091..d17219e59c 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -24,6 +24,8 @@ else if(href_list["ahelp_tickets"]) GLOB.ahelp_tickets.BrowseTickets(text2num(href_list["ahelp_tickets"])) + mentor_commands(href, href_list, src) + if(href_list["dbsearchckey"] || href_list["dbsearchadmin"]) var/adminckey = href_list["dbsearchadmin"] diff --git a/code/modules/admin/verbs/buildmode.dm b/code/modules/admin/verbs/buildmode.dm index f4715c8f1c..d9aacdcaca 100644 --- a/code/modules/admin/verbs/buildmode.dm +++ b/code/modules/admin/verbs/buildmode.dm @@ -627,6 +627,9 @@ /obj/effect/bmode/buildmode/proc/get_path_from_partial_text(default_path) var/desired_path = tgui_input_text(usr, "Enter full or partial typepath.","Typepath","[default_path]") + if(!desired_path) //VOREStation Add - If you don't give it anything it builds a list of every possible thing in the game and crashes your client. + return //VOREStation Add - And the main way for it to do that is to push the cancel button, which should just do nothing. :U + var/list/types = typesof(/atom) var/list/matches = list() @@ -705,4 +708,4 @@ #undef BUILDMODE_CONTENTS #undef BUILDMODE_LIGHTS #undef BUILDMODE_AI -#undef LAST_BUILDMODE \ No newline at end of file +#undef LAST_BUILDMODE diff --git a/code/modules/admin/verbs/pray.dm b/code/modules/admin/verbs/pray.dm index 2427b2441d..9fa878ad72 100644 --- a/code/modules/admin/verbs/pray.dm +++ b/code/modules/admin/verbs/pray.dm @@ -16,7 +16,7 @@ to_chat(usr, " You cannot pray (muted).") return - var/image/cross = image('icons/obj/storage.dmi',"bible") + var/icon/cross = icon('icons/obj/storage.dmi',"bible") msg = "\icon[cross][bicon(cross)] PRAY: [key_name(src, 1)] (?) (PP) (VV) (SM) ([admin_jump_link(src, src)]) (CA) (SC) (SMITE): [msg]" for(var/client/C in GLOB.admins) diff --git a/code/modules/ai/ai_holder_subtypes/slime_xenobio_ai.dm b/code/modules/ai/ai_holder_subtypes/slime_xenobio_ai.dm index 6986f5e23c..210a41239f 100644 --- a/code/modules/ai/ai_holder_subtypes/slime_xenobio_ai.dm +++ b/code/modules/ai/ai_holder_subtypes/slime_xenobio_ai.dm @@ -123,6 +123,12 @@ /datum/ai_holder/simple_mob/xenobio_slime/handle_special_tactic() evolve_and_reproduce() +/datum/ai_holder/simple_mob/xenobio_slime/handle_stance_tactical() + if(!istype(holder) || QDELETED(holder)) + qdel(src) + return + ..() + // Hit the correct verbs to keep the slime species going. /datum/ai_holder/simple_mob/xenobio_slime/proc/evolve_and_reproduce() var/mob/living/simple_mob/slime/xenobio/my_slime = holder diff --git a/code/modules/casino/casino.dm b/code/modules/casino/casino.dm index 364ab817f7..d866a4d119 100644 --- a/code/modules/casino/casino.dm +++ b/code/modules/casino/casino.dm @@ -534,27 +534,27 @@ return // -//Slave Terminal +//Sentient Prize Terminal // -/obj/machinery/casinoslave_handler +/obj/machinery/casinosentientprize_handler name = "Sentient Prize Automated Sales Machinery" desc = "The Sentient Prize Automated Sales Machinery, also known as SPASM! Here one can see who is on sale as sentinet prizes, as well as selling self and also buying prizes." icon = 'icons/obj/casino.dmi' icon_state = "casinoslave_hub_off" - density = 1 + density = 0 anchored = 1 - req_access = list(300) + req_access = list(101) - var/casinoslave_sale = "disabled" - var/casinoslave_price = 100 + var/casinosentientprize_sale = "disabled" + var/casinosentientprize_price = 500 var/collar_list = list() - var/slaves_ckeys_list = list() //Same trick as lottery, to keep life simple - var/obj/item/clothing/accessory/collar/casinoslave/selected_collar = null + var/sentientprizes_ckeys_list = list() //Same trick as lottery, to keep life simple + var/obj/item/clothing/accessory/collar/casinosentientprize/selected_collar = null -/obj/machinery/casinoslave_handler/attack_hand(mob/living/user as mob) +/obj/machinery/casinosentientprize_handler/attack_hand(mob/living/user as mob) if(usr.incapacitated()) return - if(casinoslave_sale == "disabled") + if(casinosentientprize_sale == "disabled") to_chat(user,"The SPASM is disabled. ") return @@ -565,14 +565,14 @@ if("Show selected Prize") if(QDELETED(selected_collar)) collar_list -= selected_collar - slaves_ckeys_list -= selected_collar.slaveckey + sentientprizes_ckeys_list -= selected_collar.sentientprizeckey to_chat(user, "No collar is currently selected or the currently selected one has been destroyed or disabled.") selected_collar = null return to_chat(user, "Sentient Prize information") - to_chat(user, "Name: [selected_collar.slavename]") - to_chat(user, "Description: [selected_collar.slaveflavor]") - to_chat(user, "OOC: [selected_collar.slaveooc]") + to_chat(user, "Name: [selected_collar.sentientprizename]") + to_chat(user, "Description: [selected_collar.sentientprizeflavor]") + to_chat(user, "OOC: [selected_collar.sentientprizeooc]") if(selected_collar.ownername != null) to_chat(user, "This prize is already owned by [selected_collar.ownername]") @@ -580,47 +580,50 @@ selected_collar = tgui_input_list(user, "Select a prize", "Chose a collar", collar_list) if(QDELETED(selected_collar)) collar_list -= selected_collar - slaves_ckeys_list -= selected_collar.slaveckey + sentientprizes_ckeys_list -= selected_collar.sentientprizeckey to_chat(user, "No collars to chose, or selected collar has been destroyed or deactived, selection has been removed from list.") selected_collar = null return if("Become Prize (Please examine yourself first)") //Its awkward, but no easy way to obtain flavor_text due to server not loading text of mob until its been examined at least once. var/safety_ckey = user.client.ckey - if(safety_ckey in slaves_ckeys_list) + if(safety_ckey in sentientprizes_ckeys_list) to_chat(user, "The SPASM beeps in an upset manner, you already have a collar!") return var/confirm = tgui_alert(usr, "Are you sure you want to become a sentient prize?", "Confirm Sentient Prize", list("Yes", "No")) if(confirm == "Yes") to_chat(user, "You are now a prize!") - if(safety_ckey in slaves_ckeys_list) + if(safety_ckey in sentientprizes_ckeys_list) to_chat(user, "The SPASM beeps in an upset manner, you already have a collar!") return - slaves_ckeys_list += user.ckey - var/obj/item/clothing/accessory/collar/casinoslave/C = new(src.loc) - C.slavename = "[user.name]" - C.slaveckey = "[user.ckey]" - C.slaveflavor = user.flavor_text - C.slaveooc = user.ooc_notes + sentientprizes_ckeys_list += user.ckey + var/obj/item/clothing/accessory/collar/casinosentientprize/C = new(src.loc) + C.sentientprizename = "[user.name]" + C.sentientprizeckey = "[user.ckey]" + C.sentientprizeflavor = user.flavor_text + C.sentientprizeooc = user.ooc_notes C.name = "Sentient Prize Collar: Available! [user.name] purchaseable at the SPASM!" C.desc = "SPASM collar. The tags shows in flashy colorful text the wearer is [user.name] and is currently available to buy at the Sentient Prize Automated Sales Machinery!" C.icon_state = "casinoslave_available" C.update_icon() collar_list += C - spawn_casinochips(casinoslave_price, src.loc) + spawn_casinochips(casinosentientprize_price, src.loc) -/obj/machinery/casinoslave_handler/attackby(obj/item/weapon/W as obj, mob/user as mob) +/obj/machinery/casinosentientprize_handler/attackby(obj/item/weapon/W as obj, mob/user as mob) if(usr.incapacitated()) return if(istype(W, /obj/item/weapon/spacecasinocash)) - if(casinoslave_sale == "disabled") + if(casinosentientprize_sale == "disabled") to_chat(user, "Sentient Prize sales are currently disabled.") return + if(!selected_collar) + to_chat(user, "Select a prize first.") + return if(!selected_collar.ownername) var/obj/item/weapon/spacecasinocash/C = W - if(user.client.ckey == selected_collar.slaveckey) + if(user.client.ckey == selected_collar.sentientprizeckey) insert_chip(C, user, "selfbuy") return else @@ -630,12 +633,12 @@ to_chat(user, "This Sentient Prize is already owned! If you are the owner you can release the prize by swiping the collar on the SPASM!") return - if(istype(W, /obj/item/clothing/accessory/collar/casinoslave)) - var/obj/item/clothing/accessory/collar/casinoslave/C = W - if(user.name != C.slavename && user.name != C.ownername) + if(istype(W, /obj/item/clothing/accessory/collar/casinosentientprize)) + var/obj/item/clothing/accessory/collar/casinosentientprize/C = W + if(user.name != C.sentientprizename && user.name != C.ownername) to_chat(user, "This Sentient Prize collar isn't yours, please give it to the one it tagged for, belongs to, or a casino staff member!") return - if(user.name == C.slavename) + if(user.name == C.sentientprizename) if(!C.ownername) to_chat(user,"If collar isn't disabled and entry removed, please select your entry and insert chips. Or contact staff if you need assistance. ") return @@ -643,15 +646,15 @@ to_chat(user,"If collar isn't disabled and entry removed, please ask your owner to free you with collar swipe on the SPASM, or contact staff if you need assistance. ") return if(user.name == C.ownername) - var/confirm = tgui_alert(usr, "Are you sure you want to wipe [C.slavename] entry?", "Confirm Sentient Prize Release", list("Yes", "No")) + var/confirm = tgui_alert(usr, "Are you sure you want to wipe [C.sentientprizename] entry?", "Confirm Sentient Prize Release", list("Yes", "No")) if(confirm == "Yes") - to_chat(user, "[C.slavename] collar has been deleted from registry!") + to_chat(user, "[C.sentientprizename] collar has been deleted from registry!") C.icon_state = "casinoslave" C.update_icon() - C.name = "a disabled Sentient Prize Collar: [C.slavename]" - C.desc = "A collar worn by sentient prizes registered to a SPASM. The tag says its registered to [C.slavename], but harsh red text informs you its been disabled." - slaves_ckeys_list -= C.slaveckey - C.slaveckey = null + C.name = "disabled Sentient Prize Collar: [C.sentientprizename]" + C.desc = "A collar worn by sentient prizes registered to a SPASM. The tag says its registered to [C.sentientprizename], but harsh red text informs you its been disabled." + sentientprizes_ckeys_list -= C.sentientprizeckey + C.sentientprizeckey = null collar_list -= C if(istype(W, /obj/item/weapon/card/id)||istype(W, /obj/item/device/pda)) @@ -666,13 +669,13 @@ return if("Toggle Sentient Prize Sales") - if(casinoslave_sale == "disabled") - casinoslave_sale = "enabled" + if(casinosentientprize_sale == "disabled") + casinosentientprize_sale = "enabled" icon_state = "casinoslave_hub_on" update_icon() to_chat(user,"Prize sale has been enabled. ") else - casinoslave_sale = "disabled" + casinosentientprize_sale = "disabled" icon_state = "casinoslave_hub_off" update_icon() to_chat(user,"Prize sale has been disabled. ") @@ -683,21 +686,21 @@ return if(QDELETED(selected_collar)) collar_list -= selected_collar - slaves_ckeys_list -= selected_collar.slaveckey + sentientprizes_ckeys_list -= selected_collar.sentientprizeckey to_chat(user, "Collar has been destroyed!") selected_collar = null return - var/safety_ckey = selected_collar.slaveckey - var/confirm = tgui_alert(usr, "Are you sure you want to wipe [selected_collar.slavename] entry?", "Confirm Sentient Prize", list("Yes", "No")) + var/safety_ckey = selected_collar.sentientprizeckey + var/confirm = tgui_alert(usr, "Are you sure you want to wipe [selected_collar.sentientprizename] entry?", "Confirm Sentient Prize", list("Yes", "No")) if(confirm == "Yes") - if(safety_ckey == selected_collar.slaveckey) - to_chat(user, "[selected_collar.slavename] collar has been deleted from registry!") + if(safety_ckey == selected_collar.sentientprizeckey) + to_chat(user, "[selected_collar.sentientprizename] collar has been deleted from registry!") selected_collar.icon_state = "casinoslave" selected_collar.update_icon() - selected_collar.name = "a disabled Sentient Prize Collar: [selected_collar.slavename]" - selected_collar.desc = "A collar worn by sentient prizes registered to a SPASM. The tag says its registered to [selected_collar.slavename], but harsh red text informs you its been disabled." - slaves_ckeys_list -= selected_collar.slaveckey - selected_collar.slaveckey = null + selected_collar.name = "disabled Sentient Prize Collar: [selected_collar.sentientprizename]" + selected_collar.desc = "A collar worn by sentient prizes registered to a SPASM. The tag says its registered to [selected_collar.sentientprizename], but harsh red text informs you its been disabled." + sentientprizes_ckeys_list -= selected_collar.sentientprizeckey + selected_collar.sentientprizeckey = null collar_list -= selected_collar selected_collar = null else @@ -707,12 +710,12 @@ if("Change Prize Value") setprice(user) -/obj/machinery/casinoslave_handler/proc/insert_chip(var/obj/item/weapon/spacecasinocash/cashmoney, mob/user, var/buystate) - if(cashmoney.worth < casinoslave_price) +/obj/machinery/casinosentientprize_handler/proc/insert_chip(var/obj/item/weapon/spacecasinocash/cashmoney, mob/user, var/buystate) + if(cashmoney.worth < casinosentientprize_price) to_chat(user,"You dont have enough chips to pay for the sentient prize! ") return - cashmoney.worth -= casinoslave_price + cashmoney.worth -= casinosentientprize_price cashmoney.update_icon() if(cashmoney.worth <= 0) @@ -721,31 +724,31 @@ cashmoney.update_icon() if(buystate == "selfbuy") - to_chat(user,"You put [casinoslave_price] credits worth of chips into the SPASM and nullify your collar! ") + to_chat(user,"You put [casinosentientprize_price] credits worth of chips into the SPASM and nullify your collar! ") selected_collar.icon_state = "casinoslave" selected_collar.update_icon() - selected_collar.name = "a disabled Sentient Prize Collar: [selected_collar.slavename]" - selected_collar.desc = "A collar worn by sentient prizes registered to a SPASM. The tag says its registered to [selected_collar.slavename], but harsh red text informs you its been disabled." - slaves_ckeys_list -= selected_collar.slaveckey - selected_collar.slaveckey = null + selected_collar.name = "disabled Sentient Prize Collar: [selected_collar.sentientprizename]" + selected_collar.desc = "A collar worn by sentient prizes registered to a SPASM. The tag says its registered to [selected_collar.sentientprizename], but harsh red text informs you its been disabled." + sentientprizes_ckeys_list -= selected_collar.sentientprizeckey + selected_collar.sentientprizeckey = null collar_list -= selected_collar selected_collar = null if(buystate == "buy") - to_chat(user,"You put [casinoslave_price] credits worth of chips into the SPASM and it pings to inform you bought [selected_collar.slavename]! ") + to_chat(user,"You put [casinosentientprize_price] credits worth of chips into the SPASM and it pings to inform you bought [selected_collar.sentientprizename]! ") selected_collar.icon_state = "casinoslave_owned" selected_collar.update_icon() selected_collar.ownername = user.name - selected_collar.name = "Sentient Prize Collar: [selected_collar.slavename] owned by [selected_collar.ownername]!" - selected_collar.desc = "A collar worn by sentient prizes registered to a SPASM. The tag says its registered to [selected_collar.slavename] and they are owned by [selected_collar.ownername]." + selected_collar.name = "Sentient Prize Collar: [selected_collar.sentientprizename] owned by [selected_collar.ownername]!" + selected_collar.desc = "A collar worn by sentient prizes registered to a SPASM. The tag says its registered to [selected_collar.sentientprizename] and they are owned by [selected_collar.ownername]." selected_collar = null -/obj/machinery/casinoslave_handler/proc/setprice(mob/living/user as mob) +/obj/machinery/casinosentientprize_handler/proc/setprice(mob/living/user as mob) if(usr.incapacitated()) return if(ishuman(usr) || istype(usr, /mob/living/silicon/robot)) - casinoslave_price = tgui_input_number(usr, "Select the desired price (1-1000)", "Set Price", null, null, 1000, 1) - if(casinoslave_price>1000 || casinoslave_price<1) + casinosentientprize_price = tgui_input_number(usr, "Select the desired price (1-1000)", "Set Price", null, null, 1000, 1) + if(casinosentientprize_price>1000 || casinosentientprize_price<1) to_chat(user,"Invalid price. ") return - to_chat(user,"You set the price to [casinoslave_price] ") + to_chat(user,"You set the price to [casinosentientprize_price] ") diff --git a/code/modules/casino/casino_book.dm b/code/modules/casino/casino_book.dm index 1b3ee5163e..f02a53abd0 100644 --- a/code/modules/casino/casino_book.dm +++ b/code/modules/casino/casino_book.dm @@ -120,141 +120,12 @@ EXCHANGE RATE
FROM = TO
- 5 Thalers = 1 casino chip
- 1 casino chip = 5 Thalers

+ 1 Thaler = 1 casino chip
+ 1 casino chip = 1 Thaler

- The special sentient prize is 100 chips! More about it in section below!

+ The special sentient prize is 200 chips! More about it in section below!

- Melee weapons - - Guns and 'guns' ((disclaimer, giving out guns will mean you get a weapons license as well with the shifts you have it, abusing these weapons will quickly get them removed!)) - - Gear - - Masks and hats - EVERYTHING IS 50 except chameleon! - - Costumes - All costumes are 100 except the hoodies which are 50! - - Toys and misc - ALL THESE ARE 50 - - Booze - ALL BOOZE IS 50 - - Pets - - Mechs - - Implants - + This section was outdated, someone better write it. Thats it for prizes!

diff --git a/code/modules/casino/slots.dm b/code/modules/casino/slots.dm new file mode 100644 index 0000000000..40c7e5af61 --- /dev/null +++ b/code/modules/casino/slots.dm @@ -0,0 +1,462 @@ + +//Original Casino Code created by Shadowfire117#1269 - Ported from CHOMPstation +//Modified by GhostActual#2055 for use with VOREstation + +/* + * Slot Machine + */ + +/obj/machinery/slot_machine + name = "slot machine" + desc = "A gambling machine designed to give you false hope and rob you of your wealth, hence why it's often called a one armed bandit." + icon = 'icons/obj/casino.dmi' + icon_state = "slotmachine" + anchored = 1 + density = 1 + power_channel = EQUIP + use_power = USE_POWER_IDLE + idle_power_usage = 10 + active_power_usage = 100 + light_power = 0.9 + light_range = 2 + light_color = "#B1FBBFF" + var/isbroken = 0 //1 if someone banged it with something heavy + var/ispowered = 1 //starts powered, changes with power_change() + var/busy = 0 + var/symbol1 = null + var/symbol2 = null + var/symbol3 = null + + var/datum/effect/effect/system/confetti_spread + var/confetti_strength = 8 + +/obj/machinery/slot_machine/update_icon() + cut_overlays() + if(!ispowered || isbroken) + icon_state = "slotmachine_off" + if(isbroken) //If the thing is smashed, add crack overlay on top of the unpowered sprite. + add_overlay("slotmachine_broken") + set_light(0) + set_light_on(FALSE) + return + + icon_state = "slotmachine" + set_light(2) + set_light_on(TRUE) + return + +/obj/machinery/slot_machine/power_change() + if(isbroken) //Broken shit can't be powered. + return + ..() + if(!(stat & NOPOWER)) + ispowered = 1 + update_icon() + else + spawn(rand(0, 15)) + ispowered = 0 + update_icon() + +/obj/machinery/slot_machine/attackby(obj/item/weapon/W as obj, mob/user as mob) + if(busy) + to_chat(user,"The slot machine is currently running. ") + return + if(W.is_wrench()) + playsound(src, W.usesound, 100, 1) + if(anchored) + user.visible_message("[user] begins unsecuring \the [src] from the floor.", "You start unsecuring \the [src] from the floor.") + else + user.visible_message("[user] begins securing \the [src] to the floor.", "You start securing \the [src] to the floor.") + + if(do_after(user, 20 * W.toolspeed)) + if(!src) return + to_chat(user, "You [anchored? "un" : ""]secured \the [src]!") + anchored = !anchored + return + + if(!anchored) + to_chat(user," The slot machine isn't secured.") + return + + var/handled = 0 + var/paid = 0 + + if(istype(W, /obj/item/weapon/spacecasinocash)) + var/obj/item/weapon/spacecasinocash/C = W + paid = insert_chip(C, user) + handled = 1 + + if(paid) + return + if(handled) + SStgui.update_uis(src) + return // don't smack that machine with your 2 chips + + else if(!(stat & NOPOWER)) + return + + else if(isbroken) + return + +/obj/machinery/slot_machine/proc/insert_chip(var/obj/item/weapon/spacecasinocash/cashmoney, mob/user) + if (ispowered == 0) + return + if (isbroken) + return + if (busy) + to_chat(user,"The slot machine is currently rolling. ") + return + if(cashmoney.worth < 5) + to_chat(user,"You dont have enough chips to gamble! ") + return + + to_chat(user,"You puts 5 credits in the slot machine and presses start.") + cashmoney.worth -= 5 + cashmoney.update_icon() + + if(cashmoney.worth <= 0) + usr.drop_from_inventory(cashmoney) + qdel(cashmoney) + cashmoney.update_icon() + + busy = 1 + icon_state = "slotmachine_rolling" + playsound(src.loc, 'sound/machines/slotmachine_pull.ogg', 15, 1) + + var/slot1 = rand(0,9) + switch(slot1) + if(0 to 3) symbol1 = "cherry" + if(4 to 4) symbol1 = "lemon" + if(5 to 5) symbol1 = "bell" + if(6 to 6) symbol1 = "four leaf clover" + if(7 to 7) symbol1 = "seven" + if(8 to 8) symbol1 = "diamond" + if(9 to 9) symbol1 = "platinum coin" + + var/slot2 = rand(0,16) + switch(slot2) + if(0 to 5) symbol2 = "cherry" + if(6 to 7) symbol2 = "lemon" + if(8 to 9) symbol2 = "bell" + if(10 to 11) symbol2 = "four leaf clover" + if(12 to 13) symbol2 = "seven" + if(14 to 15) symbol2 = "diamond" + if(16) symbol2 = "platinum coin" + + var/slot3 = rand(0,9) + switch(slot3) + if(0 to 3) symbol3 = "cherry" + if(4 to 4) symbol3 = "lemon" + if(5 to 5) symbol3 = "bell" + if(6 to 6) symbol3 = "four leaf clover" + if(7 to 7) symbol3 = "seven" + if(8 to 8) symbol3 = "diamond" + if(9 to 9) symbol3 = "platinum coin" + + var/output //Output variable to send out in chat after the large if statement. + var/winnings = 0 //How much money will be given if any. + var/platinumwin = 0 // If you win the platinum chip or not + var/celebrate = 0 + var/delaytime = 5 SECONDS + + + spawn(delaytime) + to_chat(user,"The slot machine flashes with bright colours as the slots lights up with a [symbol1], a [symbol2] and a [symbol3]!") + + if (symbol1 == "cherry" && symbol2 == "cherry" && symbol3 == "cherry") + output = "Three cherries! The slot machine deposits chips worth 25 credits!" + winnings = 25 + + if ((symbol1 != "cherry" && symbol2 == "cherry" && symbol3 == "cherry") || (symbol1 == "cherry" && symbol2 != "cherry" && symbol3 == "cherry") ||(symbol1 == "cherry" && symbol2 == "cherry" && symbol3 != "cherry")) + output = "Two cherries! The slot machine deposits a 10 credit chip!" + winnings = 10 + + if (symbol1 == "lemon" && symbol2 == "lemon" && symbol3 == "lemon") + output = "Three lemons! The slot machine deposits a 50 credit chip!" + winnings = 50 + + if (symbol1 == "watermelon" && symbol2 == "watermelon" && symbol3 == "watermelon") + output = "Three watermelons! The slot machine deposits chips worth 75 credits!" + winnings = 75 + + if (symbol1 == "bell" && symbol2 == "bell" && symbol3 == "bell") + output = "Three bells! The slot machine deposits chips a 100 credit chip!" + winnings = 100 + + if (symbol1 == "four leaf clover" && symbol2 == "four leaf clover" && symbol3 == "four leaf clover") + output = "Three four leaf clovers! The slot machine deposits a 200 credit chip!" + winnings = 200 + + if (symbol1 == "seven" && symbol2 == "seven" && symbol3 == "seven") + output = "Three sevens! The slot machine deposits a 500 credit chip!" + winnings = 500 + celebrate = 1 + + if (symbol1 == "diamond" && symbol2 == "diamond" && symbol3 == "diamond") + output = "Three diamonds! The slot machine deposits a 1000 credit chip!" + winnings = 1000 + celebrate = 1 + + if (symbol1 == "platinum coin" && symbol2 == "platinum coin" && symbol3 == "platinum coin") + output = "Three platinum coins! The slot machine deposits a platinum chip!" + platinumwin = TRUE + celebrate = 1 + + icon_state = initial(icon_state) // Set it back to the original iconstate. + + if(!output) // Is there anything to output? If not, consider it a loss. + to_chat(user,"Better luck next time!") + busy = FALSE + return + + to_chat(user,output) //Output message + + if(platinumwin) // Did they win the platinum chip? + new /obj/item/weapon/casino_platinum_chip(src.loc) + playsound(src.loc, 'sound/machines/slotmachine.ogg', 25, 1) + + if(winnings) //Did the person win? + icon_state = "slotmachine_winning" + playsound(src.loc, 'sound/machines/slotmachine.ogg', 25, 1) + spawn(delaytime) + spawn_casinochips(winnings, src.loc) + icon_state = "slotmachine" + + if(celebrate) // Happy celebrations! + src.confetti_spread = new /datum/effect/effect/system/confetti_spread() + src.confetti_spread.attach(src) //If somehow people start dragging slot machine + spawn(0) + for(var/i = 1 to confetti_strength) + src.confetti_spread.start() + sleep(10) + + busy = FALSE + +/* + * Station Slot Machine (takes space cash instead of chips) + */ + +/obj/machinery/station_slot_machine + name = "station slot machine" + desc = "A gambling machine owned by NanoTrasen, designed to take Thalers as opposed to casino chips." + icon = 'icons/obj/casino.dmi' + icon_state = "ntslotmachine" + anchored = 1 + density = 1 + power_channel = EQUIP + use_power = USE_POWER_IDLE + idle_power_usage = 10 + active_power_usage = 100 + light_power = 0.9 + light_range = 2 + light_color = "#B1FBBFF" + var/isbroken = 0 //1 if someone banged it with something heavy + var/ispowered = 1 //starts powered, changes with power_change() + var/busy = 0 + var/symbol1 = null + var/symbol2 = null + var/symbol3 = null + + var/datum/effect/effect/system/confetti_spread + var/confetti_strength = 8 + +/obj/machinery/station_slot_machine/update_icon() + cut_overlays() + if(!ispowered || isbroken) + icon_state = "ntslotmachine_off" + if(isbroken) //If the thing is smashed, add crack overlay on top of the unpowered sprite. + add_overlay("ntslotmachine_broken") + set_light(0) + set_light_on(FALSE) + return + + icon_state = "ntslotmachine" + set_light(2) + set_light_on(TRUE) + return + +/obj/machinery/station_slot_machine/power_change() + if(isbroken) //Broken shit can't be powered. + return + ..() + if(!(stat & NOPOWER)) + ispowered = 1 + update_icon() + else + spawn(rand(0, 15)) + ispowered = 0 + update_icon() + +/obj/machinery/station_slot_machine/attackby(obj/item/weapon/W as obj, mob/user as mob) + if(busy) + to_chat(user,"The slot machine is currently running. ") + return + if(W.is_wrench()) + playsound(src, W.usesound, 100, 1) + if(anchored) + user.visible_message("[user] begins unsecuring \the [src] from the floor.", "You start unsecuring \the [src] from the floor.") + else + user.visible_message("[user] begins securing \the [src] to the floor.", "You start securing \the [src] to the floor.") + + if(do_after(user, 20 * W.toolspeed)) + if(!src) return + to_chat(user, "You [anchored? "un" : ""]secured \the [src]!") + anchored = !anchored + return + + if(!anchored) + to_chat(user," The slot machine isn't secured.") + return + + var/handled = 0 + var/paid = 0 + + if(istype(W, /obj/item/weapon/spacecash)) + var/obj/item/weapon/spacecash/C = W + paid = insert_cash(C, user) + handled = 1 + if(paid) + return + if(handled) + SStgui.update_uis(src) + return // don't smack that machine with your 2 chips + + else if(!(stat & NOPOWER)) + return + + else if(isbroken) + return + +/obj/machinery/station_slot_machine/proc/insert_cash(var/obj/item/weapon/spacecash/cashmoney, mob/user) + if (ispowered == 0) + return + if (isbroken) + return + if (busy) + to_chat(user,"The slot machine is currently rolling. ") + return + if(cashmoney.worth < 5) + to_chat(user,"You dont have enough Thalers to gamble! ") + return + + to_chat(user,"You puts 5 Thalers in the slot machine and presses start.") + cashmoney.worth -= 5 + cashmoney.update_icon() + + if(cashmoney.worth <= 0) + usr.drop_from_inventory(cashmoney) + qdel(cashmoney) + cashmoney.update_icon() + + busy = 1 + icon_state = "ntslotmachine_rolling" + playsound(src.loc, 'sound/machines/slotmachine_pull.ogg', 15, 1) + + var/slot1 = rand(0,9) + switch(slot1) + if(0 to 3) symbol1 = "cherry" + if(4 to 4) symbol1 = "lemon" + if(5 to 5) symbol1 = "bell" + if(6 to 6) symbol1 = "four leaf clover" + if(7 to 7) symbol1 = "seven" + if(8 to 8) symbol1 = "diamond" + if(9 to 9) symbol1 = "platinum coin" + + var/slot2 = rand(0,16) + switch(slot2) + if(0 to 5) symbol2 = "cherry" + if(6 to 7) symbol2 = "lemon" + if(8 to 9) symbol2 = "bell" + if(10 to 11) symbol2 = "four leaf clover" + if(12 to 13) symbol2 = "seven" + if(14 to 15) symbol2 = "diamond" + if(16) symbol2 = "platinum coin" + + var/slot3 = rand(0,9) + switch(slot3) + if(0 to 3) symbol3 = "cherry" + if(4 to 4) symbol3 = "lemon" + if(5 to 5) symbol3 = "bell" + if(6 to 6) symbol3 = "four leaf clover" + if(7 to 7) symbol3 = "seven" + if(8 to 8) symbol3 = "diamond" + if(9 to 9) symbol3 = "platinum coin" + + var/output //Output variable to send out in chat after the large if statement. + var/winnings = 0 //How much money will be given if any. + var/platinumwin = 0 // If you win the platinum chip or not + var/celebrate = 0 + var/delaytime = 5 SECONDS + + + spawn(delaytime) + to_chat(user,"The slot machine flashes with bright colours as the slots lights up with a [symbol1], a [symbol2] and a [symbol3]!") + + if (symbol1 == "cherry" && symbol2 == "cherry" && symbol3 == "cherry") + output = "Three cherries! The slot machine deposits 25 Thalers!" + winnings = 25 + + if ((symbol1 != "cherry" && symbol2 == "cherry" && symbol3 == "cherry") || (symbol1 == "cherry" && symbol2 != "cherry" && symbol3 == "cherry") ||(symbol1 == "cherry" && symbol2 == "cherry" && symbol3 != "cherry")) + output = "Two cherries! The slot machine deposits 10 Thalers!" + winnings = 10 + + if (symbol1 == "lemon" && symbol2 == "lemon" && symbol3 == "lemon") + output = "Three lemons! The slot machine deposits 50 Thalers!" + winnings = 50 + + if (symbol1 == "watermelon" && symbol2 == "watermelon" && symbol3 == "watermelon") + output = "Three watermelons! The slot machine deposits 75 Thalers!" + winnings = 75 + + if (symbol1 == "bell" && symbol2 == "bell" && symbol3 == "bell") + output = "Three bells! The slot machine deposits 100 Thalers!" + winnings = 100 + + if (symbol1 == "four leaf clover" && symbol2 == "four leaf clover" && symbol3 == "four leaf clover") + output = "Three four leaf clovers! The slot machine deposits 200 Thalers!" + winnings = 200 + + if (symbol1 == "seven" && symbol2 == "seven" && symbol3 == "seven") + output = "Three sevens! The slot machine deposits 500 Thalers!" + winnings = 500 + celebrate = 1 + + if (symbol1 == "diamond" && symbol2 == "diamond" && symbol3 == "diamond") + output = "Three diamonds! The slot machine deposits 1000 Thalers!" + winnings = 1000 + celebrate = 1 + + if (symbol1 == "platinum coin" && symbol2 == "platinum coin" && symbol3 == "platinum coin") + output = "Three platinum coins! The slot machine deposits a platinum chip!" + platinumwin = TRUE; + celebrate = 1 + + icon_state = initial(icon_state) // Set it back to the original iconstate. + + if(!output) // Is there anything to output? If not, consider it a loss. + to_chat(user,"Better luck next time!") + busy = FALSE + return + + to_chat(user,output) //Output message + + if(platinumwin) // Did they win the platinum chip? + new /obj/item/weapon/casino_platinum_chip(src.loc) + playsound(src.loc, 'sound/machines/slotmachine.ogg', 25, 1) + + if(winnings) //Did the person win? + icon_state = "ntslotmachine_winning" + playsound(src.loc, 'sound/machines/slotmachine.ogg', 25, 1) + spawn(delaytime) + spawn_money(winnings, src.loc) + icon_state = "ntslotmachine" + + if(celebrate) // Happy celebrations! + src.confetti_spread = new /datum/effect/effect/system/confetti_spread() + src.confetti_spread.attach(src) //If somehow people start dragging slot machine + spawn(0) + for(var/i = 1 to confetti_strength) + src.confetti_spread.start() + sleep(10) + + busy = FALSE diff --git a/code/modules/casino/spawnergrenade_casino.dm b/code/modules/casino/spawnergrenade_casino.dm index c7a8611b86..4a3cf8e535 100644 --- a/code/modules/casino/spawnergrenade_casino.dm +++ b/code/modules/casino/spawnergrenade_casino.dm @@ -2,7 +2,7 @@ name = "Casino Creature Container (Cat)" desc = "It is set to detonate in 5 seconds. It will release a cat won from the casino prize vendor!" icon = 'icons/obj/casino.dmi' - icon_state = "casino" + icon_state = "casino_delivery" item_state = "flashbang" origin_tech = list(TECH_MATERIAL = 2, TECH_MAGNET = 2) spawner_type = /mob/living/simple_mob/animal/passive/cat @@ -75,6 +75,11 @@ name = "Casino Creature Container (Otie)" spawner_type = /mob/living/simple_mob/otie/friendly +/obj/item/weapon/grenade/spawnergrenade/casino/goldcrest + desc = "It is set to detonate in 5 seconds. It will release a bird won from the casino prize vendor!" + name = "Casino Creature Container (Bird)" + spawner_type = /mob/living/simple_mob/animal/passive/bird/goldcrest + // // Mecha // diff --git a/code/modules/client/client procs.dm b/code/modules/client/client procs.dm index 24df219632..cff2875e7d 100644 --- a/code/modules/client/client procs.dm +++ b/code/modules/client/client procs.dm @@ -60,6 +60,14 @@ cmd_admin_pm(C,null) return + if(href_list["mentorhelp_msg"]) + var/client/C = locate(href_list["mentorhelp_msg"]) + if(ismob(C)) + var/mob/M = C + C = M.client + cmd_mentor_pm(C, null) + return + if(href_list["irc_msg"]) if(!holder && received_irc_pm < world.time - 6000) //Worse they can do is spam IRC for 10 minutes to_chat(usr, "You are no longer able to use this, it's been more then 10 minutes since an admin on IRC has responded to you") @@ -123,6 +131,7 @@ switch(href_list["_src_"]) if("holder") hsrc = holder + if("mentorholder") hsrc = (check_rights(R_ADMIN, 0) ? holder : mentorholder) if("usr") hsrc = mob if("prefs") return prefs.process_link(usr,href_list) if("vars") return view_var_Topic(href,href_list,hsrc) @@ -178,6 +187,7 @@ GLOB.directory[ckey] = src GLOB.ahelp_tickets.ClientLogin(src) + GLOB.mhelp_tickets.ClientLogin(src) //Admin Authorisation holder = admin_datums[ckey] @@ -185,6 +195,10 @@ GLOB.admins += src holder.owner = src + mentorholder = mentor_datums[ckey] + if (mentorholder) + mentorholder.associate(GLOB.directory[ckey]) + //preferences datum - also holds some persistant data for the client (because we may as well keep these datums to a minimum) prefs = preferences_datums[ckey] if(!prefs) @@ -262,7 +276,11 @@ if(holder) holder.owner = null GLOB.admins -= src + if (mentorholder) + mentorholder.owner = null + GLOB.mentors -= src GLOB.ahelp_tickets.ClientLogout(src) + GLOB.mhelp_tickets.ClientLogout(src) GLOB.directory -= ckey GLOB.clients -= src return ..() diff --git a/code/modules/client/preference_setup/general/02_language.dm b/code/modules/client/preference_setup/general/02_language.dm index 4b15fdc7f0..25d8c2c10e 100644 --- a/code/modules/client/preference_setup/general/02_language.dm +++ b/code/modules/client/preference_setup/general/02_language.dm @@ -14,12 +14,14 @@ //CHOMPEdit Begin S["species"] >> pref.species //CHOMPEdit End + S["language_custom_keys"] >> pref.language_custom_keys /datum/category_item/player_setup_item/general/language/save_character(var/savefile/S) S["language"] << pref.alternate_languages S["extra_languages"] << pref.extra_languages testing("LANGSANI: Saved to [pref.client]'s character [pref.real_name || "-name not yet loaded-"] savefile: [english_list(pref.alternate_languages || list())]") S["language_prefixes"] << pref.language_prefixes + S["language_custom_keys"] << pref.language_custom_keys /datum/category_item/player_setup_item/general/language/sanitize_character() if(!islist(pref.alternate_languages)) pref.alternate_languages = list() @@ -43,6 +45,14 @@ for(var/prefix in pref.language_prefixes) if(prefix in forbidden_prefixes) pref.language_prefixes -= prefix + if(isnull(pref.language_custom_keys)) + pref.language_custom_keys = list() + var/datum/species/S = GLOB.all_species[pref.species] + for(var/key in pref.language_custom_keys) + if(!pref.language_custom_keys[key]) + pref.language_custom_keys.Remove(key) + if(!((pref.language_custom_keys[key] == S.language) || (pref.language_custom_keys[key] == S.default_language && S.default_language != S.language) || (pref.language_custom_keys[key] in pref.alternate_languages))) + pref.language_custom_keys.Remove(key) /datum/category_item/player_setup_item/general/language/content() . += "Languages
" @@ -51,14 +61,15 @@ testing("LANGSANI: Truncated [pref.client]'s character [pref.real_name || "-name not yet loaded-"] language list because it was too long (len: [pref.alternate_languages.len], allowed: [S.num_alternate_languages])") pref.alternate_languages.len = (S.num_alternate_languages + pref.extra_languages) // Truncate to allowed length if(S.language) - . += "- [S.language]
" + . += "- [S.language] - Set Custom Key
" if(S.default_language && S.default_language != S.language) - . += "- [S.default_language]
" + . += "- [S.default_language] - Set Custom Key
" if(S.num_alternate_languages + pref.extra_languages) if(pref.alternate_languages.len) for(var/i = 1 to pref.alternate_languages.len) var/lang = pref.alternate_languages[i] - . += "- [lang] - remove
" + . += "- [lang] - remove - Set Custom Key
" + if(pref.alternate_languages.len < (S.num_alternate_languages + pref.extra_languages)) . += "- add ([(S.num_alternate_languages + pref.extra_languages) - pref.alternate_languages.len] remaining)
" else @@ -125,4 +136,32 @@ pref.language_prefixes = config.language_prefixes.Copy() return TOPIC_REFRESH + else if(href_list["set_custom_key"]) + var/lang = href_list["set_custom_key"] + if(!(lang in GLOB.all_languages)) + return TOPIC_REFRESH + + var/oldkey = "" + for(var/key in pref.language_custom_keys) + if(pref.language_custom_keys[key] == lang) + oldkey = key + break + + var/char = tgui_input_text(user, "Input a language key for [lang]. Input a single space to reset.", "Language Custom Key", oldkey) + if(length(char) != 1) + return TOPIC_REFRESH + else if(char == " ") + for(var/key in pref.language_custom_keys) + if(pref.language_custom_keys[key] == lang) + pref.language_custom_keys -= key + break + else if(contains_az09(char)) + if(!(char in pref.language_custom_keys)) + pref.language_custom_keys += char + pref.language_custom_keys[char] = lang + else + tgui_alert_async(user, "Improper language key. Rejected.", "Error") + + return TOPIC_REFRESH + return ..() diff --git a/code/modules/client/preference_setup/global/setting_datums.dm b/code/modules/client/preference_setup/global/setting_datums.dm index a594492b7d..11ef5d994b 100644 --- a/code/modules/client/preference_setup/global/setting_datums.dm +++ b/code/modules/client/preference_setup/global/setting_datums.dm @@ -364,6 +364,12 @@ var/list/_client_preferences_by_type enabled_description = "Popup New On Login" disabled_description = "Do Nothing" +/datum/client_preference/play_mentorhelp_ping + description = "Mentorhelps" + key = "SOUND_MENTORHELP" + enabled_description = "Hear" + disabled_description = "Silent" + /******************** * Staff Preferences * ********************/ diff --git a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm index 208030ecee..f20a423a43 100644 --- a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm @@ -282,6 +282,13 @@ ckeywhitelist = list("coolcrow420") character_name = list("Jade Davis") +/datum/gear/fluff/m4il_hdd + path = /obj/item/weapon/implant/language/fluff/m41l + display_name = "dusty hard drive" + slot = "implant" + ckeywhitelist = list("coolcrow420") + character_name = list("M41L") + // D CKEYS /datum/gear/fluff/dhaeleena_medal path = /obj/item/clothing/accessory/medal/silver/security/fluff/dhael diff --git a/code/modules/client/preference_setup/loadout/loadout_head_vr.dm b/code/modules/client/preference_setup/loadout/loadout_head_vr.dm index c41474a68e..3ddc8c5388 100644 --- a/code/modules/client/preference_setup/loadout/loadout_head_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_head_vr.dm @@ -49,6 +49,14 @@ display_name = "pink tiger pelt" path = /obj/item/clothing/head/pelt/tigerpeltpink +/datum/gear/head/magic_hat + display_name = "wizard hat, colorable" + path = /obj/item/clothing/head/wizard/fake/realistic/colorable + +/datum/gear/head/magic_hat/New() + ..() + gear_tweaks += gear_tweak_free_color_choice + /* Talon hats */ diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm index 20f09a7fd8..16a0996f95 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm @@ -292,36 +292,13 @@ Talon jumpsuit path = /obj/item/clothing/under/undersuit/command //Altevian Uniforms -/datum/gear/uniform/job_altevian/cmd - display_name = "altevian uniform, cmd" - path = /obj/item/clothing/under/pants/altevian/command - allowed_roles = list("Head of Security","Site Manager","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer") +/datum/gear/uniform/altevian + description = "An extremely comfortable set of clothing that's made to help people handle their day to day work around the fleets with little to no discomfort." + display_name = "altevian uniform selection" -/datum/gear/uniform/job_altevian/sec - display_name = "altevian uniform, sec" - path = /obj/item/clothing/under/pants/altevian/security - allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer") - -/datum/gear/uniform/job_altevian/med - display_name = "altevian uniform, med" - path = /obj/item/clothing/under/pants/altevian/medical - allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist","Field Medic","Psychiatrist") - -/datum/gear/uniform/job_altevian/eng - display_name = "altevian uniform, eng" - path = /obj/item/clothing/under/pants/altevian/engineering - allowed_roles = list("Chief Engineer","Atmospheric Technician","Engineer") - -/datum/gear/uniform/job_altevian/sci - display_name = "altevian uniform, sci" - path = /obj/item/clothing/under/pants/altevian/science - allowed_roles = list("Research Director", "Scientist", "Roboticist", "Xenobiologist", "Xenobotanist") - -/datum/gear/uniform/job_altevian/crg - display_name = "altevian uniform, cargo" - path = /obj/item/clothing/under/pants/altevian/cargo - allowed_roles = list("Quartermaster", "Cargo Technician", "Shaft Miner") - -/datum/gear/uniform/job_altevian/civ - display_name = "altevian uniform, civ" - path = /obj/item/clothing/under/pants/altevian +/datum/gear/uniform/altevian/New() + ..() + var/list/pants = list() + for(var/obj/item/clothing/under/pants/altevian/pants_type as anything in typesof(/obj/item/clothing/under/pants/altevian)) + pants[initial(pants_type.name)] = pants_type + gear_tweaks += new/datum/gear_tweak/path(sortAssoc(pants)) \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno.dm b/code/modules/client/preference_setup/loadout/loadout_xeno.dm index 4194ab5370..41cc5aa037 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno.dm @@ -167,9 +167,9 @@ sort_category = "Xenowear" /datum/gear/uniform/dept/undercoat/cap - display_name = "facility director undercoat (Teshari)" + display_name = "site manager undercoat (Teshari)" path = /obj/item/clothing/under/teshari/undercoat/jobs/cap - allowed_roles = list("Facility Director") + allowed_roles = list("Site Manager") /datum/gear/uniform/dept/undercoat/hop display_name = "head of personnel undercoat (Teshari)" @@ -276,9 +276,9 @@ sort_category = "Xenowear" /datum/gear/suit/dept/cloak/cap - display_name = "facility director cloak (Teshari)" + display_name = "site manager cloak (Teshari)" path = /obj/item/clothing/suit/storage/teshari/cloak/jobs - allowed_roles = list("Facility Director") + allowed_roles = list("Site Manager") /datum/gear/suit/dept/cloak/hop display_name = "head of personnel cloak (Teshari)" diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm b/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm index 6272e40204..659a243fa7 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm @@ -94,5 +94,14 @@ /datum/gear/suit/taur/white_dress display_name = "white wedding dress (Wolf/Horse-taur)" - path = /obj/item/clothing/suit/taur_dress/white + path = /obj/item/clothing/suit/taur/dress sort_category = "Xenowear" + +/datum/gear/uniform/taur/colorable_skirt + display_name = "colorable skirt (Wolf/Horse-taur)" + path = /obj/item/clothing/under/taur/skirt + sort_category = "Xenowear" + +/datum/gear/uniform/taur/colorable_skirt/New() + ..() + gear_tweaks += gear_tweak_free_color_choice diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index b4a63bea83..d742bd9b60 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -63,7 +63,8 @@ var/list/preferences_datums = list() var/species = SPECIES_HUMAN //Species datum to use. var/species_preview //Used for the species selection window. var/list/alternate_languages = list() //Secondary language(s) - var/list/language_prefixes = list() //Kanguage prefix keys + var/list/language_prefixes = list() //Language prefix keys + var/list/language_custom_keys = list() //Language custom call keys var/list/gear //Left in for Legacy reasons, will no longer save. var/list/gear_list = list() //Custom/fluff item loadouts. var/gear_slot = 1 //The current gear save slot @@ -429,12 +430,12 @@ var/list/preferences_datums = list() selecting_slots = FALSE if(!choice) return - + var/slotnum = charlist[choice] if(!slotnum) error("Player picked [choice] slot to load, but that wasn't one we sent.") return - + load_character(slotnum) attempt_vr(user.client?.prefs_vr,"load_vore","") //VOREStation Edit sanitize_preferences() @@ -469,12 +470,12 @@ var/list/preferences_datums = list() selecting_slots = FALSE if(!choice) return - + var/slotnum = charlist[choice] if(!slotnum) error("Player picked [choice] slot to copy to, but that wasn't one we sent.") return - + overwrite_character(slotnum) sanitize_preferences() ShowChoices(user) diff --git a/code/modules/client/preferences_vr.dm b/code/modules/client/preferences_vr.dm index d9e9976170..8b0b72f8bb 100644 --- a/code/modules/client/preferences_vr.dm +++ b/code/modules/client/preferences_vr.dm @@ -105,3 +105,18 @@ SScharacter_setup.queue_preferences_save(prefs) feedback_add_details("admin_verb","TCaptureCrystal") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! + +/client/verb/toggle_mentorhelp_ping() + set name = "Toggle Mentorhelp Ping" + set category = "Preferences" + set desc = "Toggles the mentorhelp ping" + + var/pref_path = /datum/client_preference/play_mentorhelp_ping + + toggle_preference(pref_path) + + to_chat(src, "Mentorhelp pings are now [ is_preference_enabled(pref_path) ? "enabled" : "disabled"]") + + SScharacter_setup.queue_preferences_save(prefs) + + feedback_add_details("admin_verb", "TSoundMentorhelps") diff --git a/code/modules/client/stored_item.dm b/code/modules/client/stored_item.dm index dd91bf4e71..88dbbe2ee8 100644 --- a/code/modules/client/stored_item.dm +++ b/code/modules/client/stored_item.dm @@ -35,7 +35,7 @@ var/savefile/F = new /savefile(path) - if(!F) return 0 + if(!F) return 0 var/persist_item F["persist item"] >> persist_item @@ -224,8 +224,6 @@ persist_storable = FALSE /obj/item/weapon/gun/energy/sizegun/admin persist_storable = FALSE -/obj/item/weapon/gun/energy/sizegun/abductor - persist_storable = FALSE /obj/item/stack persist_storable = FALSE /obj/item/weapon/book @@ -252,3 +250,7 @@ persist_storable = FALSE /obj/item/weapon/rcd persist_storable = FALSE +/obj/item/weapon/spacecash + persist_storable = FALSE +/obj/item/weapon/spacecasinocash + persist_storable = FALSE diff --git a/code/modules/client/verbs/who.dm b/code/modules/client/verbs/who.dm index 006815d443..17c257828a 100644 --- a/code/modules/client/verbs/who.dm +++ b/code/modules/client/verbs/who.dm @@ -83,7 +83,7 @@ else if(check_rights(R_STEALTH, FALSE, C)) // event managers //VOREStation Edit: Retired Staff category = R_EVENT num_event_managers_online++ - + temp += "\t[C] is a [C.holder.rank]" if(holder) if(C.holder.fakekey) @@ -121,6 +121,28 @@ if(config.show_event_managers) msg += "\n Current Miscellaneous ([num_event_managers_online]):\n" + eventMmsg + var/num_mentors_online = 0 + var/mmsg = "" + + for(var/client/C in GLOB.mentors) + num_mentors_online++ + mmsg += "\t[C] is a Mentor" + if(holder) + if(isobserver(C.mob)) + mmsg += " - Observing" + else if(istype(C.mob,/mob/new_player)) + mmsg += " - Lobby" + else + mmsg += " - Playing" + + if(C.is_afk()) + var/seconds = C.last_activity_seconds() + mmsg += " (AFK - [round(seconds / 60)] minutes, [seconds % 60] seconds)" + mmsg += "\n" + + if(config.show_mentors) + msg += "\n Current Mentors ([num_mentors_online]):\n" + mmsg + msg += "\nAdminhelps are also sent to Discord. If no admins are available in game try anyway and an admin on Discord may see it and respond." to_chat(src, msg) diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index 508187a0a4..2d5c26e984 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -786,7 +786,7 @@ var/image/standing = ..() if(taurized) //Special snowflake var on suits standing.pixel_x = -16 - standing.layer = BODY_LAYER + 16 // 16 is above tail layer, so will not be covered by taurbody. + standing.layer = BODY_LAYER + 17 // 17 is above tail layer, so will not be covered by taurbody. TAIL_UPPER_LAYER +1 return standing /obj/item/clothing/suit/apply_accessories(var/image/standing) diff --git a/code/modules/clothing/gloves/miscellaneous.dm b/code/modules/clothing/gloves/miscellaneous.dm index fb5c2ffecd..c052c33bcb 100644 --- a/code/modules/clothing/gloves/miscellaneous.dm +++ b/code/modules/clothing/gloves/miscellaneous.dm @@ -120,6 +120,7 @@ species_restricted = list("Vox") drop_sound = 'sound/items/drop/metalboots.ogg' pickup_sound = 'sound/items/pickup/toolbox.ogg' + armor = list (melee = 20, bullet = 15, laser = 10, energy = 10, bomb =5, bio = 30, rad = 30) //gently bumped up Heavy engineering gloves value for protection //ChompEdit cold_protection = HANDS min_cold_protection_temperature = GLOVES_MIN_COLD_PROTECTION_TEMPERATURE diff --git a/code/modules/clothing/shoes/magboots.dm b/code/modules/clothing/shoes/magboots.dm index b775dcf98c..125eedd9ab 100644 --- a/code/modules/clothing/shoes/magboots.dm +++ b/code/modules/clothing/shoes/magboots.dm @@ -90,7 +90,8 @@ icon_state = "boots-vox" flags = PHORONGUARD species_restricted = list(SPECIES_VOX) - + armor = list (melee = 40, bullet = 10, laser = 10, energy = 20, bomb = 20, bio = 10, rad = 20) //values of workboots and heavy duty engineering gloves, it's the only option that will ever be taken so may as well give the turkeys some protection //ChompEdit + action_button_name = "Toggle the magclaws" /obj/item/clothing/shoes/magboots/vox/attack_self(mob/user) @@ -126,4 +127,4 @@ /obj/item/clothing/shoes/magboots/vox/examine(mob/user) . = ..() if(magpulse) - . += "It would be hard to take these off without relaxing your grip first." // Theoretically this message should only be seen by the wearer when the claws are equipped. \ No newline at end of file + . += "It would be hard to take these off without relaxing your grip first." // Theoretically this message should only be seen by the wearer when the claws are equipped. diff --git a/code/modules/clothing/spacesuits/rig/suits/alien.dm b/code/modules/clothing/spacesuits/rig/suits/alien.dm index aa909d1ca2..95fbe88ca3 100644 --- a/code/modules/clothing/spacesuits/rig/suits/alien.dm +++ b/code/modules/clothing/spacesuits/rig/suits/alien.dm @@ -143,7 +143,7 @@ suit_type = "sinister alien" icon_state = "voxstealth_rig" desc = "A light alien rig for repairs and maintenance to the outside of habitats and vessels." - armor = list(melee = 30, bullet = 10, laser = 20,energy = 25, bomb = 20, bio = 100, rad = 100) //Standard Engineering Suit Values + armor = list(melee = 30, bullet = 10, laser = 20, energy = 25, bomb = 20, bio = 100, rad = 100) //Standard Engineering Suit Values req_access = list() req_one_access = list() @@ -152,3 +152,40 @@ initial_modules = list( ) +//ChompEdit Begins + +/obj/item/weapon/rig/vox/engineering + name = "fluid alien control module" + suit_type = "sinister alien" + icon_state = "voxstealth_rig" + desc = "A lightweight, alien rig dedicated for construction and engineering tasks. Not reccomended for hostile engagement." + armor = list (melee = 25, bullet = 5, laser = 40, energy = 45, bomb = 50, bio = 100, rad = 100) //CE suit values but shuffled to a tighter focus on the job hazards + flags = PHORONGUARD + item_flags = THICKMATERIAL + siemens_coefficient = 0 + offline_slowdown = 2.5 + slowdown = 0 + emp_protection = 40 //change this to 30 if too high. + + req_one_access = list() + allowed = list(/obj/item/device/flashlight,/obj/item/weapon/tank,/obj/item/device/suit_cooling_unit,/obj/item/weapon/storage) + offline_vision_restriction = 1 + + initial_modules = list( + ) + + air_type = /obj/item/weapon/tank/vox + + max_heat_protection_temperature = FIRE_HELMET_MAX_HEAT_PROTECTION_TEMPERATURE + +/obj/item/weapon/rig/vox_engine_technition_control_module/equipped + req_access = list(access_engine) + + initial_modules = list( + /obj/item/rig_module/maneuvering_jets, + /obj/item/rig_module/device/plasmacutter, + /obj/item/rig_module/device/rcd, + /obj/item/rig_module/vision/meson + ) + +//ChompEdit Ends diff --git a/code/modules/clothing/spacesuits/rig/suits/station.dm b/code/modules/clothing/spacesuits/rig/suits/station.dm index 141bf4270b..ef63907362 100644 --- a/code/modules/clothing/spacesuits/rig/suits/station.dm +++ b/code/modules/clothing/spacesuits/rig/suits/station.dm @@ -261,6 +261,7 @@ slowdown = 0.5 offline_vision_restriction = 1 siemens_coefficient= 0.75 + seal_delay = 5 helm_type = /obj/item/clothing/head/helmet/space/rig/medical diff --git a/code/modules/clothing/suits/aliens/teshari.dm b/code/modules/clothing/suits/aliens/teshari.dm index e74a1f3292..2cf99ff727 100644 --- a/code/modules/clothing/suits/aliens/teshari.dm +++ b/code/modules/clothing/suits/aliens/teshari.dm @@ -106,8 +106,8 @@ // Job Cloaks /obj/item/clothing/suit/storage/teshari/cloak/jobs/cap - name = "facility director cloak" - desc = "A soft Teshari cloak made for the Facility Director" + name = "site manager cloak" + desc = "A soft Teshari cloak made for the Site Manager" icon_state = "tesh_cloak_cap" //Cargo diff --git a/code/modules/clothing/suits/miscellaneous_vr.dm b/code/modules/clothing/suits/miscellaneous_vr.dm index 94fb746d94..4642d900f7 100644 --- a/code/modules/clothing/suits/miscellaneous_vr.dm +++ b/code/modules/clothing/suits/miscellaneous_vr.dm @@ -74,12 +74,12 @@ desc = "Knightly armor for a mount who doesn't need any rider. This one is marked to the house of Mason." icon_state = "Mason_barding" -/obj/item/clothing/suit/taur_dress +/obj/item/clothing/suit/taur icon = 'icons/mob/taursuits_horse_vr.dmi' body_parts_covered = UPPER_TORSO|LOWER_TORSO pixel_x = -16 -/obj/item/clothing/suit/taur_dress/white +/obj/item/clothing/suit/taur/dress name = "white wedding dress" desc = "A fancy white dress with a blue underdress." icon_state = "whitedress1" diff --git a/code/modules/clothing/suits/wiz_robe.dm b/code/modules/clothing/suits/wiz_robe.dm index 30cb1d6b55..054f9dd110 100644 --- a/code/modules/clothing/suits/wiz_robe.dm +++ b/code/modules/clothing/suits/wiz_robe.dm @@ -18,6 +18,16 @@ desc = "It has WIZZARD written across it in sequins. Comes with a cool beard." icon_state = "wizard-fake" body_parts_covered = HEAD|FACE + siemens_coefficient = 1 + +/obj/item/clothing/head/wizard/fake/realistic + desc = "A cool-looking 'magic' hat." + icon_state = "wizard" + body_parts_covered = HEAD + +/obj/item/clothing/head/wizard/fake/realistic/colorable + desc = "A cool-looking 'magic' hat." + icon_state = "wizard-white" /obj/item/clothing/head/wizard/marisa name = "Witch Hat" diff --git a/code/modules/clothing/under/accessories/accessory.dm b/code/modules/clothing/under/accessories/accessory.dm index 88caaa83b9..7ae2f5f82b 100644 --- a/code/modules/clothing/under/accessories/accessory.dm +++ b/code/modules/clothing/under/accessories/accessory.dm @@ -300,6 +300,10 @@ name = "medal of exceptional heroism" desc = "An extremely rare golden medal awarded only by high ranking officials. To recieve such a medal is the highest honor and as such, very few exist. This medal is almost never awarded to anybody but distinguished veteran staff." +/obj/item/clothing/accessory/medal/gold/casino + name = "medal of true lucky winner" + desc = "A gaudy golden medal with a logo of a casino engraved on top. The only achievement you had to earn this was great luck or great richness, neither of which is an achievement. Still, it instills a feeling of hope and smell of fresh bagels." + // Base type for 'medals' found in a "dungeon" submap, as a sort of trophy to celebrate the player's conquest. /obj/item/clothing/accessory/medal/dungeon diff --git a/code/modules/clothing/under/accessories/accessory_vr.dm b/code/modules/clothing/under/accessories/accessory_vr.dm index 06ae598fc7..5e3ed3b104 100644 --- a/code/modules/clothing/under/accessories/accessory_vr.dm +++ b/code/modules/clothing/under/accessories/accessory_vr.dm @@ -409,3 +409,30 @@ icon_state = "talon_pin" item_state = "talonpin" overlay_state = "talonpin" + +//Casino Sentient Prize Collar + +/obj/item/clothing/accessory/collar/casinosentientprize + name = "disabled Sentient Prize Collar" + desc = "A collar worn by sentient prizes registered to a SPASM. Although the red text on it shows its disconnected and nonfunctional." + + icon_state = "casinoslave" + item_state = "casinoslave" + overlay_state = "casinoslave" + + var/sentientprizename = null //Name for system to put on collar description + var/ownername = null //Name for system to put on collar description + var/sentientprizeckey = null //Ckey for system to check who is the person and ensure no abuse of system or errors + var/sentientprizeflavor = null //Description to show on the SPASM + var/sentientprizeooc = null //OOC text to show on the SPASM + +/obj/item/clothing/accessory/collar/casinosentientprize/attack_self(mob/user as mob) + //keeping it blank so people don't tag and reset collar status + +/obj/item/clothing/accessory/collar/casinosentientprize_fake + name = "Sentient Prize Collar" + desc = "A collar worn by sentient prizes registered to a SPASM. This one has been disconnected from the system and is now an accessory!" + + icon_state = "casinoslave_owned" + item_state = "casinoslave_owned" + overlay_state = "casinoslave_owned" diff --git a/code/modules/clothing/under/accessories/badges_vr.dm b/code/modules/clothing/under/accessories/badges_vr.dm index 2bdb5fa60e..a3fa5e1fd5 100644 --- a/code/modules/clothing/under/accessories/badges_vr.dm +++ b/code/modules/clothing/under/accessories/badges_vr.dm @@ -3,16 +3,12 @@ desc = "A small device used to measure body radiation and warning one after a certain threshold. \ Read manual before use! Can be held, attached to the uniform or worn around the neck." w_class = ITEMSIZE_SMALL - icon = 'icons/inventory/accessory/item_vr.dmi' icon_override = 'icons/inventory/accessory/item_vr.dmi' - icon_state = "dosimeter" item_state = "dosimeter" overlay_state = "dosimeter" - slot_flags = SLOT_TIE - var/obj/item/weapon/dosimeter_film/current_film = null /obj/item/clothing/accessory/dosimeter/New() @@ -80,19 +76,15 @@ current_film.icon_state = "dosimeter_film[tostate]" else icon_state = "[initial(icon_state)]-empty" - update_icon() /obj/item/weapon/dosimeter_film name = "dosimeter film" desc = "These films can be inserted into dosimeters. It turns from white to black, depending on how much radiation it endured." w_class = ITEMSIZE_SMALL - icon = 'icons/inventory/accessory/item_vr.dmi' icon_override = 'icons/inventory/accessory/item_vr.dmi' - icon_state = "dosimeter_film0" - var/state = 0 //0 - White, 1 - Darker, 2 - Black (same as iconstates) /obj/item/weapon/dosimeter_film/proc/update_state(var/tostate) @@ -117,10 +109,13 @@ /obj/item/weapon/storage/box/dosimeter name = "dosimeter case" desc = "This case can only hold the Dosimeter, a few films and a manual." + icon = 'icons/inventory/accessory/item_vr.dmi' + icon_override = 'icons/inventory/accessory/item_vr.dmi' + icon_state = "dosimeter_case" item_state_slots = list(slot_r_hand_str = "syringe_kit", slot_l_hand_str = "syringe_kit") storage_slots = 5 can_hold = list(/obj/item/weapon/paper/dosimeter_manual, /obj/item/clothing/accessory/dosimeter, /obj/item/weapon/dosimeter_film) - max_storage_space = (ITEMSIZE_COST_SMALL * 2) + (ITEMSIZE_COST_TINY * 3) + max_storage_space = (ITEMSIZE_COST_SMALL * 4) + (ITEMSIZE_COST_TINY * 1) w_class = ITEMSIZE_SMALL /obj/item/weapon/storage/box/dosimeter/New() diff --git a/code/modules/clothing/under/accessories/holster_vr.dm b/code/modules/clothing/under/accessories/holster_vr.dm index 2506251a4f..db610037d6 100644 --- a/code/modules/clothing/under/accessories/holster_vr.dm +++ b/code/modules/clothing/under/accessories/holster_vr.dm @@ -45,9 +45,11 @@ /obj/item/clothing/accessory/holster/machete/rapier/holster(var/obj/item/I, var/mob/living/user) ..() occupied() - has_suit.update_clothing_icon() + if(has_suit) + has_suit.update_clothing_icon() /obj/item/clothing/accessory/holster/machete/rapier/unholster(var/obj/item/I, var/mob/living/user) ..() occupied() - has_suit.update_clothing_icon() + if(has_suit) + has_suit.update_clothing_icon() diff --git a/code/modules/clothing/under/miscellaneous_vr.dm b/code/modules/clothing/under/miscellaneous_vr.dm index ef719641c9..9cccdbf20d 100644 --- a/code/modules/clothing/under/miscellaneous_vr.dm +++ b/code/modules/clothing/under/miscellaneous_vr.dm @@ -376,4 +376,15 @@ name = "Central Command undersuit" desc = "A very descript undersuit, intended for wearing under a voidsuit or other EVA equipment. This one is specifically made for NanoTrasen Central Command officers, and comes with a swanky gold trim and other fancy markings." icon_state = "bodysuit_cent" - item_state = "bodysuit_cent" \ No newline at end of file + item_state = "bodysuit_cent" + +/obj/item/clothing/under/taur + icon = 'icons/mob/taursuits_horse_vr.dmi' + body_parts_covered = UPPER_TORSO|LOWER_TORSO + pixel_x = -16 + +/obj/item/clothing/under/taur/skirt + name = "black skirt" + desc = "A fancy black skirt with white corset." + icon_state = "skirt_colorable" + flags_inv = HIDESHOES diff --git a/code/modules/clothing/under/xenos/teshari.dm b/code/modules/clothing/under/xenos/teshari.dm index ea9da2250f..f410c0f5d8 100644 --- a/code/modules/clothing/under/xenos/teshari.dm +++ b/code/modules/clothing/under/xenos/teshari.dm @@ -221,8 +221,8 @@ //Job Undercoats /obj/item/clothing/under/teshari/undercoat/jobs/cap - name = "facility director undercoat" - desc = "A traditional Teshari garb made for the Facility Director" + name = "site manager undercoat" + desc = "A traditional Teshari garb made for the Site Manager" icon_state = "tesh_uniform_cap" /obj/item/clothing/under/teshari/undercoat/jobs/hop diff --git a/code/modules/economy/casinocash_ch.dm b/code/modules/economy/casinocash_ch.dm index 99e0e36f26..b33d5b6811 100644 --- a/code/modules/economy/casinocash_ch.dm +++ b/code/modules/economy/casinocash_ch.dm @@ -28,7 +28,7 @@ h_user.drop_from_inventory(src) h_user.drop_from_inventory(SC) h_user.put_in_hands(SC) - user << "You combine the casino chips to a stack of [SC.worth] of credits." + user << "You combine the casino chips to a stack of [SC.worth] credits." qdel(src) /obj/item/weapon/spacecasinocash/update_icon() @@ -57,7 +57,7 @@ M.Turn(pick(-45, -27.5, 0, 0, 0, 0, 0, 0, 0, 27.5, 45)) banknote.transform = M src.overlays += banknote - src.desc = "They are worth [worth] of credits." + src.desc = "They are worth [worth] credits." /obj/item/weapon/spacecasinocash/proc/adjust_worth(var/adjust_worth = 0, var/update = 1) worth += adjust_worth @@ -168,4 +168,4 @@ else if(result == 2) comment = "Joker" user.visible_message("[user] has thrown \the [src]. It lands on [comment]! ", \ - "You throw \the [src]. It lands on [comment]! ") \ No newline at end of file + "You throw \the [src]. It lands on [comment]! ") diff --git a/code/modules/economy/vending_machines_vr.dm b/code/modules/economy/vending_machines_vr.dm index 56f7e92b31..dbe287f9df 100644 --- a/code/modules/economy/vending_machines_vr.dm +++ b/code/modules/economy/vending_machines_vr.dm @@ -638,7 +638,7 @@ /obj/item/clothing/mask/surgical = 5, /obj/item/clothing/accessory/pride/bi = 5, /obj/item/clothing/accessory/pride/trans = 5, - /obj/item/clothing/accessory/pride/ace = 5, + /obj/item/clothing/accessory/pride/ace = 5, /obj/item/clothing/accessory/pride/enby = 5, /obj/item/clothing/accessory/pride/pan = 5, /obj/item/clothing/accessory/pride/lesbian = 5, @@ -763,7 +763,7 @@ /obj/item/clothing/mask/surgical = 50, /obj/item/clothing/accessory/pride/bi = 50, /obj/item/clothing/accessory/pride/trans = 50, - /obj/item/clothing/accessory/pride/ace = 50, + /obj/item/clothing/accessory/pride/ace = 50, /obj/item/clothing/accessory/pride/enby = 50, /obj/item/clothing/accessory/pride/pan = 50, /obj/item/clothing/accessory/pride/lesbian = 50, @@ -3538,3 +3538,18 @@ /obj/item/weapon/reagent_containers/food/drinks/cans/root_beer = 1) idle_power_usage = 211 //refrigerator - believe it or not, this is actually the average power consumption of a refrigerated vending machine according to NRCan. vending_sound = "machines/vending/vending_cans.ogg" + +/obj/machinery/vending/altevian + name = "Altevian Imported Meals" + desc = "A vending machine containing imported foods from Altevian Hegemony. Delicious and nutritious. No natural ingridients guaranteed!" + icon = 'icons/obj/vending_vr.dmi' + icon_state = "rattevendor" + product_slogans = "Spacer's choice!;Voidborn food for voidborn people!;Most processed foods ever!" + product_ads = "Perfectly edible!;Squeaky clean foods!;Cheesed to meet you!;Made for spacers, by spacers, of spacers!" + products = list(/obj/item/weapon/reagent_containers/food/snacks/ratprotein = 15, + /obj/item/weapon/reagent_containers/food/snacks/ratveggies = 15, + /obj/item/weapon/reagent_containers/food/snacks/ratliquid = 15) + + prices = list(/obj/item/weapon/reagent_containers/food/snacks/ratprotein = 8, + /obj/item/weapon/reagent_containers/food/snacks/ratveggies = 8, + /obj/item/weapon/reagent_containers/food/snacks/ratliquid = 8) diff --git a/code/modules/economy/vending_refills.dm b/code/modules/economy/vending_refills.dm index b2c0188ef9..7e8547ca19 100644 --- a/code/modules/economy/vending_refills.dm +++ b/code/modules/economy/vending_refills.dm @@ -54,7 +54,8 @@ /obj/machinery/vending/sol, /obj/machinery/vending/snix, /obj/machinery/vending/snlvend, - /obj/machinery/vending/sovietvend) + /obj/machinery/vending/sovietvend, + /obj/machinery/vending/altevian) /obj/item/weapon/refill_cartridge/multitype/drink name = "drinks vendor refill cartridge" @@ -121,6 +122,9 @@ /obj/item/weapon/refill_cartridge/autoname/food/sovietvend refill_type = /obj/machinery/vending/sovietvend +/obj/item/weapon/refill_cartridge/autoname/food/altevian + refill_type = /obj/machinery/vending/altevian + /obj/item/weapon/refill_cartridge/autoname/drink icon_state = "rc_drink" diff --git a/code/modules/food/drinkingglass/metaglass_ch.dm b/code/modules/food/drinkingglass/metaglass_ch.dm deleted file mode 100644 index f0bf9a3aa5..0000000000 --- a/code/modules/food/drinkingglass/metaglass_ch.dm +++ /dev/null @@ -1,121 +0,0 @@ -//////////////////CHOMP////////////////////////// - -/datum/reagent/ethanol/cloverclub - glass_icon_state = "cloverclub" - glass_icon_source = 'icons/obj/drinks_ch.dmi' - glass_center_of_mass = list("x"=16, "y"=8) - -/datum/reagent/ethanol/spiderdrink - glass_icon_state = "glassofspiders" - glass_icon_file = 'icons/obj/drinks_ch.dmi' - -/datum/reagent/drink/tea/minttea - glass_icon_file = "bigteacup" - -/datum/reagent/drink/tea/lemontea - glass_icon_file = "bigteacup" - -/datum/reagent/drink/tea/limetea - glass_icon_file = "bigteacup" - -/datum/reagent/drink/tea/orangetea - glass_icon_file = "bigteacup" - -/datum/reagent/drink/tea/berrytea - glass_icon_file = "bigteacup" - -/datum/reagent/drink/tea/cherrytea - glass_icon_file = "bigteacup" - -/datum/reagent/drink/tea/watermelontea - glass_icon_file = "bigteacup" - -/datum/reagent/drink/bubbleteawatermelon - glass_icon_state = "bubbleteawatermelonglass" - glass_icon_file = 'icons/obj/drinks_ch.dmi' - glass_center_of_mass = list("x"=16, "y"=9) - -/datum/reagent/drink/bubbleteastrawberry - glass_icon_state = "bubbleteastrawberryglass" - glass_icon_file = 'icons/obj/drinks_ch.dmi' - glass_center_of_mass = list("x"=16, "y"=9) - -/datum/reagent/drink/bubbleteacherry - glass_icon_state = "bubbleteacherryglass" - glass_icon_file = 'icons/obj/drinks_ch.dmi' - glass_center_of_mass = list("x"=16, "y"=9) - -/datum/reagent/drink/bubbleteacoffee - glass_icon_state = "bubbleteacoffeeglass" - glass_icon_file = 'icons/obj/drinks_ch.dmi' - glass_center_of_mass = list("x"=16, "y"=9) - -/datum/reagent/drink/bubbleteabanana - glass_icon_state = "bubbleteabananaglass" - glass_icon_file = 'icons/obj/drinks_ch.dmi' - glass_center_of_mass = list("x"=16, "y"=9) - -/datum/reagent/drink/tea/matcha_latte - glass_icon_state = "bigteacup" - -/datum/reagent/drink/horchata - glass_icon_state = "horchata" - glass_icon_file = 'icons/obj/drinks_ch.dmi' - glass_center_of_mass = list("x"=16, "y"=7) - -/datum/reagent/toxin/bluetrain - glass_icon_state = "bluetrain" - glass_icon_file = 'icons/obj/drinks_ch.dmi' - glass_center_of_mass = list("x"=16, "y"=8) - -/datum/reagent/drink/lovepotion - glass_icon_state = "lovepotion" - glass_icon_file = 'icons/obj/drinks_ch.dmi' - -/datum/reagent/drink/lowpower - glass_icon_state = "lowpower" - glass_icon_file = 'icons/obj/drinks_ch.dmi' - -/datum/reagent/ethanol/coffee/jackbrew - glass_icon_state = "jackbrew" - glass_icon_file = 'icons/obj/drinks_ch.dmi' - -/datum/reagent/ethanol/bookwyrm - glass_icon_state = "bookwyrm" - glass_icon_file = 'icons/obj/drinks_ch.dmi' - -/datum/reagent/drink/highpower - glass_icon_state = "highpower" - glass_icon_file = 'icons/obj/drinks_ch.dmi' - -/datum/reagent/ethanol/flapper - glass_icon_state = "flapper" - glass_icon_file = 'icons/obj/drinks_ch.dmi' - -/datum/reagent/toxin/oilslide - glass_icon_state = "oilslide" - glass_icon_file = 'icons/obj/drinks_ch.dmi' - -/datum/reagent/ethanol/sitonmyface - glass_icon_state = "sitonmyface" - glass_icon_file = 'icons/obj/drinks_ch.dmi' - -/datum/reagent/ethanol/hachi - glass_icon_state = "hachi" - glass_icon_file = 'icons/obj/drinks_ch.dmi' - -/datum/reagent/ethanol/mojito - glass_icon_state = "mojito" - glass_icon_file = 'icons/obj/drinks_ch.dmi' - -/datum/reagent/slimedrink - glass_icon_state = "slimedrink" - glass_icon_file = 'icons/obj/drinks_ch.dmi' - -/datum/reagent/ethanol/arachnidslammer - glass_icon_state = "arachnidslammer" - glass_icon_file = 'icons/obj/drinks_ch.dmi' - -/datum/reagent/drink/pilk - glass_icon_state = "whiskeyglass" - glass_icon_file = 'icons/obj/drinks.dmi' \ No newline at end of file diff --git a/code/modules/food/food/snacks_vr.dm b/code/modules/food/food/snacks_vr.dm index 77eeef4c01..23935f6207 100644 --- a/code/modules/food/food/snacks_vr.dm +++ b/code/modules/food/food/snacks_vr.dm @@ -773,4 +773,56 @@ /obj/item/weapon/reagent_containers/food/snacks/donkpocket/ascended/Initialize() . = ..() reagents.add_reagent("uranium", 3) - reagents.add_reagent("pyrotoxin", 3) \ No newline at end of file + reagents.add_reagent("pyrotoxin", 3) + +// Altevian Foobs + +/obj/item/weapon/reagent_containers/food/snacks/ratprotein + name = "AN Flavor Unit C" + desc = "A snack made from a group of space-faring rodents that is packed with the maximized potential of caloric intake to cubic inch. This one seems to be flavored of smoked cheddar and salami." + icon = 'icons/obj/food_vr.dmi' + icon_state = "altevian_cheese_block" + package_open_state = "altevian_cheese_block-open" + package = TRUE + trash = /obj/item/trash/ratcheese + nutriment_amt = 5 + nutriment_desc = list("smoked cheese" = 4) + +/obj/item/weapon/reagent_containers/food/snacks/ratveggies + name = "Premium Ration Packet - VEG" + desc = "A package of a mixture of somehow still fresh from day 1 greens with a light hint of vinegar dressing to add extra kick." + icon = 'icons/obj/food_vr.dmi' + icon_state = "altevian_veggies" + package_open_state = "altevian_veggies-open" + package = TRUE + trash = /obj/item/trash/ratveg + nutriment_amt = 3 + nutriment_desc = list("fresh mixed veggies" = 3, "vinegar" = 1) + +/obj/item/weapon/reagent_containers/food/snacks/ratliquid + name = "Admiral's Choice Space-Safe Meal" + desc = "A vacuum sealed pouch of a liquid meal. This one seems to be flavored with the accent of steak." + icon = 'icons/obj/food_vr.dmi' + icon_state = "altevian_juice" + package_open_state = "altevian_juice-open" + package = TRUE + trash = /obj/item/trash/ratjuice + nutriment_amt = 2 + nutriment_desc = list("essence of steak" = 6) + +/obj/item/weapon/reagent_containers/food/snacks/ratliquid/Initialize() + . = ..() + reagents.add_reagent("protein", 4) + +/obj/item/weapon/reagent_containers/food/snacks/ratsteak + name = "altevian traditional steak" + desc = "This abomination of processed foods resembles a steak plate. Probably contains nothing a normal steak does, but mimics its flavor and nutrition well-enough." + icon = 'icons/obj/food_vr.dmi' + icon_state = "altevian_steak" + trash = /obj/item/trash/plate + nutriment_amt = 8 + nutriment_desc = list("steak" = 5, "smoked cheese" = 2, "veggies" = 1) + +/obj/item/weapon/reagent_containers/food/snacks/ratsteak/Initialize() + . = ..() + reagents.add_reagent("protein", 3) diff --git a/code/modules/food/recipes_microwave_vr.dm b/code/modules/food/recipes_microwave_vr.dm index 03c96d8296..1ecfb5fd8e 100644 --- a/code/modules/food/recipes_microwave_vr.dm +++ b/code/modules/food/recipes_microwave_vr.dm @@ -185,3 +185,11 @@ reagents = list("sugar" = 5, "nutriment" = 5) items = list() result = /obj/item/weapon/reagent_containers/food/snacks/honey_candy + +/datum/recipe/altevian_steak + items = list( + /obj/item/weapon/reagent_containers/food/snacks/ratprotein, + /obj/item/weapon/reagent_containers/food/snacks/ratveggies, + /obj/item/weapon/reagent_containers/food/snacks/ratliquid + ) + result = /obj/item/weapon/reagent_containers/food/snacks/ratsteak diff --git a/code/modules/hydroponics/trays/tray_process.dm b/code/modules/hydroponics/trays/tray_process.dm index b61bb28bd9..4ab4aff858 100644 --- a/code/modules/hydroponics/trays/tray_process.dm +++ b/code/modules/hydroponics/trays/tray_process.dm @@ -38,7 +38,7 @@ return // Advance plant age. - if(prob(30)) //CHOMPedit start: I have to push the age increase down for a line for this to work with the compiler. + if(prob(30)) //CHOMPedit start: I have to push the age increase down for a line for this to work with the compiler. age += 1 * HYDRO_SPEED_MULTIPLIER if(age_mod >= 1) //Age reagents double the speed of plant growth in sufficient quantities age += 1 * HYDRO_SPEED_MULTIPLIER @@ -121,18 +121,21 @@ // If enough time (in cycles, not ticks) has passed since the plant was harvested, we're ready to harvest again. if((age > seed.get_trait(TRAIT_MATURATION)) && \ - ((age - lastproduce) > seed.get_trait(TRAIT_PRODUCTION)) && \ - (!harvest && !dead)) + ((age - lastproduce) > seed.get_trait(TRAIT_PRODUCTION)) && \ + (!harvest && !dead)) harvest = 1 lastproduce = age // If we're a vine which is not in a closed tray and is at least half mature, and there's no vine currently on our turf: make one (maybe) if(!closed_system && \ - seed.get_trait(TRAIT_SPREAD) == 2 && \ - 2 * age >= seed.get_trait(TRAIT_MATURATION) && \ - !(locate(/obj/effect/plant) in get_turf(src)) && \ - prob(2 * seed.get_trait(TRAIT_POTENCY))) - new /obj/effect/plant(get_turf(src), seed) + seed.get_trait(TRAIT_SPREAD) == 2 && \ + 2 * age >= seed.get_trait(TRAIT_MATURATION) && \ + !(locate(/obj/effect/plant) in get_turf(src)) && \ + prob(2 * seed.get_trait(TRAIT_POTENCY))) + // CHOMPEdit Start - Need to start processing the vine or it'll never spread. + var/obj/effect/plant/D = new /obj/effect/plant(get_turf(src), seed) + SSplants.add_plant(D) + // CHOMPEdit End if(prob(3)) // On each tick, there's a chance the pest population will increase pestlevel += 0.1 * HYDRO_SPEED_MULTIPLIER diff --git a/code/modules/instruments/songs/play_synthesized.dm b/code/modules/instruments/songs/play_synthesized.dm index 63369228aa..a838a75615 100644 --- a/code/modules/instruments/songs/play_synthesized.dm +++ b/code/modules/instruments/songs/play_synthesized.dm @@ -141,8 +141,8 @@ if(dead) channels_playing -= channel channels_idle += channel - for(var/mob/M as anything in hearing_mobs) + for(var/mob/M in hearing_mobs) M.stop_sound_channel(channelnumber) else - for(var/mob/M as anything in hearing_mobs) + for(var/mob/M in hearing_mobs) M.set_sound_channel_volume(channelnumber, (current_volume * 0.01) * volume * using_instrument.volume_multiplier) diff --git a/code/modules/library/lib_items.dm b/code/modules/library/lib_items.dm index 62b5222552..a4ebf411da 100644 --- a/code/modules/library/lib_items.dm +++ b/code/modules/library/lib_items.dm @@ -309,6 +309,8 @@ Book Cart End var/list/pages = list() //the contents of each page /obj/item/weapon/book/bundle/proc/show_content(mob/user as mob) + if(!pages.len) + return var/dat var/obj/item/weapon/W = pages[page] // first diff --git a/code/modules/mentor/mentor.dm b/code/modules/mentor/mentor.dm new file mode 100644 index 0000000000..28f4225485 --- /dev/null +++ b/code/modules/mentor/mentor.dm @@ -0,0 +1,263 @@ +/client + var/datum/mentor/mentorholder = null + +var/list/mentor_datums = list() + +var/list/mentor_verbs_default = list( + /client/proc/cmd_mentor_ticket_panel, + /client/proc/cmd_mentor_say, + /client/proc/cmd_dementor +) + +/datum/mentor + var/client/owner = null + +/datum/mentor/New(ckey) + if(!ckey) + error("Mentor datum created without a ckey argument. Datum has been deleted") + qdel(src) + return + mentor_datums[ckey] = src + +/datum/mentor/proc/associate(client/C) + if(istype(C)) + owner = C + owner.mentorholder = src + owner.add_mentor_verbs() + GLOB.mentors |= C + +/datum/mentor/proc/disassociate() + if(owner) + GLOB.mentors -= owner + owner.remove_mentor_verbs() + owner.mentorholder = null + mentor_datums[owner.ckey] = null + qdel(src) + +/client/proc/add_mentor_verbs() + if(mentorholder) + verbs += mentor_verbs_default + +/client/proc/remove_mentor_verbs() + if(mentorholder) + verbs -= mentor_verbs_default + +/client/proc/make_mentor() + set category = "Special Verbs" + set name = "Make Mentor" + if(!holder) + to_chat(src, "Error: Only administrators may use this command.") + return + var/list/client/targets[0] + for(var/client/T in GLOB.clients) + targets["[T.key]"] = T + var/target = tgui_input_list(src,"Who do you want to make a mentor?","Make Mentor", sortList(targets)) + if(!target) + return + var/client/C = targets[target] + if(has_mentor_powers(C) || C.deadmin_holder) // If an admin is deadminned you could mentor them and that will cause fuckery if they readmin + to_chat(src, "Error: They already have mentor powers.") + return + var/datum/mentor/M = new /datum/mentor(C.ckey) + M.associate(C) + to_chat(C, "You have been granted mentorship.") + to_chat(src, "You have made [C] a mentor.") + log_admin("[key_name(src)] made [key_name(C)] a mentor.") + feedback_add_details("admin_verb","Make Mentor") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! + +/client/proc/unmake_mentor() + set category = "Special Verbs" + set name = "Unmake Mentor" + if(!holder) + to_chat(src, "Error: Only administrators may use this command.") + return + var/list/client/targets[0] + for(var/client/T in GLOB.mentors) + targets["[T.key]"] = T + var/target = tgui_input_list(src,"Which mentor do you want to unmake?","Unmake Mentor", sortList(targets)) + if(!target) + return + var/client/C = targets[target] + C.mentorholder.disassociate() + to_chat(C, "Your mentorship has been revoked.") + to_chat(src, "You have revoked [C]'s mentorship.") + log_admin("[key_name(src)] revoked [key_name(C)]'s mentorship.") + feedback_add_details("admin_verb","Unmake Mentor") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! + +/client/proc/cmd_mentor_say(msg as text) + set category = "Admin" + set name ="Mentorsay" + + //check rights + if (!has_mentor_powers(src)) + return + + msg = sanitize(msg) + if (!msg) + return + + log_admin("Mentorsay: [key_name(src)]: [msg]") + + for(var/client/C in GLOB.mentors) + to_chat(C, create_text_tag("mentor", "MENTOR:", C) + " [src]: [msg]") + for(var/client/C in GLOB.admins) + to_chat(C, create_text_tag("mentor", "MENTOR:", C) + " [src]: [msg]") + +/proc/mentor_commands(href, href_list, client/C) + if(href_list["mhelp"]) + var/mhelp_ref = href_list["mhelp"] + var/datum/mentor_help/MH = locate(mhelp_ref) + if (MH && istype(MH, /datum/mentor_help)) + MH.Action(href_list["mhelp_action"]) + else + to_chat(C, "Ticket [mhelp_ref] has been deleted!") + + if (href_list["mhelp_tickets"]) + GLOB.mhelp_tickets.BrowseTickets(text2num(href_list["mhelp_tickets"])) + + +/datum/mentor/Topic(href, href_list) + ..() + if (usr.client != src.owner || (!usr.client.mentorholder)) + log_admin("[key_name(usr)] tried to illegally use mentor functions.") + message_admins("[usr.key] tried to illegally use mentor functions.") + return + + mentor_commands(href, href_list, usr) + +/client/proc/cmd_dementor() + set category = "Admin" + set name = "De-mentor" + + if(tgui_alert(usr, "Confirm self-dementor for the round? You can't re-mentor yourself without someone promoting you.","Dementor",list("Yes","No")) == "Yes") + src.mentorholder.disassociate() + +/client/proc/cmd_mhelp_reply(whom) + if(prefs.muted & MUTE_ADMINHELP) + to_chat(src, "Error: Mentor-PM: You are unable to use admin PM-s (muted).") + return + var/client/C + if(istext(whom)) + C = GLOB.directory[whom] + else if(istype(whom,/client)) + C = whom + if(!C) + if(has_mentor_powers(src)) + to_chat(src, "Error: Mentor-PM: Client not found.") + return + + var/datum/mentor_help/MH = C.current_mentorhelp + + if(MH) + message_mentors("[src] has started replying to [C]'s mentor help.") + var/msg = tgui_input_text(src,"Message:", "Private message to [C]") + if (!msg) + message_mentors("[src] has cancelled their reply to [C]'s mentor help.") + return + cmd_mentor_pm(whom, msg, MH) + +/proc/has_mentor_powers(client/C) + return C.holder || C.mentorholder + +// This not really a great place to put it, but this verb replaces adminhelp in hotkeys so that people requesting help can select the type they need +// You can still directly adminhelp if necessary, this ONLY replaces the inbuilt hotkeys + +/client/verb/requesthelp() + set category = "Admin" + set name = "Request help" + set hidden = 1 + + var/mhelp = tgui_alert(usr, "Select the help you need.","Request for Help",list("Adminhelp","Mentorhelp")) == "Mentorhelp" + var/msg = tgui_input_text(usr, "Input your request for help.", "Request for Help") + + if (mhelp) + mentorhelp(msg) + return + + adminhelp(msg) + + +/client/proc/cmd_mentor_pm(whom, msg, datum/mentor_help/MH) + set category = "Admin" + set name = "Mentor-PM" + set hidden = 1 + + if(prefs.muted & MUTE_ADMINHELP) + to_chat(src, "Error: Mentor-PM: You are unable to use admin PM-s (muted).") + return + + //Not a mentor and no open ticket + if(!has_mentor_powers(src) && !current_mentorhelp) + to_chat(src, "You can no longer reply to this ticket, please open another one by using the Mentorhelp verb if need be.") + to_chat(src, "Message: [msg]") + return + + var/client/recipient + + if(istext(whom)) + recipient = GLOB.directory[whom] + + else if(istype(whom,/client)) + recipient = whom + + //get message text, limit it's length.and clean/escape html + if(!msg) + msg = tgui_input_text(src,"Message:", "Mentor-PM to [whom]") + + if(!msg) + return + + if(prefs.muted & MUTE_ADMINHELP) + to_chat(src, "Error: Mentor-PM: You are unable to use admin PM-s (muted).") + return + + if(!recipient) + if(has_mentor_powers(src)) + to_chat(src, "Error:Mentor-PM: Client not found.") + to_chat(src, msg) + else + log_admin("Mentorhelp: [key_name(src)]: [msg]") + current_mentorhelp.MessageNoRecipient(msg) + return + + //Has mentor powers but the recipient no longer has an open ticket + if(has_mentor_powers(src) && !recipient.current_mentorhelp) + to_chat(src, "You can no longer reply to this ticket.") + to_chat(src, "Message: [msg]") + return + + if (src.handle_spam_prevention(msg,MUTE_ADMINHELP)) + return + + msg = trim(sanitize(copytext(msg,1,MAX_MESSAGE_LEN))) + if(!msg) + return + + var/interaction_message = "Mentor-PM from-[src] to-[recipient]: [msg]" + + if (recipient.current_mentorhelp && !has_mentor_powers(recipient)) + recipient.current_mentorhelp.AddInteraction(interaction_message) + if (src.current_mentorhelp && !has_mentor_powers(src)) + src.current_mentorhelp.AddInteraction(interaction_message) + + // It's a little fucky if they're both mentors, but while admins may need to adminhelp I don't really see any reason a mentor would have to mentorhelp since you can literally just ask any other mentors online + if (has_mentor_powers(recipient) && has_mentor_powers(src)) + if (recipient.current_mentorhelp) + recipient.current_mentorhelp.AddInteraction(interaction_message) + if (src.current_mentorhelp) + src.current_mentorhelp.AddInteraction(interaction_message) + + to_chat(recipient, "Mentor-PM from-[src]: [msg]") + to_chat(src, "Mentor-PM to-[recipient]: [msg]") + + log_admin("[key_name(src)]->[key_name(recipient)]: [msg]") + + if(recipient.is_preference_enabled(/datum/client_preference/play_mentorhelp_ping)) + recipient << 'sound/effects/mentorhelp.mp3' + + for(var/client/C in GLOB.mentors) + if (C != recipient && C != src) + to_chat(C, interaction_message) + for(var/client/C in GLOB.admins) + if (C != recipient && C != src) + to_chat(C, interaction_message) \ No newline at end of file diff --git a/code/modules/mentor/mentorhelp.dm b/code/modules/mentor/mentorhelp.dm new file mode 100644 index 0000000000..e5f7ac49d8 --- /dev/null +++ b/code/modules/mentor/mentorhelp.dm @@ -0,0 +1,415 @@ +/client/var/datum/mentor_help/current_mentorhelp + +// +//TICKET MANAGER +// + +GLOBAL_DATUM_INIT(mhelp_tickets, /datum/mentor_help_tickets, new) + +/datum/mentor_help_tickets + var/list/active_tickets = list() + var/list/resolved_tickets = list() + + var/obj/effect/statclick/mticket_list/astatclick = new(null, null, AHELP_ACTIVE) + var/obj/effect/statclick/mticket_list/rstatclick = new(null, null, AHELP_RESOLVED) + +/datum/mentor_help_tickets/Destroy() + QDEL_LIST(active_tickets) + QDEL_LIST(resolved_tickets) + QDEL_NULL(astatclick) + QDEL_NULL(rstatclick) + return ..() + +//private +/datum/mentor_help_tickets/proc/ListInsert(datum/mentor_help/new_ticket) + var/list/mticket_list + switch(new_ticket.state) + if(AHELP_ACTIVE) + mticket_list = active_tickets + if(AHELP_RESOLVED) + mticket_list = resolved_tickets + else + CRASH("Invalid ticket state: [new_ticket.state]") + var/num_closed = mticket_list.len + if(num_closed) + for(var/I in 1 to num_closed) + var/datum/mentor_help/MH = mticket_list[I] + if(MH.id > new_ticket.id) + mticket_list.Insert(I, new_ticket) + return + mticket_list += new_ticket + +//opens the ticket listings, only two states here +/datum/mentor_help_tickets/proc/BrowseTickets(state) + var/list/l2b + var/title + switch(state) + if(AHELP_ACTIVE) + l2b = active_tickets + title = "Active Tickets" + if(AHELP_RESOLVED) + l2b = resolved_tickets + title = "Resolved Tickets" + if(!l2b) + return + var/list/dat = list("[title]") + dat += "Refresh

" + for(var/datum/mentor_help/MH as anything in l2b) + dat += "Ticket #[MH.id]: [MH.initiator_ckey]: [MH.name]
" + + usr << browse(dat.Join(), "window=mhelp_list[state];size=600x480") + +//Tickets statpanel +/datum/mentor_help_tickets/proc/stat_entry() + var/num_disconnected = 0 + stat("Active Tickets:", astatclick.update("[active_tickets.len]")) + for(var/datum/mentor_help/MH as anything in active_tickets) + if(MH.initiator) + stat("#[MH.id]. [MH.initiator_ckey]:", MH.statclick.update()) + else + ++num_disconnected + if(num_disconnected) + stat("Disconnected:", astatclick.update("[num_disconnected]")) + stat("Resolved Tickets:", rstatclick.update("[resolved_tickets.len]")) + +//Reassociate still open ticket if one exists +/datum/mentor_help_tickets/proc/ClientLogin(client/C) + C.current_mentorhelp = CKey2ActiveTicket(C.ckey) + if(C.current_mentorhelp) + C.current_mentorhelp.AddInteraction("Client reconnected.") + C.current_mentorhelp.initiator = C + +//Dissasociate ticket +/datum/mentor_help_tickets/proc/ClientLogout(client/C) + if(C.current_mentorhelp) + C.current_mentorhelp.AddInteraction("Client disconnected.") + C.current_mentorhelp.initiator = null + C.current_mentorhelp = null + +//Get a ticket given a ckey +/datum/mentor_help_tickets/proc/CKey2ActiveTicket(ckey) + for(var/datum/admin_help/MH as anything in active_tickets) + if(MH.initiator_ckey == ckey) + return MH + +// +//TICKET LIST STATCLICK +// + +/obj/effect/statclick/mticket_list + var/current_state + +/obj/effect/statclick/mticket_list/New(loc, name, state) + current_state = state + ..() + +/obj/effect/statclick/mticket_list/Click() + GLOB.mhelp_tickets.BrowseTickets(current_state) + +// +//TICKET DATUM +// + +/datum/mentor_help + var/id + var/name + var/state = AHELP_ACTIVE + + var/opened_at + var/closed_at + + var/client/initiator //semi-misnomer, it's the person who ahelped/was bwoinked + var/initiator_ckey + var/initiator_key_name + + var/list/_interactions //use AddInteraction() or, preferably, admin_ticket_log() + + var/obj/effect/statclick/ahelp/statclick + + var/static/ticket_counter = 0 + +//call this on its own to create a ticket, don't manually assign current_mentorhelp +//msg is the title of the ticket: usually the ahelp text +/datum/mentor_help/New(msg, client/C) + //clean the input msg + msg = sanitize(copytext(msg,1,MAX_MESSAGE_LEN)) + if(!msg || !C || !C.mob) + qdel(src) + return + + id = ++ticket_counter + opened_at = world.time + + name = msg + + initiator = C + initiator_ckey = C.ckey + initiator_key_name = key_name(initiator, FALSE, TRUE) + if(initiator.current_mentorhelp) //This is a bug + log_debug("Ticket erroneously left open by code") + initiator.current_mentorhelp.AddInteraction("Ticket erroneously left open by code") + initiator.current_mentorhelp.Resolve() + initiator.current_mentorhelp = src + + statclick = new(null, src) + _interactions = list() + + log_admin("Mentorhelp: [key_name(C)]: [msg]") + MessageNoRecipient(msg) + //show it to the person adminhelping too + to_chat(C, "Mentor-PM to-Mentors: [name]") + + GLOB.mhelp_tickets.active_tickets += src + +/datum/mentor_help/Destroy() + RemoveActive() + GLOB.mhelp_tickets.resolved_tickets -= src + return ..() + +/datum/mentor_help/proc/AddInteraction(formatted_message) + _interactions += "[gameTimestamp()]: [formatted_message]" + +//private +/datum/mentor_help/proc/ClosureLinks(ref_src) + if(!ref_src) + ref_src = "\ref[src]" + . = " (RSLVE)" + +//private +/datum/mentor_help/proc/LinkedReplyName(ref_src) + if(!ref_src) + ref_src = "\ref[src]" + return "[initiator_ckey]" + +//private +/datum/mentor_help/proc/TicketHref(msg, ref_src, action = "ticket") + if(!ref_src) + ref_src = "\ref[src]" + return "[msg]" + +//message from the initiator without a target, all people with mentor powers will see this +/datum/mentor_help/proc/MessageNoRecipient(msg) + var/ref_src = "\ref[src]" + var/chat_msg = "(ESCALATE) Ticket [TicketHref("#[id]", ref_src)]: [LinkedReplyName(ref_src)]: [msg]" + AddInteraction("[LinkedReplyName(ref_src)]: [msg]") + for (var/client/C in GLOB.mentors) + if (C.is_preference_enabled(/datum/client_preference/play_mentorhelp_ping)) + C << 'sound/effects/mentorhelp.mp3' + for (var/client/C in GLOB.admins) + if (C.is_preference_enabled(/datum/client_preference/play_mentorhelp_ping)) + C << 'sound/effects/mentorhelp.mp3' + message_mentors(chat_msg) + +//Reopen a closed ticket +/datum/mentor_help/proc/Reopen() + if(state == AHELP_ACTIVE) + to_chat(usr, "This ticket is already open.") + return + + if(GLOB.mhelp_tickets.CKey2ActiveTicket(initiator_ckey)) + to_chat(usr, "This user already has an active ticket, cannot reopen this one.") + return + + statclick = new(null, src) + GLOB.mhelp_tickets.active_tickets += src + GLOB.mhelp_tickets.resolved_tickets -= src + switch(state) + if(AHELP_RESOLVED) + feedback_dec("mhelp_resolve") + state = AHELP_ACTIVE + closed_at = null + if(initiator) + initiator.current_mentorhelp = src + + AddInteraction("Reopened by [usr.ckey]") + if(initiator) + to_chat(initiator, "Ticket [TicketHref("#[id]")] was reopened by [usr.ckey].") + var/msg = "Ticket [TicketHref("#[id]")] reopened by [usr.ckey]." + message_mentors(msg) + log_admin(msg) + feedback_inc("mhelp_reopen") + TicketPanel() //can only be done from here, so refresh it + +//private +/datum/mentor_help/proc/RemoveActive() + if(state != AHELP_ACTIVE) + return + closed_at = world.time + QDEL_NULL(statclick) + GLOB.mhelp_tickets.active_tickets -= src + if(initiator && initiator.current_mentorhelp == src) + initiator.current_mentorhelp = null + +//Mark open ticket as resolved/legitimate, returns mentorhelp verb +/datum/mentor_help/proc/Resolve(silent = FALSE) + if(state != AHELP_ACTIVE) + return + RemoveActive() + state = AHELP_RESOLVED + GLOB.mhelp_tickets.ListInsert(src) + + AddInteraction("Resolved by [usr.ckey].") + if(initiator) + to_chat(initiator, "Ticket [TicketHref("#[id]")] was marked resolved by [usr.ckey].") + if(!silent) + feedback_inc("mhelp_resolve") + var/msg = "Ticket [TicketHref("#[id]")] resolved by [usr.ckey]" + message_mentors(msg) + log_admin(msg) + +//Show the ticket panel +/datum/mentor_help/proc/TicketPanel() + var/list/dat = list("Ticket #[id]") + var/ref_src = "\ref[src]" + dat += "

Mentor Help Ticket #[id]: [LinkedReplyName(ref_src)]

" + dat += "State: " + switch(state) + if(AHELP_ACTIVE) + dat += "OPEN" + if(AHELP_RESOLVED) + dat += "RESOLVED" + else + dat += "UNKNOWN" + dat += "[GLOB.TAB][TicketHref("Refresh", ref_src)]" + if(state != AHELP_ACTIVE) + dat += "[GLOB.TAB][TicketHref("Reopen", ref_src, "reopen")]" + dat += "

Opened at: [gameTimestamp(wtime = opened_at)] (Approx [(world.time - opened_at) / 600] minutes ago)" + if(closed_at) + dat += "
Closed at: [gameTimestamp(wtime = closed_at)] (Approx [(world.time - closed_at) / 600] minutes ago)" + dat += "

" + if(initiator) + dat += "Actions: [Context(ref_src)]
" + else + dat += "DISCONNECTED[GLOB.TAB][ClosureLinks(ref_src)]
" + dat += "
Log:

" + for(var/I in _interactions) + dat += "[I]
" + + usr << browse(dat.Join(), "window=mhelp[id];size=620x480") + +//Kick ticket to admins +/datum/mentor_help/proc/Escalate() + if(tgui_alert(usr, "Really escalate this ticket to admins? No mentors will ever be able to interact with it again if you do.","Escalate",list("Yes","No")) != "Yes") + return + if (src.initiator == null) // You can't escalate a mentorhelp of someone who's logged out because it won't create the adminhelp properly + to_chat(usr, "Error: client not found, unable to escalate.") + return + var/datum/admin_help/AH = new /datum/admin_help(src.name, src.initiator, FALSE) + message_mentors("[usr.ckey] escalated Ticket [TicketHref("#[id]")]") + log_admin("[key_name(usr)] escalated mentorhelp [src.name]") + to_chat(src.initiator, "[usr.ckey] escalated your mentorhelp to admins.") + AH._interactions = src._interactions + GLOB.mhelp_tickets.active_tickets -= src + GLOB.mhelp_tickets.resolved_tickets -= src + qdel(src) + +/datum/mentor_help/proc/Context(ref_src) + if(!ref_src) + ref_src = "\ref[src]" + if(state == AHELP_ACTIVE) + . += ClosureLinks(ref_src) + if(state != AHELP_RESOLVED) + . += " (ESCALATE)" + +//Forwarded action from admin/Topic OR mentor/Topic depending on which rank the caller has +/datum/mentor_help/proc/Action(action) + switch(action) + if("ticket") + TicketPanel() + if("reply") + usr.client.cmd_mhelp_reply(initiator) + if("resolve") + Resolve() + if("reopen") + Reopen() + if("escalate") + Escalate() + +// +// TICKET STATCLICK +// + +/obj/effect/statclick/mhelp + var/datum/mentor_help/mhelp_datum + +/obj/effect/statclick/mhelp/New(loc, datum/mentor_help/MH) + mhelp_datum = MH + ..(loc) + +/obj/effect/statclick/mhelp/update() + return ..(mhelp_datum.name) + +/obj/effect/statclick/mhelp/Click() + mhelp_datum.TicketPanel() + +/obj/effect/statclick/mhelp/Destroy() + mhelp_datum = null + return ..() + +// +// CLIENT PROCS +// + +/client/verb/mentorhelp(msg as text) + set category = "Admin" + set name = "Mentorhelp" + + if(say_disabled) //This is here to try to identify lag problems + to_chat(usr, "Speech is currently admin-disabled.") + return + + //handle muting and automuting + if(prefs.muted & MUTE_ADMINHELP) + to_chat(src, "Error: Mentor-PM: You cannot send adminhelps (Muted).") + return + if(handle_spam_prevention(msg,MUTE_ADMINHELP)) + return + + if(!msg) + return + + //remove out adminhelp verb temporarily to prevent spamming of admins. + src.verbs -= /client/verb/mentorhelp + spawn(600) + src.verbs += /client/verb/mentorhelp // 1 minute cool-down for mentorhelps + + feedback_add_details("admin_verb","Mentorhelp") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! + if(current_mentorhelp) + if(tgui_alert(usr, "You already have a ticket open. Is this for the same issue?","Duplicate?",list("Yes","No")) != "No") + if(current_mentorhelp) + log_admin("Mentorhelp: [key_name(src)]: [msg]") + current_mentorhelp.MessageNoRecipient(msg) + to_chat(usr, "Mentor-PM to-Mentors: [msg]") + return + else + to_chat(usr, "Ticket not found, creating new one...") + else + current_mentorhelp.AddInteraction("[usr.ckey] opened a new ticket.") + current_mentorhelp.Resolve() + + new /datum/mentor_help(msg, src, FALSE) + +//admin proc +/client/proc/cmd_mentor_ticket_panel() + set name = "Mentor Ticket List" + set category = "Admin" + + var/browse_to + + switch(tgui_input_list(usr, "Display which ticket list?", "List Choice", list("Active Tickets", "Resolved Tickets"))) + if("Active Tickets") + browse_to = AHELP_ACTIVE + if("Resolved Tickets") + browse_to = AHELP_RESOLVED + else + return + + GLOB.mhelp_tickets.BrowseTickets(browse_to) + +/proc/message_mentors(var/msg) + msg = "Mentor: [msg]" + + for(var/client/C in GLOB.mentors) + to_chat(C, msg) + for(var/client/C in GLOB.admins) + to_chat(C, msg) \ No newline at end of file diff --git a/code/modules/mob/_modifiers/modifiers_vr.dm b/code/modules/mob/_modifiers/modifiers_vr.dm new file mode 100644 index 0000000000..a56bc5d2e0 --- /dev/null +++ b/code/modules/mob/_modifiers/modifiers_vr.dm @@ -0,0 +1,33 @@ +/datum/modifier/underwater_stealth + name = "underwater stealth" + desc = "You are currently underwater, rendering it more difficult to see you and enabling you to move quicker, thanks to your aquatic nature." + + on_created_text = "You sink under the water." + on_expired_text = "You come out from the water." + + stacks = MODIFIER_STACK_FORBID + + slowdown = -1.5 //A bit faster when actually submerged fully in water, as you're not waddling through it. + siemens_coefficient = 1.5 //You are, however, underwater. Getting shocked will hurt. + + outgoing_melee_damage_percent = 0.75 //You are swinging a sword under water...Good luck. + accuracy = -50 //You're underwater. Good luck shooting a gun. (Makes shots as if you were 3.33 tiles further.) + evasion = 30 //You're underwater and a bit harder to hit. + +/datum/modifier/underwater_stealth/on_applied() + holder.alpha = 50 + return + +/datum/modifier/underwater_stealth/on_expire() + holder.alpha = 255 + return + +/datum/modifier/underwater_stealth/tick() + if(holder.stat == DEAD) + expire(silent = TRUE) //If you're dead you float to the top. + if(istype(holder.loc, /turf/simulated/floor/water)) + var/turf/simulated/floor/water/water_floor = holder.loc + if(water_floor.depth < 1) //You're not in deep enough water anymore. + expire(silent = FALSE) + else + expire(silent = FALSE) \ No newline at end of file diff --git a/code/modules/mob/_modifiers/unholy.dm b/code/modules/mob/_modifiers/unholy.dm index 64d7a99d38..034c3b455b 100644 --- a/code/modules/mob/_modifiers/unholy.dm +++ b/code/modules/mob/_modifiers/unholy.dm @@ -185,16 +185,14 @@ var/mob/living/carbon/human/H = holder var/starting_nutrition = H.nutrition H.adjust_nutrition(-10) - var/healing_amount = starting_nutrition - H.nutrition - if(healing_amount < 0) // If you are eating enough to somehow outpace this, congratulations, you are gluttonous enough to gain a boon. - healing_amount *= -2 + var/healing_amount = starting_nutrition - H.nutrition //Anything above 9 nutrition will return 10. Anything below will give 0-9. Nutrition is capped at 0. + if(healing_amount) + H.adjustBruteLoss(-healing_amount * 0.25) - H.adjustBruteLoss(-healing_amount * 0.25) + H.adjustFireLoss(-healing_amount * 0.25) - H.adjustFireLoss(-healing_amount * 0.25) + H.adjustOxyLoss(-healing_amount * 0.25) - H.adjustOxyLoss(-healing_amount * 0.25) - - H.adjustToxLoss(-healing_amount * 0.25) + H.adjustToxLoss(-healing_amount * 0.25) ..() \ No newline at end of file diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index 3958cee14a..1da2ae1081 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -123,7 +123,8 @@ if(ishuman(body)) var/mob/living/carbon/human/H = body add_overlay(H.overlays_standing) - + default_pixel_x = body.default_pixel_x + default_pixel_y = body.default_pixel_y if(!T) T = pick(latejoin) //Safety in case we cannot find the body's position if(T) @@ -136,6 +137,7 @@ name = capitalize(pick(first_names_male)) + " " + capitalize(pick(last_names)) real_name = name animate(src, pixel_y = 2, time = 10, loop = -1) + animate(pixel_y = default_pixel_y, time = 10, loop = -1) observer_mob_list += src ..() @@ -505,10 +507,11 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp /mob/observer/dead/stop_orbit() . = ..() //restart our floating animation after orbit is done. - pixel_y = 0 - pixel_x = 0 + pixel_y = default_pixel_y + pixel_x = default_pixel_x transform = null animate(src, pixel_y = 2, time = 10, loop = -1) + animate(pixel_y = default_pixel_y, time = 10, loop = -1) /mob/observer/dead/proc/stop_following() following = null diff --git a/code/modules/mob/hear_say.dm b/code/modules/mob/hear_say.dm index 797918d0f8..f1d2c94226 100644 --- a/code/modules/mob/hear_say.dm +++ b/code/modules/mob/hear_say.dm @@ -140,13 +140,13 @@ /mob/proc/on_hear_say(var/message) to_chat(src, message) if(teleop) - to_chat(teleop, create_text_tag("body", "BODY:", teleop) + "[message]") + to_chat(teleop, create_text_tag("body", "BODY:", teleop.client) + "[message]") /mob/living/silicon/on_hear_say(var/message) var/time = say_timestamp() to_chat(src, "[time] [message]") if(teleop) - to_chat(teleop, create_text_tag("body", "BODY:", teleop) + "[time] [message]") + to_chat(teleop, create_text_tag("body", "BODY:", teleop.client) + "[time] [message]") // Checks if the mob's own name is included inside message. Handles both first and last names. /mob/proc/check_mentioned(var/message) diff --git a/code/modules/mob/language/monkey.dm b/code/modules/mob/language/animal.dm similarity index 95% rename from code/modules/mob/language/monkey.dm rename to code/modules/mob/language/animal.dm index 8224ca7aa8..9135babe24 100644 --- a/code/modules/mob/language/monkey.dm +++ b/code/modules/mob/language/animal.dm @@ -9,7 +9,7 @@ machine_understands = 0 /datum/language/mouse - name = "Mouse" + name = LANGUAGE_MOUSE desc = "A set of squeaks that only mice can understand." speech_verb = "squeaks" ask_verb = "squeaks" @@ -21,7 +21,7 @@ syllables = list("squeak") // , "gripes", "oi", "meow") /datum/language/teppi - name = "Teppi" + name = LANGUAGE_TEPPI desc = "A set of gyohs that only teppi can understand." speech_verb = "rumbles" ask_verb = "tilts" diff --git a/code/modules/mob/language/language.dm b/code/modules/mob/language/language.dm index 4cb01b981f..4fa749f41e 100644 --- a/code/modules/mob/language/language.dm +++ b/code/modules/mob/language/language.dm @@ -192,6 +192,9 @@ /mob/proc/remove_language(var/rem_language) var/datum/language/L = GLOB.all_languages[rem_language] . = (L in languages) + var/prefix = get_custom_prefix_by_lang(src, L) + if(prefix) + language_keys.Remove(prefix) languages.Remove(L) /mob/living/remove_language(rem_language) @@ -240,7 +243,8 @@ for(var/datum/language/L in languages) if(!(L.flags & NONGLOBAL)) - . += "[L.name] ([get_language_prefix()][L.key])
[L.desc]

" + var/lang_key = get_custom_prefix_by_lang(src, L) + . += "[L.name] ([get_language_prefix()][L.key][lang_key ? " [get_language_prefix()][lang_key]" : ""])
[L.desc]

" /mob/living/check_lang_data() . = "" @@ -250,12 +254,13 @@ for(var/datum/language/L in languages) if(!(L.flags & NONGLOBAL)) + var/lang_key = get_custom_prefix_by_lang(src, L) if(L == default_language) - . += "[L.name] ([get_language_prefix()][L.key]) - default - reset
[L.desc]

" + . += "[L.name] ([get_language_prefix()][L.key][lang_key ? " [get_language_prefix()][lang_key]" : ""]) Edit Custom Key - default - reset
[L.desc]

" else if (can_speak(L)) - . += "[L.name] ([get_language_prefix()][L.key]) - set default
[L.desc]

" + . += "[L.name] ([get_language_prefix()][L.key][lang_key ? " [get_language_prefix()][lang_key]" : ""]) Edit Custom Key - set default
[L.desc]

" else - . += "[L.name] ([get_language_prefix()][L.key]) - cannot speak!
[L.desc]

" + . += "[L.name] ([get_language_prefix()][L.key][lang_key ? " [get_language_prefix()][lang_key]" : ""]) Edit Custom Key - cannot speak!
[L.desc]

" /mob/verb/check_languages() set name = "Check Known Languages" @@ -279,6 +284,22 @@ set_default_language(L) check_languages() return 1 + else if(href_list["set_lang_key"]) + var/datum/language/L = locate(href_list["set_lang_key"]) + if(L && (L in languages)) + var/old_key = get_custom_prefix_by_lang(src, L) + var/custom_key = tgui_input_text(src, "Input a new key for [L.name]", "Language Key", old_key) + if(custom_key && length(custom_key) == 1) + if(contains_az09(custom_key)) + language_keys[custom_key] = L + if(old_key && old_key != custom_key) + language_keys.Remove(old_key) + else if(custom_key == " ") + if(old_key && old_key != custom_key) + language_keys.Remove(old_key) + else + tgui_alert_async(src, "Improper language key. Rejected.", "Error") + check_languages() else return ..() @@ -287,5 +308,17 @@ if(L.flags & except_flags) continue target.add_language(L.name) + for(var/key in source.language_keys) + if(L == source.language_keys[key]) + if(!(key in target.language_keys)) + target.language_keys[key] = L + +/proc/get_custom_prefix_by_lang(var/mob/our_mob, var/language) + if(!our_mob || !our_mob.language_keys.len || !language) + return + + for(var/key in our_mob.language_keys) + if(our_mob.language_keys[key] == language) + return key #undef SCRAMBLE_CACHE_LEN diff --git a/code/modules/mob/language/station_vr.dm b/code/modules/mob/language/station_vr.dm index 7be2976d69..77186ccb00 100644 --- a/code/modules/mob/language/station_vr.dm +++ b/code/modules/mob/language/station_vr.dm @@ -15,7 +15,7 @@ speech_verb = "chirps" colour = "birdsongc" key = "G" - syllables = list ("cheep", "peep", "tweet") + syllables = list ("chee", "pee", "twee", "hoo", "ee", "oo", "ch", "ts", "sch", "twe", "too", "pha", "ewe", "shee", "shoo", "p", "tw", "aw", "caw", "c") /datum/language/sergal name = LANGUAGE_SAGARU diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index ec3eba894d..d1691c200c 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -386,6 +386,6 @@ var/list/_simple_mob_default_emotes = list( var/new_flapping = isnull(setting) ? !flapping : setting if(new_flapping != flapping) - flapping = setting + flapping = new_flapping update_wing_showing() return 1 diff --git a/code/modules/mob/living/carbon/human/emote_vr.dm b/code/modules/mob/living/carbon/human/emote_vr.dm index 9ba2ca4ad5..b98d28285b 100644 --- a/code/modules/mob/living/carbon/human/emote_vr.dm +++ b/code/modules/mob/living/carbon/human/emote_vr.dm @@ -70,3 +70,26 @@ nutrition_hidden = !nutrition_hidden to_chat(src, "Players will [nutrition_hidden ? "no longer" : "now"] see your nutrition levels.") // Chomp Edit End + +/mob/living/carbon/human/verb/hide_tail_vr() + set name = "Show/Hide tail" + set category = "IC" + set desc = "Hide your tail, or show it if you already hid it." + if(!tail_style) //Just some checks. + to_chat(src,"You have no tail to hide!") + return + else //They got a tail. Let's make sure it ain't hiding stuff! + var/datum/sprite_accessory/tail/current_tail = tail_style + if((current_tail.hide_body_parts && current_tail.hide_body_parts.len) || current_tail.clip_mask_state || current_tail.clip_mask) + to_chat(src,"Your current tail is too considerable to hide!") + return + if(species.tail) //If they're using this verb, they already have a custom tail. This prevents their species tail from showing. + species.tail = null //Honestly, this should probably be done when a custom tail is chosen, but this is the only time it'd ever matter. + tail_hidden = !tail_hidden + update_tail_showing() + var/message = "" + if(!tail_hidden) + message = "reveals their tail!" + else + message = "hides their tail." + visible_message("[src] [message]") diff --git a/code/modules/mob/living/carbon/human/human_defines_vr.dm b/code/modules/mob/living/carbon/human/human_defines_vr.dm index de940a81df..16b5097e46 100644 --- a/code/modules/mob/living/carbon/human/human_defines_vr.dm +++ b/code/modules/mob/living/carbon/human/human_defines_vr.dm @@ -9,6 +9,7 @@ var/sensorpref = 5 //Suit sensor loadout pref var/wings_hidden = FALSE var/nutrition_hidden = FALSE // Chomp Edit + var/tail_hidden = FALSE /mob/living/carbon/human/proc/shadekin_get_energy() var/datum/species/shadekin/SK = species diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm index f8f30fe8ff..42ba79273f 100644 --- a/code/modules/mob/living/carbon/human/human_movement.dm +++ b/code/modules/mob/living/carbon/human/human_movement.dm @@ -20,7 +20,14 @@ . += M.slowdown var/health_deficiency = (getMaxHealth() - health) - if(health_deficiency >= 40) . += (health_deficiency / 25) + if(istype(src, /mob/living/carbon/human)) //VOREStation Edit Start + var/mob/living/carbon/human/H = src + health_deficiency *= H.species.trauma_mod //Species pain sensitivity does not apply to painkillers, so we apply it before + if(health_deficiency >= 40) + if(chem_effects[CE_PAINKILLER]) //On painkillers? Reduce pain! On anti-painkillers? Increase pain! + health_deficiency = max(0, health_deficiency - src.chem_effects[CE_PAINKILLER]) + if(health_deficiency >= 40) //Still in enough pain for it to be significant? + . += (health_deficiency / 25) //VOREStation Edit End if(can_feel_pain()) if(halloss >= 10) . += (halloss / 10) //halloss shouldn't slow you down if you can't even feel it diff --git a/code/modules/mob/living/carbon/human/human_vr.dm b/code/modules/mob/living/carbon/human/human_vr.dm index 2c621fa3f8..1fd36d32ff 100644 --- a/code/modules/mob/living/carbon/human/human_vr.dm +++ b/code/modules/mob/living/carbon/human/human_vr.dm @@ -14,4 +14,8 @@ . = ..() /mob/living/carbon/human/get_digestion_nutrition_modifier() - return species.digestion_nutrition_modifier \ No newline at end of file + return species.digestion_nutrition_modifier + +/mob/living/carbon/human/get_digestion_efficiency_modifier() + return species.digestion_efficiency + diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index d2d4821cd9..9857513e7e 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -1583,7 +1583,7 @@ return // Puke if toxloss is too high - if(!stat) + if(!stat && !isbelly(loc)) if (getToxLoss() >= 30 && isSynthetic()) if(!confused) if(prob(5)) diff --git a/code/modules/mob/living/carbon/human/life_vr.dm b/code/modules/mob/living/carbon/human/life_vr.dm index fc4f613418..8e52e3daaf 100644 --- a/code/modules/mob/living/carbon/human/life_vr.dm +++ b/code/modules/mob/living/carbon/human/life_vr.dm @@ -78,3 +78,8 @@ // Moving around increases germ_level faster if(germ_level < GERM_LEVEL_MOVE_CAP && prob(8)) germ_level++ + + +/mob/living/carbon + var/synth_cosmetic_pain = FALSE + diff --git a/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm b/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm index df0142a12e..7f4c783815 100644 --- a/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm +++ b/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm @@ -123,6 +123,7 @@ /datum/species/shadekin/handle_death(var/mob/living/carbon/human/H) spawn(1) + H.release_vore_contents(TRUE, TRUE) //CHOMPEdit - Drop all belly contents on death. for(var/obj/item/W in H) H.drop_from_inventory(W) qdel(H) @@ -343,4 +344,4 @@ new_copy.energy_dark = energy_dark - return new_copy \ No newline at end of file + return new_copy diff --git a/code/modules/mob/living/carbon/human/species/species_vr.dm b/code/modules/mob/living/carbon/human/species/species_vr.dm index ceb8a026d2..ef4e8252bd 100644 --- a/code/modules/mob/living/carbon/human/species/species_vr.dm +++ b/code/modules/mob/living/carbon/human/species/species_vr.dm @@ -8,6 +8,7 @@ var/organic_food_coeff = 1 var/synthetic_food_coeff = 0 + var/digestion_efficiency = 1 //VORE specific digestion var //var/vore_numbing = 0 var/metabolism = 0.0015 var/lightweight = FALSE //Oof! Nonhelpful bump stumbles. diff --git a/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm b/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm index bce4336830..c4c55fa63e 100644 --- a/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm @@ -1065,3 +1065,104 @@ C.update_transform() //egg_contents -= src C.contents -= src + +/mob/living/carbon/human/proc/water_stealth() + set name = "Dive under water / Resurface" + set desc = "Dive under water, allowing for you to be stealthy and move faster." + set category = "Abilities" + + if(last_special > world.time) + return + last_special = world.time + 50 //No spamming! + + if(has_modifier_of_type(/datum/modifier/underwater_stealth)) + to_chat(src, "You resurface!") + remove_modifiers_of_type(/datum/modifier/underwater_stealth) + return + + if(!isturf(loc)) //We have no turf. + to_chat(src, "There is no water for you to dive into!") + return + + if(istype(src.loc, /turf/simulated/floor/water)) + var/turf/simulated/floor/water/water_floor = src.loc + if(water_floor.depth >= 1) //Is it deep enough? + add_modifier(/datum/modifier/underwater_stealth) //No duration. It'll remove itself when they exit the water! + to_chat(src, "You dive into the water!") + visible_message("[src] dives into the water!") + else + to_chat(src, "The water here is not deep enough to dive into!") + return + + else + to_chat(src, "There is no water for you to dive into!") + return + +/mob/living/carbon/human/proc/underwater_devour() + set name = "Devour From Water" + set desc = "Grab something in the water with you and devour them with your selected stomach." + set category = "Abilities" + + if(last_special > world.time) + return + last_special = world.time + 50 //No spamming! + + if(stat == DEAD || paralysis || weakened || stunned) + to_chat(src, "You cannot do that while in your current state.") + return + + if(!(src.vore_selected)) + to_chat(src, "No selected belly found.") + return + + + if(!has_modifier_of_type(/datum/modifier/underwater_stealth)) + to_chat(src, "You must be underwater to do this!!") + return + + var/list/targets = list() //Shameless copy and paste. If it ain't broke don't fix it! + + for(var/turf/T in range(1, src)) + if(istype(T, /turf/simulated/floor/water)) + for(var/mob/living/L in T) + if(L == src) //no eating yourself. 1984. + continue + if(L.devourable) + targets += L + + if(!(targets.len)) + to_chat(src, "No eligible targets found.") + return + + var/mob/living/target = tgui_input_list(src, "Please select a target.", "Victim", targets) + + if(!target) + return + + to_chat(target, "Something begins to circle around you in the water!") //Dun dun... + var/starting_loc = target.loc + + if(do_after(src, 50)) + if(target.loc != starting_loc) + to_chat(target, "You got away from whatever that was...") + to_chat(src, "They got away.") + return + if(target.buckled) //how are you buckled in the water?! + target.buckled.unbuckle_mob() + target.visible_message("\The [target] suddenly disappears, being dragged into the water!",\ + "You are dragged below the water and feel yourself slipping directly into \the [src]'s [vore_selected]!") + to_chat(src, "You successfully drag \the [target] into the water, slipping them into your [vore_selected].") + target.forceMove(src.vore_selected) + + +/mob/living/carbon/human/proc/toggle_pain_module() + set name = "Toggle pain simulation." + set desc = "Turn on your pain simulation for that organic experience! Or turn it off for repairs, or if it's too much." + set category = "Abilities" + + if(synth_cosmetic_pain) + to_chat(src, " You turn off your pain simulators.") + else + to_chat(src, " You turn on your pain simulators ") + + synth_cosmetic_pain = !synth_cosmetic_pain diff --git a/code/modules/mob/living/carbon/human/species/station/station_special_vr.dm b/code/modules/mob/living/carbon/human/species/station/station_special_vr.dm index e736ee29f4..4e49351b96 100644 --- a/code/modules/mob/living/carbon/human/species/station/station_special_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/station_special_vr.dm @@ -26,9 +26,6 @@ /mob/living/carbon/human/proc/reconstitute_form, /mob/living/carbon/human/proc/sonar_ping, /mob/living/carbon/human/proc/tie_hair, - /mob/living/proc/flying_toggle, - /mob/living/proc/flying_vore_toggle, - /mob/living/proc/start_wings_hovering, /mob/living/carbon/human/proc/lick_wounds) //Xenochimera get all the special verbs since they can't select traits. // CHOMPEdit: Lick Wounds Verb diff --git a/code/modules/mob/living/carbon/human/species/station/station_vr.dm b/code/modules/mob/living/carbon/human/species/station/station_vr.dm index f53ff7c588..6eea9bc061 100644 --- a/code/modules/mob/living/carbon/human/species/station/station_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/station_vr.dm @@ -85,7 +85,7 @@ name_language = LANGUAGE_SKRELLIAN color_mult = 1 assisted_langs = list(LANGUAGE_EAL, LANGUAGE_ROOTLOCAL, LANGUAGE_ROOTGLOBAL, LANGUAGE_VOX) - inherent_verbs = list(/mob/living/carbon/human/proc/tie_hair) + inherent_verbs = list(/mob/living/carbon/human/proc/tie_hair, /mob/living/carbon/human/proc/water_stealth, /mob/living/carbon/human/proc/underwater_devour) min_age = 18 max_age = 110 @@ -113,6 +113,7 @@ appearance_flags = HAS_HAIR_COLOR | HAS_LIPS | HAS_UNDERWEAR | HAS_SKIN_COLOR | HAS_EYE_COLOR water_breather = TRUE + water_movement = -4 //Negates shallow. Halves deep. flesh_color = "#AFA59E" base_color = "#777777" @@ -311,7 +312,7 @@ deform = 'icons/mob/human_races/r_def_skrell_vr.dmi' color_mult = 1 min_age = 18 - inherent_verbs = list(/mob/living/carbon/human/proc/tie_hair) + inherent_verbs = list(/mob/living/carbon/human/proc/tie_hair, /mob/living/carbon/human/proc/water_stealth, /mob/living/carbon/human/proc/underwater_devour) reagent_tag = null allergens = null assisted_langs = list(LANGUAGE_EAL, LANGUAGE_ROOTLOCAL, LANGUAGE_ROOTGLOBAL, LANGUAGE_VOX) @@ -320,6 +321,9 @@ wikilink="https://wiki.chompstation13.net/index.php?title=Skrell" genders = list(MALE, FEMALE, PLURAL, NEUTER) + water_breather = TRUE + water_movement = -4 //Negates shallow. Halves deep. + /datum/species/zaddat spawn_flags = SPECIES_CAN_JOIN min_age = 18 diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/negative.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/negative.dm index 7c01fd47f7..35a56f9b42 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits_vr/negative.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/negative.dm @@ -124,7 +124,7 @@ /datum/trait/negative/neural_hypersensitivity name = "Neural Hypersensitivity" - desc = "Your nerves are particularly sensitive to physical changes, leading to experiencing twice the intensity of pain and pleasure alike. Doubles traumatic shock." + desc = "Your nerves are particularly sensitive to physical changes, leading to experiencing twice the intensity of pain and pleasure alike. Makes all pain effects twice as strong, and occur at half as much damage." cost = -1 var_changes = list("trauma_mod" = 2) can_take = ORGANICS @@ -143,13 +143,6 @@ desc = "You breathe nitrogen instead of oxygen (which is poisonous to you). Incidentally, phoron isn't poisonous to breathe to you." var_changes = list("breath_type" = "nitrogen", "poison_type" = "oxygen") -/datum/trait/negative/monolingual - name = "Monolingual" - desc = "You are not good at learning languages." - cost = -3 - var_changes = list("num_alternate_languages" = 0) - varchange_type = TRAIT_VARCHANGE_MORE_BETTER - /datum/trait/negative/monolingual name = "Monolingual" desc = "You are not good at learning languages." diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm index 6a45bca3e0..db5b35c749 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm @@ -586,3 +586,43 @@ cost = 0 custom_only = FALSE var_changes = list("digestion_nutrition_modifier" = 0.25) + + +/datum/trait/neutral/food_value_down + name = "Insatiable" + desc = "You need to eat a third of a plate more to be sated." + cost = 0 + custom_only = FALSE + can_take = ORGANICS + var_changes = list(organic_food_coeff = 0.67, digestion_efficiency = 0.66) + excludes = list(/datum/trait/neutral/bloodsucker) + +/datum/trait/neutral/food_value_down_plus + name = "Insatiable, Greater" + desc = "You need to eat three times as much to feel sated." + cost = 0 + custom_only = FALSE + can_take = ORGANICS + var_changes = list(organic_food_coeff = 0.33, digestion_efficiency = 0.33) + excludes = list(/datum/trait/neutral/bloodsucker, /datum/trait/neutral/food_value_down) + +/datum/trait/neutral/biofuel_value_down + name = "Discount Biofuel processor" + desc = "You are able to gain energy through consuming and processing normal food. Unfortunately, it is half as effective as premium models." + cost = 0 + custom_only = FALSE + can_take = SYNTHETICS + var_changes = list("organic_food_coeff" = 0, "synthetic_food_coeff" = 0.3, digestion_efficiency = 0.5) + excludes = list(/datum/trait/neutral/synth_chemfurnace) + +/datum/trait/neutral/synth_cosmetic_pain + name = "Pain simulation" + desc = "You have added modules in your synthetic shell that simulates the sensation of pain. You are able to turn this on and off for repairs as needed or convenience at will." + cost = 0 + custom_only = FALSE + can_take = SYNTHETICS + + +/datum/trait/neutral/synth_cosmetic_pain/apply(var/datum/species/S,var/mob/living/carbon/human/H) + ..(S,H) + H.verbs |= /mob/living/carbon/human/proc/toggle_pain_module diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm index be507a7c78..b61f3923e4 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm @@ -175,11 +175,16 @@ H.verbs |= /mob/living/carbon/human/proc/weave_item H.verbs |= /mob/living/carbon/human/proc/set_silk_color -/datum/trait/positive/water_breather - name = "Water Breather" - desc = "You can breathe under water." +/datum/trait/positive/aquatic + name = "Aquatic" + desc = "You can breathe under water and can traverse water more efficiently. Additionally, you can eat others in the water." cost = 1 - var_changes = list("water_breather" = 1) + var_changes = list("water_breather" = 1, "water_movement" = -4) //Negate shallow water. Half the speed in deep water. + +/datum/trait/positive/aquatic/apply(var/datum/species/S,var/mob/living/carbon/human/H) + ..(S,H) + H.verbs |= /mob/living/carbon/human/proc/water_stealth + H.verbs |= /mob/living/carbon/human/proc/underwater_devour /datum/trait/positive/cocoon_tf name = "Cocoon Spinner" @@ -210,3 +215,11 @@ custom_only = FALSE varchange_type = TRAIT_VARCHANGE_MORE_BETTER */ + +/datum/trait/positive/trauma_tolerance //CHOMPEdit renamed because we already have pain_tolerance pathname for halloss damage resistance. + name = "Grit" + desc = "You can keep going a little longer, a little harder when you get hurt, Injuries only inflict 85% as much pain, and slowdown from pain is 85% as effective." + cost = 2 + var_changes = list("trauma_mod" = 0.85) + excludes = list(/datum/trait/negative/neural_hypersensitivity) + can_take = ORGANICS diff --git a/code/modules/mob/living/carbon/human/species/station/xenochimera_trait_vr.dm b/code/modules/mob/living/carbon/human/species/station/xenochimera_trait_vr.dm index 2f2adc4487..663e6eec76 100644 --- a/code/modules/mob/living/carbon/human/species/station/xenochimera_trait_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/xenochimera_trait_vr.dm @@ -54,13 +54,21 @@ category = 0 custom_only = FALSE -/datum/trait/positive/water_breather/xenochimera +/datum/trait/positive/aquatic/xenochimera sort = TRAIT_SORT_SPECIES allowed_species = list(SPECIES_XENOCHIMERA) - name = "Xenochimera: Water Breather" - desc = "You can breathe under water." + name = "Xenochimera: Aquatic" + desc = "You can breathe under water and can traverse water more efficiently. Additionally, you can eat others in the water." cost = 0 category = 0 + excludes = list(/datum/trait/positive/winged_flight/xenochimera) + custom_only = FALSE + +/datum/trait/positive/winged_flight/xenochimera + name = "Xenochhimera: Winged Flight" + desc = "Allows you to fly by using your wings. Don't forget to bring them!" + cost = 0 + excludes = list(/datum/trait/positive/aquatic/xenochimera) custom_only = FALSE /* // Commented out in lieu of finding a better solution. diff --git a/code/modules/mob/living/carbon/human/species/virtual_reality/avatar.dm b/code/modules/mob/living/carbon/human/species/virtual_reality/avatar.dm index 17b31ffecc..ec054ab520 100644 --- a/code/modules/mob/living/carbon/human/species/virtual_reality/avatar.dm +++ b/code/modules/mob/living/carbon/human/species/virtual_reality/avatar.dm @@ -34,8 +34,12 @@ /mob/living/carbon/human/proc/shapeshifter_select_hair, /mob/living/carbon/human/proc/shapeshifter_select_hair_colors, /mob/living/carbon/human/proc/shapeshifter_select_gender, + /mob/living/carbon/human/proc/shapeshifter_select_wings, + /mob/living/carbon/human/proc/shapeshifter_select_tail, + /mob/living/carbon/human/proc/shapeshifter_select_ears, + /mob/living/proc/set_size, /mob/living/carbon/human/proc/regenerate, - /mob/living/carbon/human/proc/shapeshifter_change_opacity, + /mob/living/carbon/human/proc/promethean_select_opaqueness, /mob/living/carbon/human/proc/exit_vr ) @@ -77,7 +81,7 @@ // Move the mind avatar.Sleeping(1) src.mind.transfer_to(avatar) - to_chat(avatar, "You have enterred Virtual Reality!\nAll normal gameplay rules still apply.\nWounds you suffer here won't persist when you leave VR, but some of the pain will.\nYou can leave VR at any time by using the \"Exit Virtual Reality\" verb in the Abilities tab, or by ghosting.\nYou can modify your appearance by using various \"Change \[X\]\" verbs in the Abilities tab.") + to_chat(avatar, "You have enterred Virtual Reality!\nAll normal gameplay rules still apply.\nWounds you suffer here won't persist when you leave VR, but some of the pain will.\nYou can leave VR at any time by using the \"Exit Virtual Reality\" verb in the Abilities tab, or by ghosting.") //No more prommie VR thing, so removed tidbit about changing appearance to_chat(avatar, " You black out for a moment, and wake to find yourself in a new body in virtual reality.") // So this is what VR feels like? // exit_vr is called on the vr mob, and puts the mind back into the original mob diff --git a/code/modules/mob/living/carbon/human/update_icons.dm b/code/modules/mob/living/carbon/human/update_icons.dm index aede472f22..c94959a13a 100644 --- a/code/modules/mob/living/carbon/human/update_icons.dm +++ b/code/modules/mob/living/carbon/human/update_icons.dm @@ -67,37 +67,38 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() #define SURGERY_LAYER 5 //Overlays for open surgical sites #define UNDERWEAR_LAYER 6 //Underwear/bras/etc #define TAIL_LOWER_LAYER 7 //Tail as viewed from the south -#define SHOES_LAYER_ALT 8 //Shoe-slot item (when set to be under uniform via verb) -#define UNIFORM_LAYER 9 //Uniform-slot item -#define ID_LAYER 10 //ID-slot item -#define SHOES_LAYER 11 //Shoe-slot item -#define GLOVES_LAYER 12 //Glove-slot item -#define BELT_LAYER 13 //Belt-slot item -#define SUIT_LAYER 14 //Suit-slot item -#define TAIL_UPPER_LAYER 15 //Some species have tails to render (As viewed from the N, E, or W) -#define GLASSES_LAYER 16 //Eye-slot item -#define BELT_LAYER_ALT 17 //Belt-slot item (when set to be above suit via verb) -#define SUIT_STORE_LAYER 18 //Suit storage-slot item -#define BACK_LAYER 19 //Back-slot item -#define HAIR_LAYER 20 //The human's hair -#define HAIR_ACCESSORY_LAYER 21 //VOREStation edit. Simply move this up a number if things are added. -#define EARS_LAYER 22 //Both ear-slot items (combined image) -#define EYES_LAYER 23 //Mob's eyes (used for glowing eyes) -#define FACEMASK_LAYER 24 //Mask-slot item -#define HEAD_LAYER 25 //Head-slot item -#define HANDCUFF_LAYER 26 //Handcuffs, if the human is handcuffed, in a secret inv slot -#define LEGCUFF_LAYER 27 //Same as handcuffs, for legcuffs -#define L_HAND_LAYER 28 //Left-hand item -#define R_HAND_LAYER 29 //Right-hand item -#define WING_LAYER 30 //Wings or protrusions over the suit. -#define VORE_BELLY_LAYER 31 //CHOMPStation edit - Move this and everything after up if things are added. -#define VORE_TAIL_LAYER 32 //CHOMPStation edit - Move this and everything after up if things are added. -#define TAIL_UPPER_LAYER_ALT 33 //Modified tail-sprite layer. Tend to be larger. -#define MODIFIER_EFFECTS_LAYER 34 //Effects drawn by modifiers -#define FIRE_LAYER 35 //'Mob on fire' overlay layer -#define MOB_WATER_LAYER 36 //'Mob submerged' overlay layer -#define TARGETED_LAYER 37 //'Aimed at' overlay layer -#define TOTAL_LAYERS 37 //CHOMPStation edit. <---- KEEP THIS UPDATED, should always equal the highest number here, used to initialize a list. +#define WING_LOWER_LAYER 8 //Wings as viewed from the south +#define SHOES_LAYER_ALT 9 //Shoe-slot item (when set to be under uniform via verb) +#define UNIFORM_LAYER 10 //Uniform-slot item +#define ID_LAYER 11 //ID-slot item +#define SHOES_LAYER 12 //Shoe-slot item +#define GLOVES_LAYER 13 //Glove-slot item +#define BELT_LAYER 14 //Belt-slot item +#define SUIT_LAYER 15 //Suit-slot item +#define TAIL_UPPER_LAYER 16 //Some species have tails to render (As viewed from the N, E, or W) +#define GLASSES_LAYER 17 //Eye-slot item +#define BELT_LAYER_ALT 18 //Belt-slot item (when set to be above suit via verb) +#define SUIT_STORE_LAYER 19 //Suit storage-slot item +#define BACK_LAYER 20 //Back-slot item +#define HAIR_LAYER 21 //The human's hair +#define HAIR_ACCESSORY_LAYER 22 //VOREStation edit. Simply move this up a number if things are added. +#define EARS_LAYER 23 //Both ear-slot items (combined image) +#define EYES_LAYER 24 //Mob's eyes (used for glowing eyes) +#define FACEMASK_LAYER 25 //Mask-slot item +#define HEAD_LAYER 26 //Head-slot item +#define HANDCUFF_LAYER 27 //Handcuffs, if the human is handcuffed, in a secret inv slot +#define LEGCUFF_LAYER 28 //Same as handcuffs, for legcuffs +#define L_HAND_LAYER 29 //Left-hand item +#define R_HAND_LAYER 30 //Right-hand item +#define WING_LAYER 31 //Wings or protrusions over the suit. +#define VORE_BELLY_LAYER 32 //CHOMPStation edit - Move this and everything after up if things are added. +#define VORE_TAIL_LAYER 33 //CHOMPStation edit - Move this and everything after up if things are added. +#define TAIL_UPPER_LAYER_ALT 34 //Modified tail-sprite layer. Tend to be larger. +#define MODIFIER_EFFECTS_LAYER 35 //Effects drawn by modifiers +#define FIRE_LAYER 36 //'Mob on fire' overlay layer +#define MOB_WATER_LAYER 37 //'Mob submerged' overlay layer +#define TARGETED_LAYER 38 //'Aimed at' overlay layer +#define TOTAL_LAYERS 38 //CHOMPStation edit. <---- KEEP THIS UPDATED, should always equal the highest number here, used to initialize a list. ////////////////////////////////// /mob/living/carbon/human @@ -1109,13 +1110,20 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() return remove_layer(WING_LAYER) + remove_layer(WING_LOWER_LAYER) - var/image/wing_image = get_wing_image() + var/image/wing_image = get_wing_image(FALSE) if(wing_image) wing_image.layer = BODY_LAYER+WING_LAYER overlays_standing[WING_LAYER] = wing_image + if(wing_style && wing_style.multi_dir) + wing_image = get_wing_image(TRUE) + if(wing_image) + wing_image.layer = BODY_LAYER+WING_LOWER_LAYER + overlays_standing[WING_LOWER_LAYER] = wing_image apply_layer(WING_LAYER) + apply_layer(WING_LOWER_LAYER) /mob/living/carbon/human/update_modifier_visuals() if(QDESTROYING(src)) @@ -1182,7 +1190,7 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() overlays_standing[SURGERY_LAYER] = total apply_layer(SURGERY_LAYER) -/mob/living/carbon/human/proc/get_wing_image() +/mob/living/carbon/human/proc/get_wing_image(var/under_layer) if(QDESTROYING(src)) return @@ -1196,7 +1204,10 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() //If you have custom wings selected if(wing_style && !(wear_suit && wear_suit.flags_inv & HIDETAIL) && !wings_hidden) //VOREStation Edit - var/icon/wing_s = new/icon("icon" = wing_style.icon, "icon_state" = flapping && wing_style.ani_state ? wing_style.ani_state : wing_style.icon_state) + var/wing_state = (flapping && wing_style.ani_state) ? wing_style.ani_state : wing_style.icon_state + if(wing_style.multi_dir) + wing_state += "_[under_layer ? "back" : "front"]" + var/icon/wing_s = new/icon("icon" = wing_style.icon, "icon_state" = wing_state) if(wing_style.do_colouration) wing_s.Blend(rgb(src.r_wing, src.g_wing, src.b_wing), wing_style.color_blend_mode) if(wing_style.extra_overlay) @@ -1218,6 +1229,7 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() var/image/working = image(wing_s) if(wing_style.em_block) working.overlays += em_block_image_generic(working) // Leaving this as overlays += + working.pixel_x -= wing_style.wing_offset return working /mob/living/carbon/human/proc/get_ears_overlay() @@ -1249,13 +1261,13 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() /mob/living/carbon/human/proc/get_tail_image() //If you are FBP with tail style and didn't set a custom one var/datum/robolimb/model = isSynthetic() - if(istype(model) && model.includes_tail && !tail_style) + if(istype(model) && model.includes_tail && !tail_style && !tail_hidden) var/icon/tail_s = new/icon("icon" = synthetic.icon, "icon_state" = "tail") tail_s.Blend(rgb(src.r_skin, src.g_skin, src.b_skin), species.color_mult ? ICON_MULTIPLY : ICON_ADD) return image(tail_s) //If you have a custom tail selected - if(tail_style && !(wear_suit && wear_suit.flags_inv & HIDETAIL && !istaurtail(tail_style))) + if(tail_style && !(wear_suit && wear_suit.flags_inv & HIDETAIL && !istaurtail(tail_style)) && !tail_hidden) var/icon/tail_s = new/icon("icon" = tail_style.icon, "icon_state" = (tail_style.can_loaf && resting) ? "[tail_style.icon_state]_loaf" : (wagging && tail_style.ani_state ? tail_style.ani_state : tail_style.icon_state)) // VOREStation Edit: Taur Loafing if(tail_style.can_loaf && !is_shifted) pixel_y = (resting) ? -tail_style.loaf_offset : 0 //move player down, then taur up, to fit the overlays correctly // VOREStation Edit: Taur diff --git a/code/modules/mob/living/carbon/lick_wounds.dm b/code/modules/mob/living/carbon/lick_wounds.dm index 1bc94d0d98..8ec651d05b 100644 --- a/code/modules/mob/living/carbon/lick_wounds.dm +++ b/code/modules/mob/living/carbon/lick_wounds.dm @@ -1,12 +1,11 @@ -/mob/living/carbon/human/proc/lick_wounds(var/mob/living/carbon/M as mob in range(1)) // Allows the user to lick themselves. Given how rarely this trait is used, I don't see an issue with a slight buff. +/mob/living/carbon/human/proc/lick_wounds(var/mob/living/carbon/M as mob in view(1)) // Allows the user to lick themselves. Given how rarely this trait is used, I don't see an issue with a slight buff. set name = "Lick Wounds" set category = "Abilities" set desc = "Disinfect and heal small wounds with your saliva." - //CHOMPEdit Start - No longer usable while incapacitated - if(src.incapacitated()) + if(stat || paralysis || weakened || stunned) + to_chat(src, "You can't do that in your current state.") return - //CHOMPEdit End if(nutrition < 50) to_chat(src, "You need more energy to produce antiseptic enzymes. Eat something and try again.") diff --git a/code/modules/mob/living/silicon/pai/software_modules.dm b/code/modules/mob/living/silicon/pai/software_modules.dm index 9cc6d885d3..ea182ad224 100644 --- a/code/modules/mob/living/silicon/pai/software_modules.dm +++ b/code/modules/mob/living/silicon/pai/software_modules.dm @@ -421,6 +421,7 @@ user.add_language(LANGUAGE_ALAI) user.add_language(LANGUAGE_PROMETHEAN) user.add_language(LANGUAGE_GIBBERISH) + user.add_language("Mouse") user.add_language("Animal") user.add_language("Teppi") else @@ -448,6 +449,7 @@ user.remove_language(LANGUAGE_ALAI) user.remove_language(LANGUAGE_PROMETHEAN) user.remove_language(LANGUAGE_GIBBERISH) + user.remove_language("Mouse") user.remove_language("Animal") user.remove_language("Teppi") diff --git a/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm b/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm index 88afeae452..f6f37fa210 100644 --- a/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm +++ b/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm @@ -219,7 +219,7 @@ /obj/item/weapon/reagent_containers/borghypo/hound/trauma name = "Hound hypospray" desc = "An advanced chemical synthesizer and injection system utilizing carrier's reserves." - reagent_ids = list("inaprovaline", "dexalin", "bicaridine", "anti_toxin", "spaceacillin", "paracetamol") + reagent_ids = list("tricordrazine", "inaprovaline", "oxycodone", "dexalin" ,"spaceacillin") //Tongue stuff @@ -409,24 +409,33 @@ var/datum/matter_synth/glass = null /obj/item/device/lightreplacer/dogborg/attack_self(mob/user)//Recharger refill is so last season. Now we recycle without magic! - if(uses >= max_uses) - to_chat(user, "[src.name] is full.") + + var/choice = tgui_alert(user, "Do you wish to check the reserves or change the color?", "Selection List", list("Reserves", "Color")) + if(choice == "Color") + var/new_color = input(usr, "Choose a color to set the light to! (Default is [LIGHT_COLOR_INCANDESCENT_TUBE])", "", selected_color) as color|null + if(new_color) + selected_color = new_color + to_chat(user, "The light color has been changed.") return - if(uses < max_uses && cooldown == 0) - if(glass.energy < 125) - to_chat(user, "Insufficient material reserves.") - return - to_chat(user, "It has [uses] lights remaining. Attempting to fabricate a replacement. Please stand still.") - cooldown = 1 - if(do_after(user, 50)) - glass.use_charge(125) - add_uses(1) - cooldown = 0 - else - cooldown = 0 else - to_chat(user, "It has [uses] lights remaining.") - return + if(uses >= max_uses) + to_chat(user, "[src.name] is full.") + return + if(uses < max_uses && cooldown == 0) + if(glass.energy < 125) + to_chat(user, "Insufficient material reserves.") + return + to_chat(user, "It has [uses] lights remaining. Attempting to fabricate a replacement. Please stand still.") + cooldown = 1 + if(do_after(user, 50)) + glass.use_charge(125) + add_uses(1) + cooldown = 0 + else + cooldown = 0 + else + to_chat(user, "It has [uses] lights remaining.") + return //Pounce stuff for K-9 /obj/item/weapon/dogborg/pounce diff --git a/code/modules/mob/living/silicon/robot/drone/drone_items.dm b/code/modules/mob/living/silicon/robot/drone/drone_items.dm index f36e2067ee..a5da95cd6a 100644 --- a/code/modules/mob/living/silicon/robot/drone/drone_items.dm +++ b/code/modules/mob/living/silicon/robot/drone/drone_items.dm @@ -100,7 +100,8 @@ /obj/item/weapon/reagent_containers/pill, /obj/item/weapon/reagent_containers/blood, /obj/item/device/nif, //Chompedit Add Nif handling - /obj/item/stack/material/phoron + /obj/item/stack/material/phoron, + /obj/item/weapon/disk/body_record //Vorestation Edit: this lets you get an empty sleeve or help someone else ) /obj/item/weapon/gripper/research //A general usage gripper, used for toxins/robotics/xenobio/etc diff --git a/code/modules/mob/living/silicon/robot/robot_modules/station.dm b/code/modules/mob/living/silicon/robot/robot_modules/station.dm index fc80a0b0c3..4babec0baa 100644 --- a/code/modules/mob/living/silicon/robot/robot_modules/station.dm +++ b/code/modules/mob/living/silicon/robot/robot_modules/station.dm @@ -279,14 +279,19 @@ var/global/list/robot_modules = list( var/obj/item/stack/nanopaste/N = new /obj/item/stack/nanopaste(src) var/obj/item/stack/medical/advanced/bruise_pack/B = new /obj/item/stack/medical/advanced/bruise_pack(src) + var/obj/item/stack/medical/advanced/ointment/O = new /obj/item/stack/medical/advanced/ointment(src) //VoreStation edit: we have burn surgeries so they should be able to do them N.uses_charge = 1 N.charge_costs = list(1000) N.synths = list(medicine) B.uses_charge = 1 B.charge_costs = list(1000) B.synths = list(medicine) + O.uses_charge = 1 + O.charge_costs = list(1000) + O.synths = list(medicine) src.modules += N src.modules += B + src.modules += O /obj/item/weapon/robot_module/robot/medical/surgeon/respawn_consumable(var/mob/living/silicon/robot/R, var/amount) diff --git a/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm b/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm index 6acc64835c..128bffbc09 100644 --- a/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm +++ b/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm @@ -304,10 +304,12 @@ src.modules += new /obj/item/device/healthanalyzer(src) // See who's hurt specificially. src.modules += new /obj/item/borg/sight/hud/med(src) //See who's hurt generally. src.modules += new /obj/item/weapon/reagent_containers/syringe(src) //In case the chemist is nice! - src.modules += new /obj/item/weapon/reagent_containers/glass/beaker/large(src)//For holding the chemicals when the chemist is nice + src.modules += new /obj/item/weapon/reagent_containers/glass/beaker/large(src)//For holding the chemicals when the chemist is nice, made it the large variant in 2022 src.modules += new /obj/item/device/sleevemate(src) //Lets them scan people. src.modules += new /obj/item/weapon/shockpaddles/robot/hound(src) //Paws of life src.modules += new /obj/item/weapon/inflatable_dispenser/robot(src) //This is kinda important for rescuing people without making it worse for everyone + src.modules += new /obj/item/weapon/gripper/medical(src) //Let them do literally anything in medbay other than patch external damage and lick people + src.modules += new /obj/item/weapon/reagent_containers/dropper/industrial(src) //dropper is nice to have for so much actually src.emag = new /obj/item/weapon/dogborg/pounce(src) //Pounce src.modules += new /obj/item/weapon/gripper/medical(src)//Now you can set up cyro or make peri. //CHOMPEdit @@ -315,10 +317,15 @@ synths += medicine var/obj/item/stack/medical/advanced/clotting/C = new (src) + var/obj/item/stack/medical/splint/S = new /obj/item/stack/medical/splint(src) C.uses_charge = 1 - C.charge_costs = list(1000) + C.charge_costs = list(5000) C.synths = list(medicine) + S.uses_charge = 1 + S.charge_costs = list(1000) + S.synths = list(medicine) src.modules += C + src.modules += S var/datum/matter_synth/water = new /datum/matter_synth(500) water.name = "Water reserves" @@ -338,24 +345,19 @@ var/obj/item/device/dogborg/sleeper/B = new /obj/item/device/dogborg/sleeper(src) //So they can nom people and heal them B.water = water src.modules += B - + + //CHOMPEdit Start - Give back the ATK/ABP since we don't have the surgeryhound var/obj/item/stack/medical/advanced/ointment/O = new /obj/item/stack/medical/advanced/ointment(src) var/obj/item/stack/medical/advanced/bruise_pack/P = new /obj/item/stack/medical/advanced/bruise_pack(src) - var/obj/item/stack/medical/splint/S = new /obj/item/stack/medical/splint(src) O.uses_charge = 1 O.charge_costs = list(1000) O.synths = list(medicine) P.uses_charge = 1 P.charge_costs = list(1000) P.synths = list(medicine) - S.uses_charge = 1 - S.charge_costs = list(1000) - S.synths = list(medicine) src.modules += O src.modules += P - src.modules += S - -// End YW Edit + //CHOMPEdit End R.icon = 'icons/mob/widerobot_vr.dmi' @@ -389,12 +391,14 @@ can_be_pushed = 0 sprites = list( "Traumahound" = "traumavale", + "Drake" = "draketrauma" ) /obj/item/weapon/robot_module/robot/medical/trauma/New(var/mob/living/silicon/robot/R) src.modules += new /obj/item/device/healthanalyzer(src) src.modules += new /obj/item/weapon/dogborg/jaws/small(src) src.modules += new /obj/item/device/dogborg/boop_module(src) + src.modules += new /obj/item/weapon/autopsy_scanner(src) src.modules += new /obj/item/weapon/surgical/scalpel/cyborg(src) src.modules += new /obj/item/weapon/surgical/hemostat/cyborg(src) src.modules += new /obj/item/weapon/surgical/retractor/cyborg(src) @@ -403,14 +407,14 @@ src.modules += new /obj/item/weapon/surgical/FixOVein/cyborg(src) src.modules += new /obj/item/weapon/surgical/bonesetter/cyborg(src) src.modules += new /obj/item/weapon/surgical/circular_saw/cyborg(src) + src.modules += new /obj/item/weapon/surgical/surgicaldrill/cyborg(src) + src.modules += new /obj/item/weapon/surgical/bioregen/cyborg(src) //let them succ src.modules += new /obj/item/weapon/gripper/no_use/organ(src) src.modules += new /obj/item/weapon/gripper/medical(src) - src.modules += new /obj/item/weapon/shockpaddles/robot(src) + src.modules += new /obj/item/weapon/shockpaddles/robot/hound(src) //Paws of life src.modules += new /obj/item/weapon/reagent_containers/dropper(src) // Allows surgeon borg to fix necrosis src.modules += new /obj/item/weapon/reagent_containers/syringe(src) - src.emag = new /obj/item/weapon/reagent_containers/spray(src) - src.emag.reagents.add_reagent("pacid", 250) - src.emag.name = "Polyacid spray" + src.emag = new /obj/item/weapon/dogborg/pounce(src) //Pounce, also, lets not give them polyacid spray var/datum/matter_synth/water = new /datum/matter_synth(500) water.name = "Water reserves" @@ -422,7 +426,7 @@ T.water = water src.modules += T - var/obj/item/weapon/reagent_containers/borghypo/hound/H = new /obj/item/weapon/reagent_containers/borghypo/hound/trauma(src) + var/obj/item/weapon/reagent_containers/borghypo/hound/trauma/H = new /obj/item/weapon/reagent_containers/borghypo/hound/trauma(src) //surgeon chems H.water = water src.modules += H @@ -430,6 +434,25 @@ B.water = water src.modules += B + var/datum/matter_synth/medicine = new /datum/matter_synth/medicine(10000) //this is so they can do brute/burn surgeries and fix assisted/prosthetic organs + synths += medicine + + var/obj/item/stack/nanopaste/N = new /obj/item/stack/nanopaste(src) + var/obj/item/stack/medical/advanced/bruise_pack/S = new /obj/item/stack/medical/advanced/bruise_pack(src) + var/obj/item/stack/medical/advanced/ointment/O = new /obj/item/stack/medical/advanced/ointment(src) + N.uses_charge = 1 + N.charge_costs = list(1000) + N.synths = list(medicine) + S.uses_charge = 1 + S.charge_costs = list(1000) + S.synths = list(medicine) + O.uses_charge = 1 + O.charge_costs = list(1000) + O.synths = list(medicine) + src.modules += N + src.modules += S + src.modules += O + R.icon = 'icons/mob/widerobot_trauma_vr.dmi' R.wideborg_dept = 'icons/mob/widerobot_trauma_vr.dmi' R.hands.icon = 'icons/mob/screen1_robot_vr.dmi' @@ -626,9 +649,15 @@ //Added a circuit gripper src.modules += new /obj/item/weapon/gripper/circuit(src) src.modules += new /obj/item/weapon/gripper/no_use/organ/robotics(src) + //src.modules += new /obj/item/weapon/surgical/scalpel/cyborg(src) //these are on the normal one, but do not appear to have a purpose other than borging + //src.modules += new /obj/item/weapon/surgical/circular_saw/cyborg(src) //so I am leaving them here but commented out because robotics no do the borging w/o medical + src.modules += new /obj/item/weapon/portable_destructive_analyzer(src) //destructive analyzer option for pref respect while also being able to do job src.modules += new /obj/item/weapon/gripper/no_use/mech(src) - src.modules += new /obj/item/weapon/melee/baton/slime/robot(src) //Chompedit this was missing for some strange reason. - src.modules += new /obj/item/weapon/gun/energy/taser/xeno/robot(src) //Chompedit This also. + src.modules += new /obj/item/weapon/shockpaddles/robot/jumper(src) //unkilling synths may be important actually + src.modules += new /obj/item/weapon/melee/baton/slime/robot(src) //save the xenobio from themselves + src.modules += new /obj/item/weapon/gun/energy/taser/xeno/robot(src) //save the xenobio from themselves from a distance + src.modules += new /obj/item/device/xenoarch_multi_tool(src) //go find fancy rock + src.modules += new /obj/item/weapon/pickaxe/excavationdrill(src) //go get fancy rock src.emag = new /obj/item/weapon/hand_tele(src) var/datum/matter_synth/water = new /datum/matter_synth(500) diff --git a/code/modules/mob/living/simple_mob/simple_hud.dm b/code/modules/mob/living/simple_mob/simple_hud.dm index 3d186cc55f..b546774281 100644 --- a/code/modules/mob/living/simple_mob/simple_hud.dm +++ b/code/modules/mob/living/simple_mob/simple_hud.dm @@ -194,7 +194,7 @@ //Hand slots themselves inv_box = new /obj/screen/inventory/hand() - inv_box.hud = src + inv_box.hud = HUD inv_box.name = "r_hand" inv_box.icon = ui_style inv_box.icon_state = "r_hand_inactive" @@ -209,7 +209,7 @@ slot_info["[slot_r_hand]"] = inv_box.screen_loc inv_box = new /obj/screen/inventory/hand() - inv_box.hud = src + inv_box.hud = HUD inv_box.name = "l_hand" inv_box.icon = ui_style inv_box.icon_state = "l_hand_inactive" diff --git a/code/modules/mob/living/simple_mob/simple_mob_vr.dm b/code/modules/mob/living/simple_mob/simple_mob_vr.dm index 8bf15cea64..c11e9e183a 100644 --- a/code/modules/mob/living/simple_mob/simple_mob_vr.dm +++ b/code/modules/mob/living/simple_mob/simple_mob_vr.dm @@ -91,6 +91,7 @@ voremob_awake = TRUE update_fullness() if(!vore_fullness) + update_transform() return 0 else if((stat == CONSCIOUS) && (!icon_rest || !resting || !incapacitated(INCAPACITATION_DISABLED)) && (vore_icons & SA_ICON_LIVING)) icon_state = "[icon_living]-[vore_fullness]" @@ -377,7 +378,7 @@ if(buckle_mob(M)) visible_message("[M] starts riding [name]!") -/mob/living/simple_mob/handle_message_mode(message_mode, message, verb, speaking, used_radios, alt_name) +/mob/living/simple_mob/handle_message_mode(message_mode, message, verb, used_radios, speaking, alt_name) //CHOMPEdit - This whole proc tbh if(message_mode) if(message_mode == "intercom") diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/catslug.dm b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/catslug.dm index 76ede95627..48ed60e0ab 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/catslug.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/catslug.dm @@ -51,7 +51,7 @@ say_list_type = /datum/say_list/catslug player_msg = "You have escaped the foul weather, into this much more pleasant place. You are an intelligent creature capable of more than most think. You can pick up and use many things, and even carry some of them with you into the vents, which you can use to move around quickly. You're quiet and capable, you speak with your hands and your deeds!
- - - - -
Keep in mind, your goal should generally be to survive. You're expected to follow the same rules as everyone else, so don't go self antagging without permission from the staff team, but you are able and capable of defending yourself from those who would attack you for no reason." - has_langs = list("Sign Language") + has_langs = list(LANGUAGE_SIGN) //var/picked_color = FALSE //CHOMPEdit - now on simplemob. diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/teppi.dm b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/teppi.dm index 0660735db4..24c6ce1ded 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/teppi.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/teppi.dm @@ -128,7 +128,7 @@ GLOBAL_VAR_INIT(teppi_count, 0) // How mant teppi DO we have? mob_size = MOB_LARGE - has_langs = list("Teppi") + has_langs = list(LANGUAGE_TEPPI) say_list_type = /datum/say_list/teppi player_msg = "Teppi are large omnivorous quadrupeds. You have four toes on each paw, a long, strong tail, and are quite tough and powerful. You’re a lot more intimidating than you are actually harmful though. Your kind are ordinarily rather passive, only really rising to violence when someone does violence to you or others like you. You’re not stupid though, you can commiunicate with others of your kind, and form bonds with those who are kind to you, be they Teppi or otherwise.
- - - - -
While you may have access to galactic common, this is purely meant for making it so you can understand people in an OOC manner, for facilitating roleplay. You almost certainly should not be speaking to people or roleplaying as though you understand everything everyone says perfectly, but it's not unreasonable to be able to intuit intent and such through people's tones when they speak. Teppi are kind of smart, but they are animals, and should be roleplayed as such. ADDITIONALLY, you have the ability to produce offspring if you're well fed enough every once in a while, and the ability to disable this from happening to you. These verbs exist for to preserve the mechanical functionality of the mob you are playing. You should be aware of your surroundings when you use this verb, and NEVER use it to prefbreak or be disruptive. If in doubt, don't use it. Also, to note, AI Teppi will never initiate breeding with player Teppi." loot_list = list(/obj/item/weapon/bone/horn = 100) diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/chicken.dm b/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/chicken.dm index a8ec4d3894..95a6eea482 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/chicken.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/chicken.dm @@ -22,7 +22,7 @@ GLOBAL_VAR_INIT(chicken_count, 0) // How mant chickens DO we have? organ_names = /decl/mob_organ_names/chicken - has_langs = list("Bird") + has_langs = list(LANGUAGE_ANIMAL) say_list_type = /datum/say_list/chicken @@ -122,7 +122,7 @@ GLOBAL_VAR_INIT(chicken_count, 0) // How mant chickens DO we have? response_harm = "kicks" attacktext = list("kicked") - has_langs = list("Bird") + has_langs = list(LANGUAGE_ANIMAL) say_list_type = /datum/say_list/chick diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/nurse.dm b/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/nurse.dm index fb34c4d73f..6b37550c82 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/nurse.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/nurse.dm @@ -141,7 +141,8 @@ if(large_cocoon) C.icon_state = pick("cocoon_large1","cocoon_large2","cocoon_large3") - ai_holder.remove_target() + if(ai_holder) + ai_holder.remove_target() return TRUE diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm b/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm index 1015f8653d..88908ba29d 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm @@ -32,7 +32,7 @@ minbodytemp = 223 //Below -50 Degrees Celcius maxbodytemp = 323 //Above 50 Degrees Celcius - has_langs = list("Mouse") + has_langs = list(LANGUAGE_MOUSE) holder_type = /obj/item/weapon/holder/mouse meat_amount = 1 diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/passive/penguin.dm b/code/modules/mob/living/simple_mob/subtypes/animal/passive/penguin.dm index 5616b4b524..dd312988ec 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/passive/penguin.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/passive/penguin.dm @@ -24,7 +24,7 @@ melee_damage_upper = 15 attacktext = list("pecked") - has_langs = list("Bird") + has_langs = list(LANGUAGE_ANIMAL) /mob/living/simple_mob/animal/passive/penguin/tux name = "Tux" diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/pets/bird.dm b/code/modules/mob/living/simple_mob/subtypes/animal/pets/bird.dm index d7c2bf37db..af1c72ca54 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/pets/bird.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/pets/bird.dm @@ -28,7 +28,7 @@ attacktext = list("clawed", "pecked") speak_emote = list("chirps", "caws") - has_langs = list("Bird") + has_langs = list(LANGUAGE_ANIMAL) response_help = "pets" response_disarm = "gently moves aside" response_harm = "swats" diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/pets/cat.dm b/code/modules/mob/living/simple_mob/subtypes/animal/pets/cat.dm index c29ce4d137..241d00714f 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/pets/cat.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/pets/cat.dm @@ -46,7 +46,7 @@ var/list/_cat_default_emotes = list( holder_type = /obj/item/weapon/holder/cat mob_size = MOB_SMALL - has_langs = list("Cat") + has_langs = list(LANGUAGE_ANIMAL) var/mob/living/friend = null // Our best pal, who we'll follow. Meow. var/named = FALSE //have I been named yet? diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/pets/dog.dm b/code/modules/mob/living/simple_mob/subtypes/animal/pets/dog.dm index 2b8e67b513..33acad33df 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/pets/dog.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/pets/dog.dm @@ -17,7 +17,7 @@ mob_size = MOB_SMALL - has_langs = list("Dog") + has_langs = list(LANGUAGE_ANIMAL) say_list_type = /datum/say_list/dog diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/pets/fennec.dm b/code/modules/mob/living/simple_mob/subtypes/animal/pets/fennec.dm index 0408c7ff27..249af03a4e 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/pets/fennec.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/pets/fennec.dm @@ -15,7 +15,7 @@ holder_type = /obj/item/weapon/holder/fennec mob_size = MOB_SMALL - has_langs = list("Cat, Dog") //they're similar, why not. + has_langs = list(LANGUAGE_ANIMAL) /mob/living/simple_mob/animal/passive/fennec/faux name = "faux" diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/pets/parrot.dm b/code/modules/mob/living/simple_mob/subtypes/animal/pets/parrot.dm index d64810ff1d..c03327b5bd 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/pets/parrot.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/pets/parrot.dm @@ -3,7 +3,7 @@ name = "parrot" description_info = "You can give it a headset by clicking on it with a headset. \ To remove it, click the bird while on grab intent." - has_langs = list("Galactic Common", "Bird") + has_langs = list(LANGUAGE_GALCOM, LANGUAGE_ANIMAL) ai_holder_type = /datum/ai_holder/simple_mob/passive/parrot diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/sif/grafadreka.dm b/code/modules/mob/living/simple_mob/subtypes/animal/sif/grafadreka.dm new file mode 100644 index 0000000000..8772a061d7 --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/animal/sif/grafadreka.dm @@ -0,0 +1,633 @@ +/datum/modifier/sifsap_salve + name = "Sifsap Salve" + desc = "Your wounds have been salved with Sivian sap." + mob_overlay_state = "cyan_sparkles" + stacks = MODIFIER_STACK_FORBID + on_created_text = "The glowing sap seethes and bubbles in your wounds, tingling and stinging." + on_expired_text = "The last of the sap in your wounds fizzles away." + +/datum/modifier/sifsap_salve/tick() + + if(holder.stat == DEAD || holder.isSynthetic()) + expire() + + if(istype(holder, /mob/living/simple_mob/animal/sif)) + + var/mob/living/simple_mob/animal/sif/critter = holder + if(critter.health >= (critter.getMaxHealth() * critter.sap_heal_threshold)) + return + + if(holder.resting) + if(istype(holder.loc, /obj/structure/animal_den)) + holder.adjustBruteLoss(-3) + holder.adjustFireLoss(-3) + holder.adjustToxLoss(-2) + else + holder.adjustBruteLoss(-2) + holder.adjustFireLoss(-2) + holder.adjustToxLoss(-1) + else + holder.adjustBruteLoss(-1) + holder.adjustFireLoss(-1) + +/obj/item/projectile/drake_spit + name = "drake spit" + icon_state = "ice_1" + damage = 0 + embed_chance = 0 + damage_type = BRUTE + muzzle_type = null + hud_state = "monkey" + combustion = FALSE + stun = 3 + weaken = 3 + eyeblur = 5 + fire_sound = 'sound/effects/splat.ogg' + +/obj/item/projectile/drake_spit/weak + stun = 0 + weaken = 0 + eyeblur = 2 + +/datum/category_item/catalogue/fauna/grafadreka + name = "Sivian Fauna - Grafadreka" + desc = {"Classification: S tesca pabulator +

+The reclusive grafadreka (Icelandic, lit. 'digging dragon'), also known as the snow drake, is a large reptillian pack predator similar in size and morphology to old Earth hyenas. They commonly dig shallow dens in dirt, snow or foliage, sometimes using them for concealment prior to an ambush. Biological cousins to the elusive kururak, they have heavy, low-slung bodies and powerful jaws suited to hunting land prey rather than fishing. Colonization and subsequent expansion have displaced many populations from their tundral territories into colder areas; as a result, their diet of Sivian prey animals has pivoted to a diet of giant spider meat. +

+Grafadrekas are capable of exerting bite pressures in excess of 900 PSI, which allows them to crack bones or carapace when scavenging for food. While they share the hypercarnivorous metabolism of their cousins, they have developed a symbiotic relationship with the bacteria responsible for the bioluminescence of Sivian trees. This assists with digesting plant matter, and gives their pelts a distinctive and eerie glow. +

+They have been observed to occasionally attack and kill colonists, generally when conditions are too poor to hunt their usual prey. Despite this, and despite their disposition being generally skittish and avoidant of colonists, some Sivian communities hold that they have been observed to guide or protect lost travellers. +

+Field studies suggest analytical abilities on par with some species of cepholapods, but their symbiotic physiology rapidly fails in captivity, making laboratory testing difficult. Their inability to make use of tools or form wider social groups beyond a handful of individuals has been hypothesised to prevent the expression of more complex social behaviors."} + value = CATALOGUER_REWARD_HARD + +/decl/mob_organ_names/grafadreka + hit_zones = list( + "head", + "chest", + "left foreleg", + "right foreleg", + "left hind leg", + "right hind leg", + "face spines", + "body spines", + "tail spines", + "tail" + ) + +/decl/emote/audible/drake_howl + key = "dhowl" + emote_message_3p = "lifts USER_THEIR head up and gives an eerie howl." + emote_sound = 'sound/effects/drakehowl_close.ogg' + broadcast_sound ='sound/effects/drakehowl_far.ogg' + emote_cooldown = 20 SECONDS + broadcast_distance = 90 + +/decl/emote/audible/drake_howl/broadcast_emote_to(var/send_sound, var/mob/target, var/direction) + if((. = ..())) + to_chat(target, SPAN_NOTICE("You hear an eerie howl from somewhere to the [dir2text(direction)].")) + +/mob/living/simple_mob/animal/sif/grafadreka/get_available_emotes() + if(!is_baby) + return global._default_mob_emotes | /decl/emote/audible/drake_howl + return global._default_mob_emotes + +// Overriding this to handle sitting. +/mob/living/simple_mob/animal/sif/grafadreka/lay_down() + . = ..() + if(!resting && sitting) + sitting = FALSE + update_icon() + +/mob/living/simple_mob/animal/sif/grafadreka/verb/sit_down() + set name = "Sit Down" + set category = "IC" + + if(sitting) + resting = FALSE + sitting = FALSE + else + resting = TRUE + sitting = TRUE + + to_chat(src, SPAN_NOTICE("You are now [sitting ? "sitting" : "getting up"].")) + update_canmove() + update_icon() + +/mob/living/simple_mob/animal/sif/grafadreka + name = "grafadreka" + desc = "A large, sleek snow drake with heavy claws, powerful jaws and many pale spines along its body." + player_msg = "You are a large Sivian pack predator in symbiosis with the local bioluminescent bacteria. You can eat glowing \ + tree fruit to fuel your ranged spitting attack and poisonous bite (on harm intent), as well as healing saliva \ + (on help intent).
There are humans moving through your territory; whether you help them get home safely, or treat them as a snack, \ + is up to you." + color = "#608894" + icon = 'icons/mob/drake_adult.dmi' + catalogue_data = list(/datum/category_item/catalogue/fauna/grafadreka) + icon_state = "doggo" + icon_living = "doggo" + icon_dead = "doggo_lying" + icon_rest = "doggo_lying" + projectileverb = "spits" + friendly = list("headbutts", "grooms", "play-bites", "rubs against") + bitesize = 10 // chomp + gender = NEUTER + + has_langs = list("Drake") + + see_in_dark = 8 // on par with Taj + + tt_desc = "S tesca pabulator" + faction = "grafadreka" + + mob_size = MOB_LARGE + mob_bump_flag = SIMPLE_ANIMAL + mob_swap_flags = SIMPLE_ANIMAL + mob_push_flags = SIMPLE_ANIMAL + + maxHealth = 150 + health = 150 + movement_cooldown = 2 + base_attack_cooldown = 1 SECOND + + organ_names = /decl/mob_organ_names/grafadreka + say_list_type = /datum/say_list/grafadreka + ai_holder_type = /datum/ai_holder/simple_mob/intentional/grafadreka + + scavenger = TRUE + burrower = TRUE + + projectilesound = 'sound/effects/splat.ogg' + projectiletype = /obj/item/projectile/drake_spit + + // Claw attacks. + attack_sharp = TRUE + melee_damage_lower = 8 + melee_damage_upper = 18 + attack_armor_pen = 15 + + attack_sound = 'sound/weapons/slice.ogg' + + tame_items = list( + /obj/item/reagent_containers/food/snacks/siffruit = 20, + /obj/item/reagent_containers/food/snacks/grown/sif/sifpod = 10, + /obj/item/reagent_containers/food/snacks/xenomeat/spidermeat = 20, + /obj/item/reagent_containers/food/snacks/meat = 10 + ) + + // Attack strings for swapping. + attacktext = null + var/static/list/claw_attacktext = list("slashed", "clawed", "swiped", "gouged") + var/static/list/bite_attacktext = list("savaged", "bitten", "mauled") + + // Bite attacks. + var/bite_melee_damage_lower = 30 + var/bite_melee_damage_upper = 40 + var/bite_attack_armor_pen = 60 + var/const/bite_attack_sound = 'sound/weapons/bite.ogg' + + // Used to avoid setting vars every single attack. + var/attacking_with_claws = TRUE + + // Set during initialize and used to generate overlays. + var/tmp/current_icon_state // used to track our 'actual' icon state due to overlay nonsense in update_icon + var/tmp/fur_colour + var/tmp/claw_colour + var/tmp/glow_colour + var/tmp/base_colour + var/tmp/eye_colour + + var/offset_compiled_icon = -16 + var/is_baby = FALSE + var/sitting = FALSE + var/next_spit = 0 + var/spit_cooldown = 8 SECONDS + var/next_leader_check = 0 + var/charisma = 0 // A score used to determine pack leader. + var/stored_sap = 0 + var/max_stored_sap = 60 + var/attacked_by_neutral = FALSE + + var/list/original_armor + +var/global/list/wounds_being_tended_by_drakes = list() +/mob/living/simple_mob/animal/sif/grafadreka/proc/can_tend_wounds(var/mob/living/friend) + + // We can't heal robots. + if(friend.isSynthetic()) + return FALSE + + // Check if someone else is looking after them already. + if(global.wounds_being_tended_by_drakes["\ref[friend]"] > world.time) + return FALSE + + // Humans need to have a bleeding external organ to qualify. + if(ishuman(friend)) + var/mob/living/carbon/human/H = friend + for(var/obj/item/organ/external/E in H.bad_external_organs) + if(E.status & ORGAN_BLEEDING) + return TRUE + return FALSE + + // Sif animals need to be able to regenerate past their current HP value. + if(istype(friend, /mob/living/simple_mob/animal/sif)) + var/mob/living/simple_mob/animal/sif/critter = friend + return critter.health < (critter.getMaxHealth() * critter.sap_heal_threshold) + + // Other animals just need to be injured. + return (friend.health < friend.maxHealth) + +/mob/living/simple_mob/animal/sif/grafadreka/Initialize() + + charisma = rand(5, 15) + stored_sap = rand(20, 30) + nutrition = rand(400,500) + + if(gender == NEUTER) + gender = pick(MALE, FEMALE) + attacktext = claw_attacktext.Copy() + + setup_colours() + create_reagents(50) + + . = ..() + + original_armor = armor + update_icon() + +/mob/living/simple_mob/animal/sif/grafadreka/examine(var/mob/living/user) + . = ..() + if(istype(user, /mob/living/simple_mob/animal/sif/grafadreka) || isobserver(user)) + var/datum/gender/G = gender_datums[get_visible_gender()] + if(stored_sap >= 20) + . += SPAN_NOTICE("[G.His] sap reserves are high.") + else if(stored_sap >= 10) + . += SPAN_WARNING("[G.His] sap reserves are running low.") + else + . += SPAN_DANGER("[G.His] sap reserves are depleted.") + +/mob/living/simple_mob/animal/sif/grafadreka/can_projectile_attack(var/atom/A) + if(a_intent != I_HURT || world.time < next_spit) + return FALSE + if(!has_sap(2)) + to_chat(src, SPAN_WARNING("You have no sap to spit!")) + return FALSE + return ..() + +// Checking this in the proc itself as AI doesn't seem to care about ranged attack cooldowns. +/mob/living/simple_mob/animal/sif/grafadreka/shoot_target(atom/A) + if(world.time < next_spit || !has_sap(2)) + return FALSE + . = ..() + if(.) + next_spit = world.time + spit_cooldown + setMoveCooldown(1 SECOND) + spend_sap(2) + +/mob/living/simple_mob/animal/sif/grafadreka/get_dietary_food_modifier(var/datum/reagent/nutriment/food) + if(food.allergen_type & ALLERGEN_MEAT) + return ..() + return 0.25 // Quarter nutrition from non-meat. + +/mob/living/simple_mob/animal/sif/grafadreka/handle_reagent_transfer(var/datum/reagents/holder, var/amount = 1, var/chem_type = CHEM_BLOOD, var/multiplier = 1, var/copy = 0) + return holder.trans_to_holder(reagents, amount, multiplier, copy) + +/mob/living/simple_mob/animal/sif/grafadreka/Life() + . = ..() + + if(stat == CONSCIOUS) + + // Don't make clientless drakes lose nutrition or they'll all go feral. + if(!resting && client) + remove_nutrition(0.3) + + // Very slowly regenerate enough sap to defend ourselves. spit is 2 sap, + // spit cooldown is 8s, life is 2s, so this is one free spit per 12 seconds. + if(stored_sap < 10) + add_sap(0.35) + + // Process food and sap chems. + if(reagents?.total_volume) + for(var/datum/reagent/chem in reagents.reagent_list) + var/removed = clamp(chem.ingest_met, REM, chem.volume) + chem.affect_animal(src, removed) + reagents.remove_reagent(chem.id, removed) + +/mob/living/simple_mob/animal/sif/grafadreka/proc/has_sap(var/amt) + return stored_sap >= amt + +/mob/living/simple_mob/animal/sif/grafadreka/proc/add_sap(var/amt) + stored_sap = clamp(round(stored_sap + amt, 0.01), 0, max_stored_sap) + update_icon() + return TRUE + +/mob/living/simple_mob/animal/sif/grafadreka/proc/spend_sap(var/amt) + if(has_sap(amt)) + stored_sap = clamp(round(stored_sap - amt, 0.01), 0, max_stored_sap) + update_icon() + return TRUE + return FALSE + +/mob/living/simple_mob/animal/sif/grafadreka/proc/setup_colours() + + var/static/list/fur_colours = list(COLOR_SILVER, COLOR_WHITE, COLOR_GREEN_GRAY, COLOR_PALE_RED_GRAY, COLOR_BLUE_GRAY) + var/static/list/claw_colours = list(COLOR_GRAY, COLOR_SILVER, COLOR_WHITE, COLOR_GRAY15, COLOR_GRAY20, COLOR_GRAY40, COLOR_GRAY80) + var/static/list/glow_colours = list(COLOR_BLUE_LIGHT, COLOR_LIGHT_CYAN, COLOR_CYAN, COLOR_CYAN_BLUE) + var/static/list/base_colours = list("#608894", "#436974", "#7fa3ae") + var/static/list/eye_colours = list(COLOR_WHITE, COLOR_SILVER) + + if(!glow_colour) + glow_colour = pick(glow_colours) + if(!fur_colour) + fur_colour = pick(fur_colours) + if(!claw_colour) + claw_colour = pick(claw_colours) + if(!base_colour) + base_colour = pick(base_colours) + if(!eye_colour) + eye_colour = pick(eye_colours) + +/mob/living/simple_mob/animal/sif/grafadreka/movement_delay(oldloc, direct) + . = ..() + if(istype(loc, /turf/space)) + return + var/health_slowdown_threshold = round(maxHealth * 0.65) + if(health < health_slowdown_threshold) + . += round(5 * (1-(health / health_slowdown_threshold)), 0.1) + var/nut_slowdown_threshold = round(max_nutrition * 0.65) + if(nutrition < nut_slowdown_threshold) + . += round(5 * (1-(nutrition / nut_slowdown_threshold)), 0.1) + +/mob/living/simple_mob/animal/sif/grafadreka/update_icon() + + . = ..() + + if(sitting && stat == CONSCIOUS) + icon_state = "[initial(icon_state)]_sitting" + + var/list/add_images = list() + var/image/I = image(icon, "[icon_state]") + I.color = base_colour + add_images += I + + I = image(icon, "[icon_state]-fur") + I.color = fur_colour + add_images += I + + I = image(icon, "[icon_state]-claws") + I.color = claw_colour + add_images += I + + if(stat == CONSCIOUS && !sleeping) + I = image(icon, "[icon_state]-eye_overlay") + I.color = eye_colour + add_images += I + + if(stat != DEAD) + var/glow = add_glow() + if(glow) + add_images += glow + + for(var/image/adding in add_images) + adding.appearance_flags |= (RESET_COLOR|PIXEL_SCALE|KEEP_APART) + if(offset_compiled_icon) + adding.pixel_x = offset_compiled_icon // Offset here so that things like modifiers, runechat text, etc. are centered + add_overlay(adding) + + // We do this last so the default mob icon_state can be used for the overlays. + current_icon_state = icon_state + icon_state = "blank" + color = COLOR_WHITE // Due to KEEP_TOGETHER etc. overlays ignore RESET_COLOR. + +/mob/living/simple_mob/animal/sif/grafadreka/proc/add_glow() + var/image/I = image(icon, "[icon_state]-glow") + I.color = glow_colour + I.plane = PLANE_LIGHTING_ABOVE + I.alpha = 35 + round(220 * clamp(stored_sap/max_stored_sap, 0, 1)) + return I + +/mob/living/simple_mob/animal/sif/grafadreka/get_eye_color() + return eye_colour + +/mob/living/simple_mob/animal/sif/grafadreka/do_tame(var/obj/O, var/mob/user) + . = ..() + attacked_by_neutral = FALSE + +/mob/living/simple_mob/animal/sif/grafadreka/handle_special() + ..() + if(client || world.time >= next_leader_check) + next_leader_check = world.time + (60 SECONDS) + check_leader_status() + +/mob/living/simple_mob/animal/sif/grafadreka/do_help_interaction(atom/A) + + if(isliving(A)) + + var/mob/living/friend = A + if(friend.stat == DEAD) + if(friend == src) + to_chat(src, SPAN_WARNING("\The [friend] is dead; tending their wounds is pointless.")) + else + return ..() + return TRUE + + if(!can_tend_wounds(friend)) + if(friend == src) + if(health == maxHealth) + to_chat(src, SPAN_WARNING("You are unwounded.")) + else + to_chat(src, SPAN_WARNING("You cannot tend any of your wounds.")) + else + if(friend.health == friend.maxHealth) + return ..() + to_chat(src, SPAN_WARNING("You cannot tend any of \the [friend]'s wounds.")) + return TRUE + + if(friend.has_modifier_of_type(/datum/modifier/sifsap_salve)) + if(friend == src) + to_chat(src, SPAN_WARNING("You have already cleaned your wounds.")) + else + return ..() + return TRUE + + if(!has_sap(10)) + if(friend == src) + to_chat(src, SPAN_WARNING("You don't have enough sap to clean your wounds.")) + else + return ..() + return TRUE + + if(friend == src) + visible_message(SPAN_NOTICE("\The [src] begins to drool a blue-glowing liquid, which they start slathering over their wounds.")) + else + visible_message(SPAN_NOTICE("\The [src] begins to drool a blue-glowing liquid, which they start slathering over \the [friend]'s wounds.")) + + playsound(src, 'sound/effects/ointment.ogg', 25) + + var/friend_ref = "\ref[friend]" + global.wounds_being_tended_by_drakes[friend_ref] = world.time + (8 SECONDS) + set_AI_busy(TRUE) + + if(!do_after(src, 8 SECONDS, friend) || QDELETED(friend) || friend.has_modifier_of_type(/datum/modifier/sifsap_salve) || incapacitated() || !spend_sap(10)) + global.wounds_being_tended_by_drakes -= friend_ref + set_AI_busy(FALSE) + return TRUE + + global.wounds_being_tended_by_drakes -= friend_ref + set_AI_busy(FALSE) + + if(friend == src) + visible_message(SPAN_NOTICE("\The [src] finishes licking at their wounds.")) + else + visible_message(SPAN_NOTICE("\The [src] finishes licking at \the [friend]'s wounds.")) + playsound(src, 'sound/effects/ointment.ogg', 25) + + // Sivian animals get a heal buff from the modifier, others just + // get it to stop friendly drakes constantly licking their wounds. + friend.add_modifier(/datum/modifier/sifsap_salve, 60 SECONDS) + // Human wounds are closed, but they get sifsap via open wounds. + if(ishuman(friend)) + var/mob/living/carbon/human/H = friend + for(var/obj/item/organ/external/E in H.organs) + if(E.status & ORGAN_BLEEDING) + E.organ_clamp() + H.bloodstr.add_reagent("sifsap", rand(1,2)) + for(var/datum/wound/W in E.wounds) + W.salve() + W.disinfect() + + // Everyone else is just poisoned. + else if(!istype(friend, /mob/living/simple_mob/animal/sif)) + friend.adjustToxLoss(rand(10,20)) + return TRUE + + return ..() + +/mob/living/simple_mob/animal/sif/grafadreka/proc/get_pack_leader() + var/pack = FALSE + var/mob/living/simple_mob/animal/sif/grafadreka/leader + if(!is_baby) + leader = src + for(var/mob/living/simple_mob/animal/sif/grafadreka/follower in hearers(7, loc)) + if(follower == src || follower.is_baby || follower.stat == DEAD || follower.faction != faction) + continue + pack = TRUE + if(!leader || follower.charisma > leader.charisma) + leader = follower + if(pack) + return leader + +/mob/living/simple_mob/animal/sif/grafadreka/proc/check_leader_status() + var/mob/living/simple_mob/animal/sif/grafadreka/leader = get_pack_leader() + if(src == leader) + add_modifier(/datum/modifier/ace, 60 SECONDS) + else + remove_modifiers_of_type(/datum/modifier/ace) + +/mob/living/simple_mob/animal/sif/grafadreka/Stat() + . = ..() + if(statpanel("Status")) + stat("Nutrition:", "[nutrition]/[max_nutrition]") + stat("Stored sap:", "[stored_sap]/[max_stored_sap]") + +/mob/living/simple_mob/animal/sif/grafadreka/proc/can_bite(var/mob/living/M) + return istype(M) && (M.lying || M.confused || M.incapacitated()) + +/mob/living/simple_mob/animal/sif/grafadreka/apply_bonus_melee_damage(atom/A, damage_amount) + // Melee attack on incapacitated or prone enemies bites instead of slashing + var/last_attack_was_claws = attacking_with_claws + attacking_with_claws = !can_bite(A) + + if(last_attack_was_claws != attacking_with_claws) + if(attacking_with_claws) // Use claws. + attack_armor_pen = initial(attack_armor_pen) + attack_sound = initial(attack_sound) + attacktext = claw_attacktext.Copy() + else // Use ur teef + damage_amount = max(damage_amount, rand(bite_melee_damage_lower, bite_melee_damage_upper)) + attack_armor_pen = bite_attack_armor_pen + attack_sound = bite_attack_sound + attacktext = bite_attacktext.Copy() + . = ..() + +// Eating sifsap makes bites toxic and changes our glow intensity. +/mob/living/simple_mob/animal/sif/grafadreka/apply_attack(atom/A, damage_to_do) + var/tox_damage = 0 + if(!attacking_with_claws && isliving(A) && has_sap(5)) + tox_damage = rand(5,15) + . = ..() + if(. && tox_damage && spend_sap(5)) + var/mob/living/M = A + M.adjustToxLoss(tox_damage) + +/mob/living/simple_mob/animal/sif/grafadreka/verb/rally_pack() + set name = "Rally Pack" + set desc = "Tries to command your fellow pack members to follow you." + set category = "Abilities" + + if(!has_modifier_of_type(/datum/modifier/ace)) + to_chat(src, SPAN_WARNING("You aren't the pack leader! Sit down!")) + return + + audible_message("\The [src] barks loudly and rattles its neck spines.") + for(var/mob/living/simple_mob/animal/sif/grafadreka/drake in hearers(world.view * 3, src)) + if(drake == src || drake.faction != faction) + continue + if(drake.client) + to_chat(drake, SPAN_NOTICE("The pack leader wishes for you to follow them.")) + else if(drake.ai_holder) + drake.ai_holder.set_follow(src) + +/mob/living/simple_mob/animal/sif/grafadreka/has_appetite() + return reagents && abs(reagents.total_volume - reagents.maximum_volume) >= 10 + +/mob/living/simple_mob/animal/sif/grafadreka/Login() + . = ..() + charisma = (client && !is_baby) ? INFINITY : 0 + +/mob/living/simple_mob/animal/sif/grafadreka/Logout() + . = ..() + if(!client) + charisma = rand(5, 15) + +/datum/say_list/grafadreka + speak = list("Chff!","Skhh.", "Rrrss...") + emote_see = list("scratches its ears","grooms its spines", "sways its tail", "claws at the ground") + emote_hear = list("hisses", "rattles", "rasps", "barks") + +/obj/structure/animal_den/ghost_join/grafadreka + name = "drake den" + critter = /mob/living/simple_mob/animal/sif/grafadreka + +/obj/structure/animal_den/ghost_join/grafadreka_hatchling + name = "drake hatchling den" + critter = /mob/living/simple_mob/animal/sif/grafadreka/hatchling + +// Subtypes! +/mob/living/simple_mob/animal/sif/grafadreka/rainbow/setup_colours() + glow_colour = get_random_colour(TRUE) + fur_colour = get_random_colour(TRUE) + claw_colour = get_random_colour(TRUE) + base_colour = get_random_colour(TRUE) + eye_colour = get_random_colour(TRUE) + ..() + +/mob/living/simple_mob/animal/sif/grafadreka/hatchling + name = "grafadreka hatchling" + icon = 'icons/mob/drake_baby.dmi' + mob_size = MOB_SMALL + desc = "An immature snow drake, not long out of the shell." + is_baby = TRUE + offset_compiled_icon = null + + melee_damage_lower = 3 + melee_damage_upper = 5 + attack_armor_pen = 2 + bite_melee_damage_lower = 5 + bite_melee_damage_upper = 10 + bite_attack_armor_pen = 16 + + projectiletype = /obj/item/projectile/drake_spit/weak + maxHealth = 60 + health = 60 diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/space/bats.dm b/code/modules/mob/living/simple_mob/subtypes/animal/space/bats.dm index 595e3557cf..f4c4719059 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/space/bats.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/space/bats.dm @@ -30,7 +30,7 @@ ai_holder_type = /datum/ai_holder/simple_mob/melee/evasive - has_langs = list("Mouse") + has_langs = list(LANGUAGE_MOUSE, LANGUAGE_ECHOSONG) // Haha squeak meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat meat_amount = 2 diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/space/goose.dm b/code/modules/mob/living/simple_mob/subtypes/animal/space/goose.dm index 840b424994..875434ebea 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/space/goose.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/space/goose.dm @@ -23,7 +23,7 @@ organ_names = /decl/mob_organ_names/goose - has_langs = list("Bird") + has_langs = list(LANGUAGE_ANIMAL) meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat/chicken meat_amount = 3 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/bigdragon.dm b/code/modules/mob/living/simple_mob/subtypes/vore/bigdragon.dm index 4509634757..07231caf07 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/bigdragon.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/bigdragon.dm @@ -5,7 +5,7 @@ Scour its code if you dare. Here's a summary, however. -This is a 128x64px mob with sprites drawn by Przyjaciel (thanks mate) and some codersprites. +This is a 128x92px mob with sprites drawn by Przyjaciel (thanks mate) and some codersprites. The bigdragon is an 800 health hostile boss mob with three special attacks. The first (disarm intent) is a charge attack that activates when the target is >5 tiles away and requires line of sight. @@ -62,6 +62,7 @@ I think I covered everything. meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat old_x = -48 old_y = 0 + vis_height = 92 melee_damage_lower = 35 melee_damage_upper = 25 melee_miss_chance = 0 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/c_pet.dm b/code/modules/mob/living/simple_mob/subtypes/vore/c_pet.dm index 4b36fb7b1e..02cf178447 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/c_pet.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/c_pet.dm @@ -39,7 +39,7 @@ "rad" = 0 ) - has_langs = list("Animal") + has_langs = list(LANGUAGE_ANIMAL) /mob/living/simple_mob/animal/passive/honkpet/attack_hand(mob/living/user as mob) if(user.a_intent == I_DISARM) diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/greatwolf.dm b/code/modules/mob/living/simple_mob/subtypes/vore/greatwolf.dm index 41098bc65c..e814e3e93a 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/greatwolf.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/greatwolf.dm @@ -14,6 +14,7 @@ meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat old_x = -48 old_y = 0 + vis_height = 92 melee_damage_lower = 20 melee_damage_upper = 15 friendly = list("nudges", "sniffs on", "rumbles softly at", "slobberlicks") diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/leopardmander.dm b/code/modules/mob/living/simple_mob/subtypes/vore/leopardmander.dm index 2b4350fd2e..5427b978c9 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/leopardmander.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/leopardmander.dm @@ -18,6 +18,7 @@ default_pixel_x = -48 pixel_x = -48 pixel_y = 0 + vis_height = 92 response_help = "pats" response_disarm = "shoves" response_harm = "bops" diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/leopardmander_ch.dm b/code/modules/mob/living/simple_mob/subtypes/vore/leopardmander_ch.dm index 4f7e9e6bed..d8fb0f212f 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/leopardmander_ch.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/leopardmander_ch.dm @@ -12,6 +12,7 @@ meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat old_x = -48 old_y = 0 + vis_height = 92 melee_damage_lower = 10 melee_damage_upper = 25 friendly = list("nudges", "sniffs on", "rumbles softly at", "slobberlicks") diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/shadekin.dm b/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/shadekin.dm index ee27fb1c97..c84ab019f9 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/shadekin.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/shadekin.dm @@ -18,7 +18,7 @@ has_hands = TRUE //Pawbs seedarkness = FALSE //SHAAAADEkin attack_sound = 'sound/weapons/bladeslice.ogg' - has_langs = list(LANGUAGE_GALCOM,LANGUAGE_SHADEKIN) + has_langs = list(LANGUAGE_GALCOM, LANGUAGE_SHADEKIN) melee_damage_lower = 10 melee_damage_upper = 20 @@ -212,7 +212,7 @@ phase_shift() // shifting back in, nobody present else if (non_kin_count && !(ability_flags & AB_PHASE_SHIFTED)) phase_shift() // shifting out, scaredy - + /mob/living/simple_mob/shadekin/update_icon() . = ..() diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/softdog.dm b/code/modules/mob/living/simple_mob/subtypes/vore/softdog.dm index df0a5c431e..b20bab07bd 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/softdog.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/softdog.dm @@ -50,7 +50,7 @@ mob_size = MOB_SMALL - has_langs = list("Dog", "Canilunzt", "Galactic Common") + has_langs = list(LANGUAGE_ANIMAL, LANGUAGE_CANILUNZT, LANGUAGE_GALCOM) say_list_type = /datum/say_list/softdog swallowTime = 0.1 SECONDS diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index d2e762d043..9973f8c489 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -70,7 +70,7 @@ else to_chat(src,msg) if(teleop) - to_chat(teleop, create_text_tag("body", "BODY:", teleop) + "[msg]") + to_chat(teleop, create_text_tag("body", "BODY:", teleop.client) + "[msg]") return // Show a message to all mobs and objects in sight of this one diff --git a/code/modules/mob/mob_defines.dm b/code/modules/mob/mob_defines.dm index dc1f1fc219..19476f2460 100644 --- a/code/modules/mob/mob_defines.dm +++ b/code/modules/mob/mob_defines.dm @@ -94,6 +94,7 @@ var/list/pinned = list() // List of things pinning this creature to walls (see living_defense.dm) var/list/embedded = list() // Embedded items, since simple mobs don't have organs. var/list/languages = list() // For speaking/listening. + var/list/language_keys = list() // List of language keys indexing languages var/species_language = null // For species who want reset to use a specified default. var/only_species_language = 0 // For species who can only speak their default and no other languages. Does not affect understanding. var/list/speak_emote = list("says") // Verbs used when speaking. Defaults to 'say' if speak_emote is null. diff --git a/code/modules/mob/new_player/new_player.dm b/code/modules/mob/new_player/new_player.dm index c152c80b12..3f3b649ee6 100644 --- a/code/modules/mob/new_player/new_player.dm +++ b/code/modules/mob/new_player/new_player.dm @@ -623,6 +623,11 @@ if(chosen_language) if(is_lang_whitelisted(src,chosen_language) || (new_character.species && (chosen_language.name in new_character.species.secondary_langs))) new_character.add_language(lang) + for(var/key in client.prefs.language_custom_keys) + if(client.prefs.language_custom_keys[key]) + var/datum/language/keylang = GLOB.all_languages[client.prefs.language_custom_keys[key]] + if(keylang) + new_character.language_keys[key] = keylang // And uncomment this, too. //new_character.dna.UpdateSE() diff --git a/code/modules/mob/new_player/sprite_accessories.dm b/code/modules/mob/new_player/sprite_accessories.dm index bb55c54a8d..883fbcc5b2 100644 --- a/code/modules/mob/new_player/sprite_accessories.dm +++ b/code/modules/mob/new_player/sprite_accessories.dm @@ -56,7 +56,7 @@ var/flags /datum/sprite_accessory/hair/eighties - name = "80's" + name = "80s" icon_state = "hair_80s" flags = HAIR_TIEABLE diff --git a/code/modules/mob/new_player/sprite_accessories_ear_vr.dm b/code/modules/mob/new_player/sprite_accessories_ear_vr.dm index bb95f69575..100a4ede9e 100644 --- a/code/modules/mob/new_player/sprite_accessories_ear_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_ear_vr.dm @@ -9,7 +9,7 @@ name = "You should not see this..." icon = 'icons/mob/vore/ears_vr.dmi' do_colouration = 0 // Set to 1 to blend (ICON_ADD) hair color - species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) //This lets all races use + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW, SPECIES_ALTEVIAN) //This lets all races use color_blend_mode = ICON_ADD // Only appliciable if do_coloration = 1 // Species-unique ears @@ -34,11 +34,11 @@ /datum/sprite_accessory/ears/taj_ears name = "tajaran, colorable (old)" - species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) //This lets all races use + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW, SPECIES_ALTEVIAN) //This lets all races use /datum/sprite_accessory/ears/taj_ears_tall name = "tajaran tall, colorable (old)" - species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) //This lets all races use + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW, SPECIES_ALTEVIAN) //This lets all races use /datum/sprite_accessory/ears/alt_ram_horns name = "Solid ram horns" @@ -389,19 +389,19 @@ color_blend_mode = ICON_MULTIPLY /datum/sprite_accessory/ears/elfs1 - species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) //This lets all races use + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW, SPECIES_ALTEVIAN) //This lets all races use /datum/sprite_accessory/ears/elfs2 - species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) //This lets all races use + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW, SPECIES_ALTEVIAN) //This lets all races use /datum/sprite_accessory/ears/elfs3 - species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) //This lets all races use + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW, SPECIES_ALTEVIAN) //This lets all races use /datum/sprite_accessory/ears/elfs4 - species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) //This lets all races use + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW, SPECIES_ALTEVIAN) //This lets all races use /datum/sprite_accessory/ears/elfs5 - species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) //This lets all races use + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW, SPECIES_ALTEVIAN) //This lets all races use /datum/sprite_accessory/ears/sleek name = "sleek ears" diff --git a/code/modules/mob/new_player/sprite_accessories_extra_ch.dm b/code/modules/mob/new_player/sprite_accessories_extra_ch.dm index 72af2eb90a..cb65a846f6 100644 --- a/code/modules/mob/new_player/sprite_accessories_extra_ch.dm +++ b/code/modules/mob/new_player/sprite_accessories_extra_ch.dm @@ -1,5 +1,6 @@ /datum/sprite_accessory/marking/ch icon = 'icons/mob/human_races/markings_ch.dmi' + /datum/sprite_accessory/marking/ch/orca_head name = "Orca head" icon_state = "orca_head" @@ -481,4 +482,4 @@ name = "Spots, Outer" icon_state = "spots_extremities" body_parts = list(BP_R_ARM,BP_L_ARM,BP_R_LEG,BP_L_LEG,BP_R_FOOT,BP_L_FOOT) - color_blend_mode = ICON_MULTIPLY \ No newline at end of file + color_blend_mode = ICON_MULTIPLY diff --git a/code/modules/mob/new_player/sprite_accessories_tail_vr.dm b/code/modules/mob/new_player/sprite_accessories_tail_vr.dm index b44ed20cb5..cd63d811ef 100644 --- a/code/modules/mob/new_player/sprite_accessories_tail_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_tail_vr.dm @@ -9,7 +9,7 @@ name = "You should not see this..." icon = 'icons/mob/vore/tails_vr.dmi' do_colouration = 0 //Set to 1 to enable coloration using the tail color. - species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) //This lets all races use + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW, SPECIES_ALTEVIAN) //This lets all races use var/list/lower_layer_dirs = list(SOUTH) @@ -1176,7 +1176,7 @@ do_colouration = 1 color_blend_mode = ICON_MULTIPLY ckeys_allowed = list("prettiebyrd") - + /datum/sprite_accessory/tail/altevian name = "Altevian Tail" icon = 'icons/mob/vore/tails_vr.dmi' @@ -1185,6 +1185,13 @@ color_blend_mode = ICON_MULTIPLY lower_layer_dirs = list(SOUTH, WEST) +/datum/sprite_accessory/tail/shark_finless + name = "shark tail, finless (colorable)" + desc = "" + icon_state = "sharktail_finless" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + /datum/sprite_accessory/tail/tentacle name = "Tentacle, colorable (vwag)" desc = "" diff --git a/code/modules/mob/new_player/sprite_accessories_taur_vr.dm b/code/modules/mob/new_player/sprite_accessories_taur_vr.dm index 22f01db12d..698c91d051 100644 --- a/code/modules/mob/new_player/sprite_accessories_taur_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_taur_vr.dm @@ -618,4 +618,4 @@ extra_overlay2 = "noodle_markings_2" suit_sprites = 'icons/mob/taursuits_noodle_vr.dmi' clip_mask_state = "taur_clip_mask_noodle" - icon_sprite_tag = "noodle" + icon_sprite_tag = "noodle" \ No newline at end of file diff --git a/code/modules/mob/new_player/sprite_accessories_wing_ch.dm b/code/modules/mob/new_player/sprite_accessories_wing_ch.dm index 48d5d29a39..5034a4f712 100644 --- a/code/modules/mob/new_player/sprite_accessories_wing_ch.dm +++ b/code/modules/mob/new_player/sprite_accessories_wing_ch.dm @@ -23,4 +23,4 @@ icon = 'icons/mob/vore/wings_ch.dmi' icon_state = "snail_shell" do_colouration = 1 - color_blend_mode = ICON_MULTIPLY \ No newline at end of file + color_blend_mode = ICON_MULTIPLY diff --git a/code/modules/mob/new_player/sprite_accessories_wing_large_vr.dm b/code/modules/mob/new_player/sprite_accessories_wing_large_vr.dm new file mode 100644 index 0000000000..0bfca21140 --- /dev/null +++ b/code/modules/mob/new_player/sprite_accessories_wing_large_vr.dm @@ -0,0 +1,14 @@ +// beeg wing + + +/datum/sprite_accessory/wing/large + name = "You should not see this..." + icon = 'icons/mob/vore/wings96_vr.dmi' + wing_offset = 32 + + +/datum/sprite_accessory/wing/large/megamoth + name = "megamoth wings" + icon_state = "megamoth" + ani_state = "megamoth_open" + multi_dir = TRUE \ No newline at end of file diff --git a/code/modules/mob/new_player/sprite_accessories_wing_vr.dm b/code/modules/mob/new_player/sprite_accessories_wing_vr.dm index e96a72bf7f..fc04d43a42 100644 --- a/code/modules/mob/new_player/sprite_accessories_wing_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_wing_vr.dm @@ -9,8 +9,10 @@ name = "You should not see this..." icon = 'icons/mob/vore/wings_vr.dmi' do_colouration = 0 //Set to 1 to enable coloration using the tail color. - species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) //This lets all races use + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW, SPECIES_ALTEVIAN) //This lets all races use color_blend_mode = ICON_ADD // Only appliciable if do_coloration = 1 + var/wing_offset = 0 + var/multi_dir = FALSE // Does it use different sprites at different layers? _front will be added for sprites on low layer, _back to high layer /datum/sprite_accessory/wing/shock //Unable to split the tail from the wings in the sprite, so let's just classify it as wings. name = "pharoah hound tail (Shock Diamond)" diff --git a/code/modules/mob/say.dm b/code/modules/mob/say.dm index ceda101ede..ab6be4b1d0 100644 --- a/code/modules/mob/say.dm +++ b/code/modules/mob/say.dm @@ -193,6 +193,8 @@ // Okay, we're definitely now trying to invoke a language (probably) // This "[]" is probably unnecessary but BYOND will runtime if a number is used var/datum/language/L = GLOB.language_keys["[language_key]"] + if((language_key in language_keys) && language_keys[language_key]) + L = language_keys[language_key] // MULTILINGUAL_SPACE enforces a space after the language key if(client && (client.prefs.multilingual_mode == MULTILINGUAL_SPACE) && (text2ascii(copytext(selection, 3, 4)) != 32)) // If we're looking for a space and we don't find one diff --git a/code/modules/multiz/portals_vr.dm b/code/modules/multiz/portals_vr.dm index 443134c4dd..4f6756ad49 100644 --- a/code/modules/multiz/portals_vr.dm +++ b/code/modules/multiz/portals_vr.dm @@ -67,7 +67,8 @@ if(response == "Select Type") icon_state = select_portal_subtype(user) return - message_admins("The [src]([x],[y],[z]) was given [target]([target.x],[target.y],[target.z]) as a target, and should be ready to use.") + if(target) + message_admins("The [src]([x],[y],[z]) was given [target]([target.x],[target.y],[target.z]) as a target, and should be ready to use.") else if(user?.client?.holder) src.teleport(user) else return @@ -132,9 +133,9 @@ to_chat(M, "Something blocks your way.") return temptarg = pick(possible_turfs) - do_noeffect_teleport(M, temptarg, 0) + do_safe_teleport(M, temptarg, 0) else if (istype(M, /atom/movable)) - do_noeffect_teleport(M, target, 0) + do_safe_teleport(M, target, 0) /obj/structure/portal_event/Destroy() if(target) @@ -146,7 +147,7 @@ P.target = null qdel_null(target) . = ..() - + /obj/structure/portal_target name = "portal destination" desc = "you shouldn't see this unless you're a ghost" diff --git a/code/modules/nifsoft/nifsoft.dm b/code/modules/nifsoft/nifsoft.dm index a684c696d7..f4f3135b8e 100644 --- a/code/modules/nifsoft/nifsoft.dm +++ b/code/modules/nifsoft/nifsoft.dm @@ -377,32 +377,3 @@ ..() for(var/i = 0 to 7) new /obj/item/weapon/disk/nifsoft/mining(src) - -// Pilot Disk // -/obj/item/weapon/disk/nifsoft/pilot - name = "NIFSoft Uploader - Pilot" - desc = "Contains free NIFSofts useful for pilot members.\n\ - It has a small label: \n\ - \"Portable NIFSoft Installation Media. \n\ - Align ocular port with eye socket and depress red plunger.\"" - - icon_state = "pilot" - stored_organic = /datum/nifsoft/package/pilot - stored_synthetic = /datum/nifsoft/package/pilot_synth - -/datum/nifsoft/package/pilot - software = list(/datum/nifsoft/spare_breath) - -/datum/nifsoft/package/pilot_synth - software = list(/datum/nifsoft/pressure,/datum/nifsoft/heatsinks) - -/obj/item/weapon/storage/box/nifsofts_pilot - name = "pilot nifsoft uploaders" - desc = "A box of free nifsofts for pilot employees." - icon = 'icons/obj/boxes.dmi' - icon_state = "nifsoft_kit_pilot" - -/obj/item/weapon/storage/box/nifsofts_pilot/New() - ..() - for(var/i = 0 to 7) - new /obj/item/weapon/disk/nifsoft/pilot(src) \ No newline at end of file diff --git a/code/modules/nifsoft/nifsoft_vr.dm b/code/modules/nifsoft/nifsoft_vr.dm new file mode 100644 index 0000000000..0ea055d35a --- /dev/null +++ b/code/modules/nifsoft/nifsoft_vr.dm @@ -0,0 +1,28 @@ +// Pilot Disk // +/obj/item/weapon/disk/nifsoft/pilot + name = "NIFSoft Uploader - Pilot" + desc = "Contains free NIFSofts useful for pilot members.\n\ + It has a small label: \n\ + \"Portable NIFSoft Installation Media. \n\ + Align ocular port with eye socket and depress red plunger.\"" + icon = 'icons/obj/nanomods_vr.dmi' + icon_state = "pilot" + stored_organic = /datum/nifsoft/package/pilot + stored_synthetic = /datum/nifsoft/package/pilot_synth + +/datum/nifsoft/package/pilot + software = list(/datum/nifsoft/spare_breath) + +/datum/nifsoft/package/pilot_synth + software = list(/datum/nifsoft/pressure,/datum/nifsoft/heatsinks) + +/obj/item/weapon/storage/box/nifsofts_pilot + name = "pilot nifsoft uploaders" + desc = "A box of free nifsofts for pilot employees." + icon = 'icons/obj/boxes_vr.dmi' + icon_state = "nifsoft_kit_pilot" + +/obj/item/weapon/storage/box/nifsofts_pilot/New() + ..() + for(var/i = 0 to 7) + new /obj/item/weapon/disk/nifsoft/pilot(src) \ No newline at end of file diff --git a/code/modules/organs/internal/brain.dm b/code/modules/organs/internal/brain.dm index 11ce2fbb45..60498402ef 100644 --- a/code/modules/organs/internal/brain.dm +++ b/code/modules/organs/internal/brain.dm @@ -237,7 +237,7 @@ GLOBAL_LIST_BOILERPLATE(all_brain_organs, /obj/item/organ/internal/brain) return 0 for(var/modifier_type in R.genetic_modifiers) //Can't be revived. Probably won't happen...? - if(istype(modifier_type, /datum/modifier/no_clone)) + if(ispath(modifier_type, /datum/modifier/no_clone)) return 0 var/mob/living/carbon/human/H = new /mob/living/carbon/human(get_turf(src), R.dna.species) diff --git a/code/modules/organs/organ.dm b/code/modules/organs/organ.dm index c91fa50481..718234893e 100644 --- a/code/modules/organs/organ.dm +++ b/code/modules/organs/organ.dm @@ -368,6 +368,9 @@ var/list/organ_cache = list() robotize() /obj/item/organ/emp_act(severity) + for(var/obj/O as anything in src.contents) + O.emp_act(severity) + if(!(robotic >= ORGAN_ASSISTED)) return for(var/i = 1; i <= robotic; i++) diff --git a/code/modules/organs/organ_external.dm b/code/modules/organs/organ_external.dm index 63dc8c6666..fe69463090 100644 --- a/code/modules/organs/organ_external.dm +++ b/code/modules/organs/organ_external.dm @@ -115,6 +115,9 @@ return ..() /obj/item/organ/external/emp_act(severity) + for(var/obj/O as anything in src.contents) + O.emp_act(severity) + if(!(robotic >= ORGAN_ROBOT)) return var/burn_damage = 0 @@ -595,8 +598,6 @@ This function completely restores a damaged organ to perfect condition. return 1 else last_dam = brute_dam + burn_dam - if (number_wounds != 0) - return 1 if(germ_level) return 1 return 0 @@ -733,8 +734,8 @@ Note that amputating the affected organ does in fact remove the infection from t return for(var/datum/wound/W in wounds) - // wounds used to be able to disappear after 10 minutes at the earliest, for now just remove them as soon as there is no damage - if(W.damage <= 0) + // wounds can disappear after 10 minutes at the earliest + if(W.damage <= 0 && W.created + 10 * 10 * 60 <= world.time) wounds -= W continue // let the GC handle the deletion of the wound diff --git a/code/modules/organs/organ_icon.dm b/code/modules/organs/organ_icon.dm index d35a5aa516..fa93fc43b7 100644 --- a/code/modules/organs/organ_icon.dm +++ b/code/modules/organs/organ_icon.dm @@ -131,7 +131,7 @@ var/global/list/limb_icon_cache = list() I.Blend(rgb(h_col[1],h_col[2],h_col[3]), ICON_MULTIPLY) //VOREStation edit limb_icon_cache[cache_key] = I mob_icon.Blend(limb_icon_cache[cache_key], ICON_OVERLAY) - + // VOREStation edit start if(nail_polish) var/icon/I = new(nail_polish.icon, nail_polish.icon_state) diff --git a/code/modules/organs/organ_icon_ch.dm b/code/modules/organs/organ_icon_ch.dm index 7348f5c054..dacba3d4eb 100644 --- a/code/modules/organs/organ_icon_ch.dm +++ b/code/modules/organs/organ_icon_ch.dm @@ -12,7 +12,7 @@ digitigrade = dna.digitigrade if( !model && ( istype(src,/obj/item/organ/external/leg) || istype(src,/obj/item/organ/external/foot) ) ) //All leg icons go through here now. - + var/gender = "m" if(owner && owner.gender == FEMALE) gender = "f" @@ -43,7 +43,6 @@ mob_icon = new /icon('icons/mob/human_races/robotic.dmi', "[icon_name][gender ? "_[gender]" : ""]") apply_colouration(mob_icon) else - //Use digi icon if digitigrade, otherwise use regular icon. Ternary operator is based. mob_icon = new /icon(digitigrade ? species.icodigi : species.get_icobase(owner, (status & ORGAN_MUTATED)), "[icon_name][gender ? "_[gender]" : ""]") apply_colouration(mob_icon) @@ -66,7 +65,7 @@ I.Blend(rgb(h_col[1],h_col[2],h_col[3]), ICON_MULTIPLY) //VOREStation edit limb_icon_cache[cache_key] = I mob_icon.Blend(limb_icon_cache[cache_key], ICON_OVERLAY) - + // VOREStation edit start if(nail_polish) var/icon/I = new(nail_polish.icon, nail_polish.icon_state) diff --git a/code/modules/organs/pain.dm b/code/modules/organs/pain.dm index 1d374ab7f0..b65b3fc2fb 100644 --- a/code/modules/organs/pain.dm +++ b/code/modules/organs/pain.dm @@ -9,7 +9,7 @@ // power decides how much painkillers will stop the message // force means it ignores anti-spam timer /mob/living/carbon/proc/custom_pain(message, power, force) - if(!message || stat || !can_feel_pain() || chem_effects[CE_PAINKILLER] > power) + if((!message || stat || !can_feel_pain() || chem_effects[CE_PAINKILLER] > power) && !synth_cosmetic_pain) return 0 message = "[message]" if(power >= 50) @@ -25,7 +25,7 @@ if(stat) return - if(!can_feel_pain()) + if(!can_feel_pain() && !synth_cosmetic_pain) return if(world.time < next_pain_time) @@ -33,13 +33,16 @@ var/maxdam = 0 var/obj/item/organ/external/damaged_organ = null for(var/obj/item/organ/external/E in organs) - if(!E.organ_can_feel_pain()) continue + if(!E.organ_can_feel_pain() && !synth_cosmetic_pain) continue var/dam = E.get_damage() // make the choice of the organ depend on damage, // but also sometimes use one of the less damaged ones if(dam > maxdam && (maxdam == 0 || prob(70)) ) damaged_organ = E maxdam = dam + if(istype(src, /mob/living/carbon/human)) //VOREStation Edit Start + var/mob/living/carbon/human/H = src + maxdam *= H.species.trauma_mod //VOREStation edit end if(damaged_organ && chem_effects[CE_PAINKILLER] < maxdam) if(maxdam > 10 && paralysis) AdjustParalysis(-round(maxdam/10)) diff --git a/code/modules/planet/virgo3b_vr.dm b/code/modules/planet/virgo3b_vr.dm index 9e76fd1eda..b3e6d136fb 100644 --- a/code/modules/planet/virgo3b_vr.dm +++ b/code/modules/planet/virgo3b_vr.dm @@ -99,18 +99,19 @@ var/datum/planet/virgo3b/planet_virgo3b = null /datum/weather_holder/virgo3b temperature = T0C allowed_weather_types = list( - WEATHER_CLEAR = new /datum/weather/virgo3b/clear(), - WEATHER_OVERCAST = new /datum/weather/virgo3b/overcast(), - WEATHER_LIGHT_SNOW = new /datum/weather/virgo3b/light_snow(), - WEATHER_SNOW = new /datum/weather/virgo3b/snow(), - WEATHER_BLIZZARD = new /datum/weather/virgo3b/blizzard(), - WEATHER_RAIN = new /datum/weather/virgo3b/rain(), - WEATHER_STORM = new /datum/weather/virgo3b/storm(), - WEATHER_HAIL = new /datum/weather/virgo3b/hail(), - WEATHER_BLOOD_MOON = new /datum/weather/virgo3b/blood_moon(), - WEATHER_EMBERFALL = new /datum/weather/virgo3b/emberfall(), - WEATHER_ASH_STORM = new /datum/weather/virgo3b/ash_storm(), - WEATHER_FALLOUT = new /datum/weather/virgo3b/fallout() + WEATHER_CLEAR = new /datum/weather/virgo3b/clear(), + WEATHER_OVERCAST = new /datum/weather/virgo3b/overcast(), + WEATHER_LIGHT_SNOW = new /datum/weather/virgo3b/light_snow(), + WEATHER_SNOW = new /datum/weather/virgo3b/snow(), + WEATHER_BLIZZARD = new /datum/weather/virgo3b/blizzard(), + WEATHER_RAIN = new /datum/weather/virgo3b/rain(), + WEATHER_STORM = new /datum/weather/virgo3b/storm(), + WEATHER_HAIL = new /datum/weather/virgo3b/hail(), + WEATHER_BLOOD_MOON = new /datum/weather/virgo3b/blood_moon(), + WEATHER_EMBERFALL = new /datum/weather/virgo3b/emberfall(), + WEATHER_ASH_STORM = new /datum/weather/virgo3b/ash_storm(), + WEATHER_ASH_STORM_SAFE = new /datum/weather/virgo3b/ash_storm_safe(), + WEATHER_FALLOUT = new /datum/weather/virgo3b/fallout() ) roundstart_weather_chances = list( WEATHER_CLEAR = 30, @@ -479,6 +480,27 @@ var/datum/planet/virgo3b/planet_virgo3b = null L.inflict_heat_damage(rand(1, 3)) +/datum/weather/virgo3b/ash_storm_safe + name = "light ash storm" + icon_state = "ashfall_moderate" + light_modifier = 0.1 + light_color = "#FF0000" + temp_high = 323.15 // 50c + temp_low = 313.15 // 40c + wind_high = 6 + wind_low = 3 + flight_failure_modifier = 50 + transition_chances = list( + WEATHER_ASH_STORM_SAFE = 100 + ) + observed_message = "All that can be seen is black smoldering ash." + transition_messages = list( + "Smoldering clouds of scorching ash billow down around you!" + ) + // Lets recycle. + outdoor_sounds_type = /datum/looping_sound/weather/outside_blizzard + indoor_sounds_type = /datum/looping_sound/weather/inside_blizzard + // Totally radical. /datum/weather/virgo3b/fallout diff --git a/code/modules/planet/virgo3c_vr.dm b/code/modules/planet/virgo3c_vr.dm index 45c64daee2..9786602f1a 100644 --- a/code/modules/planet/virgo3c_vr.dm +++ b/code/modules/planet/virgo3c_vr.dm @@ -119,18 +119,19 @@ var/datum/planet/virgo3c/planet_virgo3c = null /datum/weather_holder/virgo3c temperature = T0C allowed_weather_types = list( - WEATHER_CLEAR = new /datum/weather/virgo3c/clear(), - WEATHER_OVERCAST = new /datum/weather/virgo3c/overcast(), - WEATHER_LIGHT_SNOW = new /datum/weather/virgo3c/light_snow(), - WEATHER_SNOW = new /datum/weather/virgo3c/snow(), - WEATHER_BLIZZARD = new /datum/weather/virgo3c/blizzard(), - WEATHER_RAIN = new /datum/weather/virgo3c/rain(), - WEATHER_STORM = new /datum/weather/virgo3c/storm(), - WEATHER_HAIL = new /datum/weather/virgo3c/hail(), - WEATHER_BLOOD_MOON = new /datum/weather/virgo3c/blood_moon(), - WEATHER_EMBERFALL = new /datum/weather/virgo3c/emberfall(), - WEATHER_ASH_STORM = new /datum/weather/virgo3c/ash_storm(), - WEATHER_FALLOUT = new /datum/weather/virgo3c/fallout() + WEATHER_CLEAR = new /datum/weather/virgo3c/clear(), + WEATHER_OVERCAST = new /datum/weather/virgo3c/overcast(), + WEATHER_LIGHT_SNOW = new /datum/weather/virgo3c/light_snow(), + WEATHER_SNOW = new /datum/weather/virgo3c/snow(), + WEATHER_BLIZZARD = new /datum/weather/virgo3c/blizzard(), + WEATHER_RAIN = new /datum/weather/virgo3c/rain(), + WEATHER_STORM = new /datum/weather/virgo3c/storm(), + WEATHER_HAIL = new /datum/weather/virgo3c/hail(), + WEATHER_BLOOD_MOON = new /datum/weather/virgo3c/blood_moon(), + WEATHER_EMBERFALL = new /datum/weather/virgo3c/emberfall(), + WEATHER_ASH_STORM = new /datum/weather/virgo3c/ash_storm(), + WEATHER_ASH_STORM_SAFE = new /datum/weather/virgo3c/ash_storm_safe(), + WEATHER_FALLOUT = new /datum/weather/virgo3c/fallout() ) roundstart_weather_chances = list( WEATHER_CLEAR = 50, @@ -475,6 +476,30 @@ var/datum/planet/virgo3c/planet_virgo3c = null L.inflict_heat_damage(1) to_chat(L, "Smoldering ash singes you!") + + +//A non-lethal variant of the ash_storm. Stays on indefinitely. +/datum/weather/virgo3c/ash_storm_safe + name = "light ash storm" + icon_state = "ashfall_moderate" + light_modifier = 0.1 + light_color = "#FF0000" + temp_high = 313.15 // 40c + temp_low = 303.15 // 30c + wind_high = 6 + wind_low = 3 + flight_failure_modifier = 50 + transition_chances = list( + WEATHER_ASH_STORM_SAFE = 100 + ) + observed_message = "All that can be seen is black smoldering ash." + transition_messages = list( + "Smoldering clouds of scorching ash billow down around you!" + ) + // Lets recycle. + outdoor_sounds_type = /datum/looping_sound/weather/outside_blizzard + indoor_sounds_type = /datum/looping_sound/weather/inside_blizzard + // Totally radical. /datum/weather/virgo3c/fallout name = "fallout" @@ -545,6 +570,7 @@ VIRGO3C_TURF_CREATE(/turf/simulated/floor/glass/reinforced) VIRGO3C_TURF_CREATE(/turf/simulated/open) VIRGO3C_TURF_CREATE(/turf/simulated/floor/tiled/dark) VIRGO3C_TURF_CREATE(/turf/simulated/mineral) +VIRGO3C_TURF_CREATE(/turf/simulated/mineral/ignore_cavegen) VIRGO3C_TURF_CREATE(/turf/simulated/floor) VIRGO3C_TURF_CREATE(/turf/simulated/floor/wood) VIRGO3C_TURF_CREATE(/turf/simulated/floor/wood/sif) diff --git a/code/modules/planet/virgo4_vr.dm b/code/modules/planet/virgo4_vr.dm index f4e2118e80..9cb88591ad 100644 --- a/code/modules/planet/virgo4_vr.dm +++ b/code/modules/planet/virgo4_vr.dm @@ -98,18 +98,19 @@ var/datum/planet/virgo4/planet_virgo4 = null /datum/weather_holder/virgo4 temperature = T0C allowed_weather_types = list( - WEATHER_CLEAR = new /datum/weather/virgo4/clear(), - WEATHER_OVERCAST = new /datum/weather/virgo4/overcast(), - WEATHER_LIGHT_SNOW = new /datum/weather/virgo4/light_snow(), - WEATHER_SNOW = new /datum/weather/virgo4/snow(), - WEATHER_BLIZZARD = new /datum/weather/virgo4/blizzard(), - WEATHER_RAIN = new /datum/weather/virgo4/rain(), - WEATHER_STORM = new /datum/weather/virgo4/storm(), - WEATHER_HAIL = new /datum/weather/virgo4/hail(), - WEATHER_BLOOD_MOON = new /datum/weather/virgo4/blood_moon(), - WEATHER_EMBERFALL = new /datum/weather/virgo4/emberfall(), - WEATHER_ASH_STORM = new /datum/weather/virgo4/ash_storm(), - WEATHER_FALLOUT = new /datum/weather/virgo4/fallout() + WEATHER_CLEAR = new /datum/weather/virgo4/clear(), + WEATHER_OVERCAST = new /datum/weather/virgo4/overcast(), + WEATHER_LIGHT_SNOW = new /datum/weather/virgo4/light_snow(), + WEATHER_SNOW = new /datum/weather/virgo4/snow(), + WEATHER_BLIZZARD = new /datum/weather/virgo4/blizzard(), + WEATHER_RAIN = new /datum/weather/virgo4/rain(), + WEATHER_STORM = new /datum/weather/virgo4/storm(), + WEATHER_HAIL = new /datum/weather/virgo4/hail(), + WEATHER_BLOOD_MOON = new /datum/weather/virgo4/blood_moon(), + WEATHER_EMBERFALL = new /datum/weather/virgo4/emberfall(), + WEATHER_ASH_STORM = new /datum/weather/virgo4/ash_storm(), + WEATHER_ASH_STORM_SAFE = new /datum/weather/virgo4/ash_storm_safe(), + WEATHER_FALLOUT = new /datum/weather/virgo4/fallout() ) roundstart_weather_chances = list( WEATHER_CLEAR = 50, @@ -452,6 +453,28 @@ var/datum/planet/virgo4/planet_virgo4 = null L.inflict_heat_damage(rand(1, 3)) +//A non-lethal variant of the ash_storm. Stays on indefinitely. +/datum/weather/virgo4/ash_storm_safe + name = "light ash storm" + icon_state = "ashfall_moderate" + light_modifier = 0.1 + light_color = "#FF0000" + temp_high = 323.15 // 50c + temp_low = 313.15 // 40c + wind_high = 6 + wind_low = 3 + flight_failure_modifier = 50 + transition_chances = list( + WEATHER_ASH_STORM_SAFE = 100 + ) + observed_message = "All that can be seen is black smoldering ash." + transition_messages = list( + "Smoldering clouds of scorching ash billow down around you!" + ) + // Lets recycle. + outdoor_sounds_type = /datum/looping_sound/weather/outside_blizzard + indoor_sounds_type = /datum/looping_sound/weather/inside_blizzard + // Totally radical. /datum/weather/virgo4/fallout diff --git a/code/modules/power/apc.dm b/code/modules/power/apc.dm index 3fd25a83e4..d4c8a8bf59 100644 --- a/code/modules/power/apc.dm +++ b/code/modules/power/apc.dm @@ -143,7 +143,7 @@ GLOBAL_LIST_EMPTY(apcs) var/updating_icon = 0 var/global/list/status_overlays_environ var/alarms_hidden = FALSE //If power alarms from this APC are visible on consoles - + var/nightshift_lights = FALSE var/nightshift_setting = NIGHTSHIFT_AUTO var/last_nightshift_switch = 0 @@ -198,7 +198,7 @@ GLOBAL_LIST_EMPTY(apcs) if(!pixel_x && !pixel_y) offset_apc() - + if(building) area = get_area(src) area.apc = src @@ -1360,6 +1360,7 @@ GLOBAL_LIST_EMPTY(apcs) for(var/obj/machinery/light/L in area) L.nightshift_mode(new_state) + L.update() //For some reason it gets hung up on updating the overlay for the light fixture somewhere down the line. This fixes it. CHECK_TICK #undef APC_UPDATE_ICON_COOLDOWN diff --git a/code/modules/power/breaker_box.dm b/code/modules/power/breaker_box.dm index f8915e08af..e666ba6f57 100644 --- a/code/modules/power/breaker_box.dm +++ b/code/modules/power/breaker_box.dm @@ -39,6 +39,9 @@ // Enabled on server startup. Used in substations to keep them in bypass mode. /obj/machinery/power/breakerbox/activated/Initialize() . = ..() + return INITIALIZE_HINT_LATELOAD + +/obj/machinery/power/breakerbox/activated/LateInitialize() set_state(1) /obj/machinery/power/breakerbox/examine(mob/user) diff --git a/code/modules/power/lighting.dm b/code/modules/power/lighting.dm index 621ee7484f..e1b41b602e 100644 --- a/code/modules/power/lighting.dm +++ b/code/modules/power/lighting.dm @@ -215,6 +215,7 @@ var/global/list/light_type_cache = list() idle_power_usage = 2 active_power_usage = 10 power_channel = LIGHT //Lights are calc'd via area so they dont need to be in the machine list + var/obj/item/weapon/light/installed_light //What light is currently in the socket! Updated in new() var/on = 0 // 1 if on, 0 if off var/brightness_range var/brightness_power @@ -344,9 +345,10 @@ var/global/list/light_type_cache = list() construct.transfer_fingerprints_to(src) set_dir(construct.dir) else + installed_light = new light_type(src) if(start_with_cell && !no_emergency) cell = new/obj/item/weapon/cell/emergency_light(src) - var/obj/item/weapon/light/L = get_light_type_instance(light_type) + var/obj/item/weapon/light/L = get_light_type_instance(light_type) //This is fine, but old code. update_from_bulb(L) if(prob(L.broken_chance)) broken(1) @@ -422,6 +424,7 @@ var/global/list/light_type_cache = list() if(!shows_alerts) return current_alert = "atmos" + light_color = "#6D6DFC" brightness_color = "#6D6DFC" update() @@ -429,6 +432,7 @@ var/global/list/light_type_cache = list() if(!shows_alerts) return current_alert = "fire" + light_color = "#FF3030" brightness_color = "#FF3030" update() @@ -437,7 +441,7 @@ var/global/list/light_type_cache = list() return current_alert = null - var/obj/item/weapon/light/L = get_light_type_instance(light_type) + var/obj/item/weapon/light/L = installed_light //This ensures any special bulbs will stay special! if(L) update_from_bulb(L) @@ -462,7 +466,12 @@ var/global/list/light_type_cache = list() var/correct_range = nightshift_enabled ? brightness_range_ns : brightness_range var/correct_power = nightshift_enabled ? brightness_power_ns : brightness_power var/correct_color = nightshift_enabled ? brightness_color_ns : brightness_color - if(light_range != correct_range || light_power != correct_power || light_color != correct_color) + var/correct_overlay = nightshift_enabled ? brightness_color_ns : brightness_color //Gives lights the correct overlay if NS is enabled. + if(current_alert) //Oh no, we're on fire! Or the atmos is bad! Let's change the color + correct_range = brightness_range + correct_power = brightness_power + correct_color = brightness_color + if(light_range != correct_range || light_power != correct_power || light_color != correct_color || overlay_color != correct_overlay) if(!auto_flicker) switchcount++ if(rigged) @@ -481,6 +490,7 @@ var/global/list/light_type_cache = list() else update_use_power(USE_POWER_ACTIVE) set_light(correct_range, correct_power, correct_color) + overlay_color = correct_overlay if(cell?.charge < cell?.maxcharge) START_PROCESSING(SSobj, src) else if(has_emergency_power(LIGHT_EMERGENCY_POWER_USE) && !turned_off()) @@ -490,8 +500,7 @@ var/global/list/light_type_cache = list() else update_use_power(USE_POWER_IDLE) set_light(0) - update_icon() - + update_light() //VOREStation Edit - Makes lights update when their color is changed. update_active_power_usage((light_range * light_power) * LIGHTING_POWER_FACTOR) /obj/machinery/light/proc/nightshift_mode(var/state) @@ -566,6 +575,7 @@ var/global/list/light_type_cache = list() brightness_range = L.brightness_range brightness_power = L.brightness_power brightness_color = L.brightness_color + overlay_color = L.brightness_color brightness_range_ns = L.nightshift_range brightness_power_ns = L.nightshift_power @@ -575,7 +585,8 @@ var/global/list/light_type_cache = list() /obj/machinery/light/proc/insert_bulb(obj/item/weapon/light/L) update_from_bulb(L) - qdel(L) + installed_light = L + L.loc = src //Move it into the socket! on = powered() update() @@ -588,16 +599,17 @@ var/global/list/light_type_cache = list() explode() /obj/machinery/light/proc/remove_bulb() - . = new light_type(src.loc, src) + //. = new light_type(src.loc, src) switchcount = 0 + installed_light = null status = LIGHT_EMPTY update() /obj/machinery/light/attackby(obj/item/W, mob/user) //Light replacer code - if(istype(W, /obj/item/device/lightreplacer)) + if(istype(W, /obj/item/device/lightreplacer)) //These will never be modified, so it's fine to use old code. var/obj/item/device/lightreplacer/LR = W if(isliving(user)) var/mob/living/U = user @@ -614,7 +626,9 @@ var/global/list/light_type_cache = list() return to_chat(user, "You insert [W].") + user.drop_item() insert_bulb(W) + update() //Like other places, this is done later down the line but this is essential to updating the overlay when nightmode is involved. Again, I have no idea WHY. src.add_fingerprint(user) // attempt to break the light @@ -719,6 +733,7 @@ var/global/list/light_type_cache = list() if(cell.charge > 300) //it's meant to handle 120 W, ya doofus visible_message("[src] short-circuits from too powerful of a power cell!") status = LIGHT_BURNED + installed_light.status = status return FALSE cell.use(pwr) set_light(brightness_range * bulb_emergency_brightness_mul, max(bulb_emergency_pow_min, bulb_emergency_pow_mul * (cell.charge / cell.maxcharge)), bulb_emergency_colour) @@ -800,8 +815,11 @@ var/global/list/light_type_cache = list() else to_chat(user, "You remove the light [get_fitting_name()].") - // create a light tube/bulb item and put it in the user's hand - user.put_in_active_hand(remove_bulb()) //puts it in our active hand + //Let's actually put the real bulb in their hand. + installed_light.status = status //Update the bulb they're being given. If it's broken, the bulb should be as well! + user.put_in_active_hand(installed_light) //puts it in our active hand + installed_light.update_icon() + remove_bulb() /obj/machinery/light/flamp/attack_hand(mob/user) if(lamp_shade) @@ -840,13 +858,17 @@ var/global/list/light_type_cache = list() var/datum/effect/effect/system/spark_spread/s = new /datum/effect/effect/system/spark_spread s.set_up(3, 1, src) s.start() - status = LIGHT_BROKEN + status = LIGHT_BROKEN //This occasionally runtimes when it occurs midround after build mode spawns a broken light. No idea why. + installed_light.status = status + installed_light.update_icon() update() /obj/machinery/light/proc/fix() if(status == LIGHT_OK) return status = LIGHT_OK + if(installed_light) + installed_light.status = LIGHT_OK on = 1 update() @@ -953,6 +975,13 @@ var/global/list/light_type_cache = list() drop_sound = 'sound/items/drop/glass.ogg' pickup_sound = 'sound/items/pickup/glass.ogg' + //VOREStation Edit Start - Modifiable Lighting + var/init_brightness_range = 8 + var/init_brightness_power = 1 + var/init_nightshift_range = 8 + var/init_nightshift_power = 0.45 + //VOREStation Edit End - Modifiable Lighting + /obj/item/weapon/light/tube name = "light tube" desc = "A replacement light tube." @@ -962,6 +991,8 @@ var/global/list/light_type_cache = list() matter = list(MAT_GLASS = 100) brightness_range = 7 brightness_power = 2 + init_brightness_range = 7 + init_brightness_power = 2 /obj/item/weapon/light/tube/large w_class = ITEMSIZE_SMALL @@ -972,6 +1003,11 @@ var/global/list/light_type_cache = list() nightshift_range = 10 nightshift_power = 1.5 + init_brightness_range = 15 + init_brightness_power = 4 + init_nightshift_range = 10 + init_nightshift_power = 1.5 + /obj/item/weapon/light/bulb name = "light bulb" desc = "A replacement light bulb." @@ -986,6 +1022,11 @@ var/global/list/light_type_cache = list() nightshift_range = 3 nightshift_power = 0.5 + init_brightness_range = 5 + init_brightness_power = 1 + init_nightshift_range = 3 + init_nightshift_power = 0.5 + // For 'floor lamps' in outdoor use and such /obj/item/weapon/light/bulb/large name = "large light bulb" @@ -995,6 +1036,11 @@ var/global/list/light_type_cache = list() nightshift_range = 4 nightshift_power = 0.75 + init_brightness_range = 7 + init_brightness_power = 1.5 + init_nightshift_range = 4 + init_nightshift_power = 0.75 + /obj/item/weapon/light/throw_impact(atom/hit_atom) ..() shatter() @@ -1003,6 +1049,7 @@ var/global/list/light_type_cache = list() brightness_range = 4 color = "#da0205" brightness_color = "#da0205" + init_brightness_range = 4 /obj/item/weapon/light/bulb/fire name = "fire bulb" @@ -1045,7 +1092,56 @@ var/global/list/light_type_cache = list() // if a syringe, can inject phoron to make it explode /obj/item/weapon/light/attackby(var/obj/item/I, var/mob/user) ..() - if(istype(I, /obj/item/weapon/reagent_containers/syringe)) + + //VOREStation Edit Start - Multitool Lighting! + if(istype(I,/obj/item/device/multitool)) + var/list/menu_list = list( + "Normal Range", + "Normal Brightness", + "Normal Color", + "Nightshift Range", + "Nightshift Brightness", + "Nightshift Color", + ) + + var/modification_decision = tgui_input_list(usr, "What do you wish to change about this light?", "Light Adjustment", menu_list) + if(!modification_decision) + return //They didn't select anything! + switch(modification_decision) + if("Normal Range") + var/new_range = tgui_input_number(usr, "Choose the new range of the light! (1-[init_brightness_range])", "", init_brightness_range, init_brightness_range, 1, 0) + if(new_range) + brightness_range = new_range + + if("Normal Brightness") + var/new_power = tgui_input_number(usr, "Choose the new brightness of the light! (0.01 - [init_brightness_power])", "", init_brightness_power, init_brightness_power, 0.01, 0) + if(new_power) + brightness_power = new_power + + if("Normal Color") + var/new_color = input(usr, "Choose a color to set the light to!", "", brightness_color) as color|null + if(new_color) + brightness_color = new_color + + if("Nightshift Range") + var/new_range = tgui_input_number(usr, "Choose the new range of the light! (1-[init_nightshift_range])", "", init_nightshift_range, init_nightshift_range, 1) + if(new_range) + nightshift_range = new_range + + if("Nightshift Brightness") + var/new_power = tgui_input_number(usr, "Choose the new brightness of the light! (0.01 - [init_nightshift_power])", "", init_nightshift_power, init_nightshift_power, 0.01) + if(new_power) + nightshift_power = new_power + + if("Nightshift Color") + var/new_color = input(usr, "Choose a color to set the light to!", "", nightshift_color) as color|null + if(new_color) + nightshift_color = new_color + + else //Should never happen. + return + + else if(istype(I, /obj/item/weapon/reagent_containers/syringe)) var/obj/item/weapon/reagent_containers/syringe/S = I to_chat(user, "You inject the solution into the [src].") diff --git a/code/modules/power/singularity/particle_accelerator/particle_control.dm b/code/modules/power/singularity/particle_accelerator/particle_control.dm index e4d3254fda..9ccf421b57 100644 --- a/code/modules/power/singularity/particle_accelerator/particle_control.dm +++ b/code/modules/power/singularity/particle_accelerator/particle_control.dm @@ -184,8 +184,8 @@ /obj/machinery/particle_accelerator/control_box/proc/toggle_power() active = !active investigate_log("turned [active?"ON":"OFF"] by [usr ? usr.key : "outside forces"]","singulo") - message_admins("PA Control Computer turned [active ?"ON":"OFF"] by [key_name(usr, usr.client)](?) in ([x],[y],[z] - JMP)",0,1) - log_game("PACCEL([x],[y],[z]) [key_name(usr)] turned [active?"ON":"OFF"].") + message_admins("PA Control Computer turned [active ?"ON":"OFF"] by [usr ? key_name(usr, usr.client) : "outside forces"](?) in ([x],[y],[z] - JMP)",0,1) + log_game("PACCEL([x],[y],[z]) [usr ? key_name(usr, usr.client) : "outside forces"] turned [active?"ON":"OFF"].") if(active) update_use_power(USE_POWER_ACTIVE) for(var/obj/structure/particle_accelerator/part in connected_parts) diff --git a/code/modules/projectiles/guns/energy/special_vr.dm b/code/modules/projectiles/guns/energy/special_vr.dm index 7bb75dcf90..aaab881599 100644 --- a/code/modules/projectiles/guns/energy/special_vr.dm +++ b/code/modules/projectiles/guns/energy/special_vr.dm @@ -1,29 +1,104 @@ -/obj/item/weapon/gun/energy/ionrifle/pistol - projectile_type = /obj/item/projectile/ion/pistol // still packs a punch but no AoE - w_class = ITEMSIZE_NORMAL //CHOMP Edit. - move_delay = 0 // CHOMPEdit: Pistols have move_delay of 0 - -/obj/item/weapon/gun/energy/ionrifle/weak - projectile_type = /obj/item/projectile/ion/small - -/obj/item/weapon/gun/energy/medigun //Adminspawn/ERT etc // CH edit - Changes ML3M to NERD - name = "directed restoration system" - desc = "The BL-3 'Phoenix' is an adaptation on the NERD 'Medbeam' design that channels the power of the beam into a single healing laser. It is highly energy-inefficient, but its medical power cannot be denied." - force = 5 - icon_state = "medbeam" - item_state = "medbeam" - icon = 'icons/obj/gun_vr.dmi' - item_icons = list( - slot_l_hand_str = 'icons/mob/items/lefthand_guns_vr.dmi', - slot_r_hand_str = 'icons/mob/items/righthand_guns_vr.dmi', - ) - slot_flags = SLOT_BELT - accuracy = 100 - fire_delay = 12 - fire_sound = 'sound/weapons/eluger.ogg' - - projectile_type = /obj/item/projectile/beam/medigun - - accept_cell_type = /obj/item/weapon/cell - cell_type = /obj/item/weapon/cell/high - charge_cost = 2500 \ No newline at end of file +/obj/item/weapon/gun/energy/ionrifle/pistol + projectile_type = /obj/item/projectile/ion/pistol // still packs a punch but no AoE + w_class = ITEMSIZE_NORMAL //CHOMP Edit. + move_delay = 0 // CHOMPEdit: Pistols have move_delay of 0 + +/obj/item/weapon/gun/energy/ionrifle/weak + projectile_type = /obj/item/projectile/ion/small + +/obj/item/weapon/gun/energy/medigun //Adminspawn/ERT etc // CH edit - Changes ML3M to NERD + name = "directed restoration system" + desc = "The BL-3 'Phoenix' is an adaptation on the NERD 'Medbeam' design that channels the power of the beam into a single healing laser. It is highly energy-inefficient, but its medical power cannot be denied." + force = 5 + icon_state = "medbeam" + item_state = "medbeam" + icon = 'icons/obj/gun_vr.dmi' + item_icons = list( + slot_l_hand_str = 'icons/mob/items/lefthand_guns_vr.dmi', + slot_r_hand_str = 'icons/mob/items/righthand_guns_vr.dmi', + ) + slot_flags = SLOT_BELT + accuracy = 100 + fire_delay = 12 + fire_sound = 'sound/weapons/eluger.ogg' + + projectile_type = /obj/item/projectile/beam/medigun + + accept_cell_type = /obj/item/weapon/cell + cell_type = /obj/item/weapon/cell/high + charge_cost = 2500 + +/obj/item/weapon/gun/energy/bfgtaser + name = "9000-series Ball Lightning Taser" + desc = "The brainchild of Hephaestus Industries Civil Pacification Division, the BLT-9000 was intended for riot control but despite enthusiastic interest from law-enforcement agencies across the Commonwealth and beyond, its indiscriminate nature led to it being banned from civilian use in virtually all jurisdictions. As a result, most pieces are found in the hands of collectors." + icon = 'icons/obj/gun_vr.dmi' + icon_state = "BFG" + fire_sound = 'sound/effects/phasein.ogg' + item_state = "mhdhowitzer" + wielded_item_state = "mhdhowitzer-wielded" //Placeholder + slot_flags = SLOT_BELT|SLOT_BACK + projectile_type = /obj/item/projectile/bullet/BFGtaser + fire_delay = 20 + w_class = ITEMSIZE_LARGE + one_handed_penalty = 90 // The thing's heavy and huge. + accuracy = 45 + charge_cost = 2400 //yes, this bad boy empties an entire weapon cell in one shot. What of it? + var/spinning_up = FALSE + +/obj/item/weapon/gun/energy/bfgtaser/Fire(atom/target, mob/living/user, clickparams, pointblank=0, reflex=0) + if(spinning_up) + return + if(!power_supply || !power_supply.check_charge(charge_cost)) + handle_click_empty(user) + return + + playsound(src, 'sound/weapons/chargeup.ogg', 100, 1) + spinning_up = TRUE + update_icon() + user.visible_message("[user] starts charging the [src]!", \ + "You start charging the [src]!") + if(do_after(user, 8, src)) + spinning_up = FALSE + ..() + else + spinning_up = FALSE + +/obj/item/projectile/beam/stun/weak/BFG + fire_sound = 'sound/effects/sparks6.ogg' + hitsound = 'sound/effects/sparks4.ogg' + hitsound_wall = 'sound/effects/sparks7.ogg' + +/obj/item/projectile/bullet/BFGtaser + name = "lightning ball" + icon = 'icons/obj/projectiles_vr.dmi' + icon_state = "minitesla" + speed=5 + damage = 100 + damage_type = AGONY + check_armour = "energy" + embed_chance = 0 + hitsound = 'sound/weapons/zapbang.ogg' + hitsound_wall = 'sound/weapons/effects/searwall.ogg' + var/zaptype = /obj/item/projectile/beam/stun/weak/BFG + +/obj/item/projectile/bullet/BFGtaser/process() + var/list/victims = list() + for(var/mob/living/M in living_mobs(world.view)) + if(M != firer) + victims += M + if(LAZYLEN(victims)) + var/target = pick(victims) + var/obj/item/projectile/P = new zaptype(src.loc) + P.launch_projectile_from_turf(target = target, target_zone = null, user = firer, params = null, angle_override = null, forced_spread = 0) + ..() + +/obj/item/projectile/bullet/BFGtaser/on_hit() + var/list/victims = list() + for(var/mob/living/M in living_mobs(world.view)) + if(M != firer) + victims += M + if(LAZYLEN(victims)) + for(var/target in victims) + var/obj/item/projectile/P = new zaptype(src.loc) + P.launch_projectile_from_turf(target = target, target_zone = null, user = firer, params = null, angle_override = null, forced_spread = 0) + ..() diff --git a/code/modules/reagents/machinery/dispenser/reagent_tank.dm b/code/modules/reagents/machinery/dispenser/reagent_tank.dm index 7f591217c8..13dc59c027 100644 --- a/code/modules/reagents/machinery/dispenser/reagent_tank.dm +++ b/code/modules/reagents/machinery/dispenser/reagent_tank.dm @@ -473,9 +473,9 @@ icon_state = "oiltank" amount_per_transfer_from_this = 120 -/obj/structure/reagent_dispensers/cookingoil/New() - ..() - reagents.add_reagent("cookingoil",5000) +/obj/structure/reagent_dispensers/cookingoil/Initialize() + . = ..() + reagents.add_reagent("cookingoil",5000) /obj/structure/reagent_dispensers/cookingoil/bullet_act(var/obj/item/projectile/Proj) if(Proj.get_structure_damage()) diff --git a/code/modules/reagents/reagents/_reagents.dm b/code/modules/reagents/reagents/_reagents.dm index 384696bb56..39b75494ca 100644 --- a/code/modules/reagents/reagents/_reagents.dm +++ b/code/modules/reagents/reagents/_reagents.dm @@ -168,7 +168,7 @@ affect_ingest(M, alien, removed * ingest_abs_mult) if(CHEM_TOUCH) affect_touch(M, alien, removed) - if(overdose && (volume > overdose * M?.species.chemOD_threshold) && (active_metab.metabolism_class != CHEM_TOUCH && !can_overdose_touch)) + if(overdose && (volume > overdose * M?.species.chemOD_threshold) && (active_metab.metabolism_class != CHEM_TOUCH || can_overdose_touch)) overdose(M, alien, removed) if(M.species.allergens & allergen_type) //uhoh, we can't handle this! M.add_chemical_effect(CE_ALLERGEN, allergen_factor * removed) diff --git a/code/modules/recycling/conveyor2.dm b/code/modules/recycling/conveyor2.dm index 1996a71358..335ed4240a 100644 --- a/code/modules/recycling/conveyor2.dm +++ b/code/modules/recycling/conveyor2.dm @@ -315,6 +315,13 @@ conveyors += C return +//CHOMPedit: Conveyor belts can be fast :) + if(istype(I, /obj/item/weapon/tool/wirecutters)) + if(panel_open) + toggle_speed() + to_chat(user, "You adjust the speed of the conveyor switch.") + return +//CHOMPedit End /obj/machinery/conveyor_switch/oneway var/convdir = 1 //Set to 1 or -1 depending on which way you want the convayor to go. (In other words keep at 1 and set the proper dir on the belts.) desc = "A conveyor control switch. It appears to only go in one direction." diff --git a/code/modules/resleeving/autoresleever.dm b/code/modules/resleeving/autoresleever.dm index 275c2a14e5..b902df6796 100644 --- a/code/modules/resleeving/autoresleever.dm +++ b/code/modules/resleeving/autoresleever.dm @@ -74,7 +74,7 @@ return var/client/ghost_client = ghost.client - + if(!is_alien_whitelisted(ghost, GLOB.all_species[ghost_client?.prefs?.species]) && !check_rights(R_ADMIN, 0)) // Prevents a ghost ghosting in on a slot and spawning via a resleever with race they're not whitelisted for, getting around normal join restrictions. to_chat(ghost, "You are not whitelisted to spawn as this species!") return @@ -132,7 +132,7 @@ else spawn_slots -- return - + if(tgui_alert(ghost, "Would you like to be resleeved?", "Resleeve", list("No","Yes")) == "No") return var/mob/living/carbon/human/new_character @@ -152,7 +152,7 @@ ghost.mind.transfer_to(new_character) new_character.key = player_key - + //Were they any particular special role? If so, copy. if(new_character.mind) new_character.mind.loaded_from_ckey = picked_ckey @@ -167,6 +167,11 @@ if(chosen_language) if(is_lang_whitelisted(src,chosen_language) || (new_character.species && (chosen_language.name in new_character.species.secondary_langs))) new_character.add_language(lang) + for(var/key in ghost_client.prefs.language_custom_keys) + if(ghost_client.prefs.language_custom_keys[key]) + var/datum/language/keylang = GLOB.all_languages[ghost_client.prefs.language_custom_keys[key]] + if(keylang) + new_character.language_keys[key] = keylang //If desired, apply equipment. if(equip_body) diff --git a/code/modules/rogueminer_vr/controller.dm b/code/modules/rogueminer_vr/controller.dm index 4c6c710120..efff235f2e 100644 --- a/code/modules/rogueminer_vr/controller.dm +++ b/code/modules/rogueminer_vr/controller.dm @@ -197,6 +197,6 @@ var/datum/controller/rogue/rm_controller rm_controller.dbg("RMC(pnz): Cleaning up oldest zone.") spawn(0) //Detatch it so we can return the new zone for now. var/datum/rogue/zonemaster/ZM_oldest = get_oldest_zone() - ZM_oldest.clean_zone() + if(ZM_oldest) ZM_oldest.clean_zone() return ZM_target \ No newline at end of file diff --git a/code/modules/rogueminer_vr/zonemaster.dm b/code/modules/rogueminer_vr/zonemaster.dm index 15d1887803..4826661d2d 100644 --- a/code/modules/rogueminer_vr/zonemaster.dm +++ b/code/modules/rogueminer_vr/zonemaster.dm @@ -171,8 +171,8 @@ #define XENOARCH_SPAWN_CHANCE 0.3 #define DIGSITESIZE_LOWER 4 #define DIGSITESIZE_UPPER 12 - #define ARTIFACTSPAWNNUM_LOWER 6 - #define ARTIFACTSPAWNNUM_UPPER 12 //Replace with difficulty-based ones. + #define ARTIFACTSPAWNNUM_LOWER 1 + #define ARTIFACTSPAWNNUM_UPPER 1 //Replace with difficulty-based ones. if(!M.mineral && prob(rm_controller.diffstep_chances[rm_controller.diffstep])) //Difficulty translates directly into ore chance rm_controller.dbg("ZM(par): Adding mineral to [M.x],[M.y].") diff --git a/code/modules/tgs/v5/chat_commands.dm b/code/modules/tgs/v5/chat_commands.dm index 58b71c906c..e43dfc1c31 100644 --- a/code/modules/tgs/v5/chat_commands.dm +++ b/code/modules/tgs/v5/chat_commands.dm @@ -21,7 +21,7 @@ else active++ - return "Current server status:\n**Web Manifest:** \n**Players:** [counts]\n**Active:** [active]\n**AFK:** [afks]\n**Bellied:** [bellied]\n\n**Round Duration:** [roundduration2text()]" //CHOMPEdit + return "Current server status:\n**Web Manifest:** \n**Players:** [counts]\n**Active:** [active]\n**Bar Statues:** [afks]\n**Bellied:** [bellied]\n\n**Round Duration:** [roundduration2text()]" //CHOMPEdit /datum/tgs_chat_command/parsetest name = "parsetest" diff --git a/code/modules/vchat/css/ss13styles.css b/code/modules/vchat/css/ss13styles.css index fbfbf7a44c..9e792729be 100644 --- a/code/modules/vchat/css/ss13styles.css +++ b/code/modules/vchat/css/ss13styles.css @@ -90,6 +90,8 @@ body.inverted { .pm .other {color: #0000ff;} /* Admin: Channels */ +.mentor {color: #808000;} +.mentor_channel {color: #808000; font-weight: bold;} .mod_channel {color: #735638; font-weight: bold;} .mod_channel .admin {color: #b82e00; font-weight: bold;} .admin_channel {color: #9611D4; font-weight: bold;} diff --git a/code/modules/vchat/js/vchat.js b/code/modules/vchat/js/vchat.js index 4bddf0e212..adccd59712 100644 --- a/code/modules/vchat/js/vchat.js +++ b/code/modules/vchat/js/vchat.js @@ -194,6 +194,14 @@ function start_vue() { admin: false }, //VOREStation Add End + { + matches: ".mentor_channel, .mentor", + becomes: "vc_mentor", + pretty: "Mentor messages", + tooltip: "Mentorchat and mentor pms", + required: false, + admin: false + }, { matches: ".filter_pm, .pm", becomes: "vc_adminpm", diff --git a/code/modules/vore/eating/belly_obj_vr.dm b/code/modules/vore/eating/belly_obj_vr.dm index 6297d002f5..0833c55e04 100644 --- a/code/modules/vore/eating/belly_obj_vr.dm +++ b/code/modules/vore/eating/belly_obj_vr.dm @@ -23,6 +23,8 @@ var/digest_brute = 0.5 // Brute damage per tick in digestion mode var/digest_burn = 0.5 // Burn damage per tick in digestion mode var/digest_oxy = 0 // Oxy damage per tick in digestion mode + var/digest_tox = 0 // Toxins damage per tick in digestion mode + var/digest_clone = 0 // Clone damage per tick in digestion mode var/immutable = FALSE // Prevents this belly from being deleted var/escapable = FALSE // Belly can be resisted out of at any time var/escapetime = 20 SECONDS // Deciseconds, how long to escape this belly @@ -178,6 +180,8 @@ "digest_brute", "digest_burn", "digest_oxy", + "digest_tox", + "digest_clone", "immutable", "can_taste", "escapable", @@ -289,6 +293,13 @@ /obj/belly/Entered(atom/movable/thing, atom/OldLoc) thing.belly_cycles = 0 //CHOMPEdit: reset cycle count if(istype(thing, /mob/observer)) //CHOMPEdit. Silence, spook. + if(desc) + //Allow ghosts see where they are if they're still getting squished along inside. + var/formatted_desc + formatted_desc = replacetext(desc, "%belly", lowertext(name)) //replace with this belly's name + formatted_desc = replacetext(formatted_desc, "%pred", owner) //replace with this belly's owner + formatted_desc = replacetext(formatted_desc, "%prey", thing) //replace with whatever mob entered into this belly + to_chat(thing, "[formatted_desc]") return if(OldLoc in contents) return //Someone dropping something (or being stripdigested) @@ -1187,6 +1198,8 @@ dupe.digest_brute = digest_brute dupe.digest_burn = digest_burn dupe.digest_oxy = digest_oxy + dupe.digest_tox = digest_tox + dupe.digest_clone = digest_clone dupe.immutable = immutable dupe.can_taste = can_taste dupe.escapable = escapable diff --git a/code/modules/vore/eating/bellymodes_datum_vr.dm b/code/modules/vore/eating/bellymodes_datum_vr.dm index f08da0fdca..ce45aeada3 100644 --- a/code/modules/vore/eating/bellymodes_datum_vr.dm +++ b/code/modules/vore/eating/bellymodes_datum_vr.dm @@ -55,13 +55,19 @@ GLOBAL_LIST_INIT(digest_modes, list()) var/old_brute = L.getBruteLoss() var/old_burn = L.getFireLoss() var/old_oxy = L.getOxyLoss() + var/old_tox = L.getToxLoss() + var/old_clone = L.getCloneLoss() L.adjustBruteLoss(B.digest_brute) L.adjustFireLoss(B.digest_burn) L.adjustOxyLoss(B.digest_oxy) + L.adjustToxLoss(B.digest_tox) + L.adjustCloneLoss(B.digest_clone) var/actual_brute = L.getBruteLoss() - old_brute var/actual_burn = L.getFireLoss() - old_burn var/actual_oxy = L.getOxyLoss() - old_oxy - var/damage_gain = (actual_brute + actual_burn + actual_oxy/2)*(B.nutrition_percent / 100) + var/actual_tox = L.getToxLoss() - old_tox + var/actual_clone = L.getCloneLoss() - old_clone + var/damage_gain = (actual_brute + actual_burn + actual_oxy/2 + actual_tox + actual_clone*2)*(B.nutrition_percent / 100) var/offset = (1 + ((L.weight - 137) / 137)) // 130 pounds = .95 140 pounds = 1.02 var/difference = B.owner.size_multiplier / L.size_multiplier @@ -79,9 +85,9 @@ GLOBAL_LIST_INIT(digest_modes, list()) B.digest_nutri_gain = offset*((B.nutrition_percent / 100)*0.5/(B.gen_cost*1.25)*(damage_gain)/difference) //for transfering nutrition value over to GenerateBellyReagents_digesting() B.GenerateBellyReagents_digesting() else - B.owner.adjust_nutrition(offset*(4.5 * (damage_gain) / difference)*L.get_digestion_nutrition_modifier()) //CHOMPedit end //4.5 nutrition points per health point. Normal same size 100+100 health prey with average weight would give 900 points if the digestion was instant. With all the size/weight offset taxes plus over time oxyloss+hunger taxes deducted with non-instant digestion, this should be enough to not leave the pred starved. + B.owner.adjust_nutrition(offset*(4.5 * (damage_gain) / difference)*L.get_digestion_nutrition_modifier()*B.owner.get_digestion_efficiency_modifier()) //CHOMPedit end //4.5 nutrition points per health point. Normal same size 100+100 health prey with average weight would give 900 points if the digestion was instant. With all the size/weight offset taxes plus over time oxyloss+hunger taxes deducted with non-instant digestion, this should be enough to not leave the pred starved. else - B.owner.adjust_nutrition((4.5 * (damage_gain) / difference)*L.get_digestion_nutrition_modifier()) + B.owner.adjust_nutrition((4.5 * (damage_gain) / difference)*L.get_digestion_nutrition_modifier()*B.owner.get_digestion_efficiency_modifier()) if(L.stat != oldstat) return list("to_update" = TRUE) @@ -279,4 +285,4 @@ GLOBAL_LIST_INIT(digest_modes, list()) tempmode = GLOB.digest_modes[DM_DIGEST] // If not absorbable, are they digestible? Then digest. else tempmode = GLOB.digest_modes[DM_DRAIN] // Otherwise drain. - return tempmode.process_mob(B, L) \ No newline at end of file + return tempmode.process_mob(B, L) diff --git a/code/modules/vore/eating/bellymodes_vr.dm b/code/modules/vore/eating/bellymodes_vr.dm index fa91e590aa..9146c76f51 100644 --- a/code/modules/vore/eating/bellymodes_vr.dm +++ b/code/modules/vore/eating/bellymodes_vr.dm @@ -329,6 +329,7 @@ GLOB.prey_digested_roundstat++ var/personal_nutrition_modifier = M.get_digestion_nutrition_modifier() + var/pred_digestion_efficiency = owner.get_digestion_efficiency_modifier() if((mode_flags & DM_FLAG_LEAVEREMAINS) && M.digest_leave_remains) handle_remains_leaving(M) @@ -347,7 +348,7 @@ owner.adjust_nutrition((nutrition_percent / 100) * compensation * 3 * personal_nutrition_modifier) GenerateBellyReagents_digested() else - owner.adjust_nutrition((nutrition_percent / 100) * compensation * 4.5 * personal_nutrition_modifier) //CHOMPedit end + owner.adjust_nutrition((nutrition_percent / 100) * compensation * 4.5 * personal_nutrition_modifier * pred_digestion_efficiency) //CHOMPedit end /obj/belly/proc/steal_nutrition(mob/living/L) if(L.nutrition >= 100) diff --git a/code/modules/vore/eating/inbelly_spawn.dm b/code/modules/vore/eating/inbelly_spawn.dm new file mode 100644 index 0000000000..207f3ca4e0 --- /dev/null +++ b/code/modules/vore/eating/inbelly_spawn.dm @@ -0,0 +1,182 @@ +/mob/observer/dead/verb/spawn_in_belly() + set category = "Ghost" + set name = "Spawn In Belly" + set desc = "Spawn in someone's belly." + + if(!client) + return + + // If any ghost-side restrictions are desired, they'll go here + + tgui_alert(src,{" +This verb allows you to spawn inside someone's belly when they are in round. +Make sure you to coordinate with your predator OOCly as well as roleplay approprietly. +You are considered to have been in the belly entire time the predator was around and are not added to crew lists. +This is not intended to be used for mechanical advantage or providing assistance, but for facilitating longterm scenes. +Please do not abuse this ability. +"},"OOC Warning") // Warning. + + var/list/eligible_targets = list() + + for(var/mob/living/pred in living_mob_list) + if(!istype(pred) || !pred.client) // Ignore preds that aren't living mobs or player controlled + continue + if(pred.no_vore) // No vore, no bellies, no inbelly spawning + continue + if(!(get_z(pred) in using_map.station_levels)) // No explo reinforcements + continue + if(ishuman(pred)) + var/mob/living/carbon/human/H = pred + if(!H.allow_inbelly_spawning) + continue + eligible_targets += H + continue + if(issilicon(pred)) + var/mob/living/silicon/S = pred + if(isAI(S)) + continue // Sorry, AI buddies. Your vore works too differently. + if(!S.allow_inbelly_spawning) + continue + eligible_targets += S + continue + if(istype(pred, /mob/living/simple_mob)) + var/mob/living/simple_mob/SM = pred + if(!SM.vore_active) // No vore, no bellies, no inbelly spawning + continue + if(!SM.allow_inbelly_spawning) + continue + eligible_targets += SM + continue + + // Only humans, simple_mobs and non-AI silicons are included. Obscure stuff like bots is skipped. + + if(!eligible_targets.len) + to_chat(src, "No eligible preds were found.") // :( + return + + var/mob/living/target = tgui_input_list(src, "Please specify which character you want to spawn inside of.", "Predator", eligible_targets) // Offer the list of things we gathered. + + if(!target || !client) // Did out target cease to exist? Or did we? + return + + // Notify them that its now pred's turn + to_chat(src, "Inbelly spawn request sent to predator.") + target.inbelly_spawn_prompt(client) // Hand reins over to them + +/mob/living/proc/inbelly_spawn_prompt(client/potential_prey) + if(!potential_prey || !istype(potential_prey)) // Did our prey cease to exist? + return + + // Are we cool with this prey spawning in at all? + var/answer = tgui_alert(src, "[potential_prey.ckey] (as [potential_prey.prefs.real_name]) wants to spawn in one of your bellies. Do you accept?", "Inbelly Spawning", list("Yes", "No")) + if(answer != "Yes") + to_chat(potential_prey, "Your request was turned down.") + return + + // Let them know so that they don't spam it. + to_chat(potential_prey, "Predator agreed to your request. Wait a bit while they choose a belly.") + + // Where we dropping? + var/obj/belly/belly_choice = tgui_input_list(src, "Choose Target Belly", "Belly Choice", src.vore_organs) + + // Wdym nowhere? + if(!belly_choice || !istype(belly_choice)) + to_chat(potential_prey, "Something went wrong with predator selecting a belly. Try again?") + to_chat(src, "No valid belly selected. Inbelly spawn cancelled.") + return + + // Extra caution never hurts + if(belly_choice.digest_mode == DM_DIGEST) + var/digest_answer = tgui_alert(src, "[belly_choice] is currently set to Digest. Are you sure you want to spawn prey there?", "Inbelly Spawning", list("Yes", "No")) + if(digest_answer != "Yes") + to_chat(potential_prey, "Something went wrong with predator selecting a belly. Try again?") + to_chat(src, "Inbelly spawn cancelled.") + + // Are they already fat (and/or appropriate equivalent)? + var/absorbed = FALSE + var/absorbed_answer = tgui_alert(src, "Do you want them to start absorbed?", "Inbelly Spawning", list("Yes", "No")) + + if(absorbed_answer == "Yes") + absorbed = TRUE + + // They disappeared? + if(!potential_prey) + to_chat(src, "No prey found. Something went wrong!") + return + + // Final confirmation for pred + var/confirmation_pred = tgui_alert(src, "Are you certain that you want [potential_prey.prefs.real_name] spawned in your [belly_choice][absorbed ? ", absorbed" : ""]?", "Inbelly Spawning", list("Yes", "No")) + + if(confirmation_pred != "Yes") + to_chat(potential_prey, "Your pred couldn't finish selection. Try again?") + to_chat(src, "Inbelly spawn cancelled.") + return + + to_chat(src, "Waiting for prey's confirmation...") + + // And final confirmation for prey + var/confirmation_prey = tgui_alert(potential_prey, "Are you certain that you to spawn in [src]'s [belly_choice][absorbed ? ", absorbed" : ""]?", "Inbelly Spawning", list("Yes", "No")) + + if(confirmation_prey == "Yes" && potential_prey && src && belly_choice) + //Now we finally spawn them in! + if(!is_alien_whitelisted(potential_prey, GLOB.all_species[potential_prey.prefs.species])) + to_chat(potential_prey, "You are not whitelisted to play as currently selected character.") + to_chat(src, "Prey accepted the confirmation, but something went wrong with spawning their character.") + return + inbelly_spawn(potential_prey, src, belly_choice, absorbed) + else + to_chat(potential_prey, "Inbelly spawn cancelled.") + to_chat(src, "Prey cancelled their inbelly spawn request.") + return + +/proc/inbelly_spawn(client/prey, mob/living/pred, obj/belly/target_belly, var/absorbed = FALSE) + // All this is basically admin late spawn-in, but skipping all parts related to records and equipment and with predteremined location + var/player_key = prey.key + var/picked_ckey = prey.ckey + var/picked_slot = prey.prefs.default_slot + var/mob/living/carbon/human/new_character + + new_character = new(null) // Spawn them in nullspace first. Can't have "Defaultname Defaultnameson slides into your Stomach". + + if(!new_character) + return + + prey.prefs.copy_to(new_character) + if(new_character.dna) + new_character.dna.ResetUIFrom(new_character) + new_character.sync_organ_dna() + new_character.key = player_key + if(new_character.mind) + var/datum/antagonist/antag_data = get_antag_data(new_character.mind.special_role) + if(antag_data) + antag_data.add_antagonist(new_character.mind) + antag_data.place_mob(new_character) + + if(new_character.mind) + new_character.mind.loaded_from_ckey = picked_ckey + new_character.mind.loaded_from_slot = picked_slot + + for(var/lang in prey.prefs.alternate_languages) + var/datum/language/chosen_language = GLOB.all_languages[lang] + if(chosen_language) + if(is_lang_whitelisted(prey,chosen_language) || (new_character.species && (chosen_language.name in new_character.species.secondary_langs))) + new_character.add_language(lang) + for(var/key in prey.prefs.language_custom_keys) + if(prey.prefs.language_custom_keys[key]) + var/datum/language/keylang = GLOB.all_languages[prey.prefs.language_custom_keys[key]] + if(keylang) + new_character.language_keys[key] = keylang + + new_character.regenerate_icons() + + new_character.update_transform() + + new_character.forceMove(target_belly) // Now that they're all setup and configured, send them to their destination. + + if(absorbed) + target_belly.absorb_living(new_character) // Glorp. + + log_admin("[prey] (as [new_character.real_name] has spawned inside one of [pred]'s bellies.") // Log it. Avoid abuse. + message_admins("[prey] (as [new_character.real_name] has spawned inside one of [pred]'s bellies.", 1) + + return new_character // incase its ever needed \ No newline at end of file diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index 9430154440..6e64db0d10 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -117,6 +117,10 @@ B.name = "Stomach" B.desc = "It appears to be rather warm and wet. Makes sense, considering it's inside \the [name]." B.can_taste = TRUE + if(ishuman(src)) + var/mob/living/carbon/human/H = src + if(istype(H.species,/datum/species/monkey)) + allow_spontaneous_tf = TRUE return TRUE // @@ -743,6 +747,9 @@ /mob/living/proc/get_digestion_nutrition_modifier() return 1 +/mob/living/proc/get_digestion_efficiency_modifier() + return 1 + /mob/living/proc/eat_trash() set name = "Eat Trash" set category = "Abilities" @@ -1086,54 +1093,72 @@ set category = "Preferences" set desc = "Print out your vorebelly messages into chat for copypasting." - for(var/belly in vore_organs) - if(isbelly(belly)) - var/obj/belly/B = belly - to_chat(src, "Belly name: [B.name]") - to_chat(src, "Belly desc: [B.desc]") - to_chat(src, "Belly absorbed desc: [B.absorbed_desc]") - to_chat(src, "Vore verb: [B.vore_verb]") - to_chat(src, "Release verb: [B.release_verb]") - to_chat(src, "Struggle messages (outside):") - for(var/msg in B.struggle_messages_outside) - to_chat(src, "[msg]") - to_chat(src, "Struggle messages (inside):") - for(var/msg in B.struggle_messages_inside) - to_chat(src, "[msg]") - to_chat(src, "Absorbed struggle messages (outside):") - for(var/msg in B.absorbed_struggle_messages_outside) - to_chat(src, "[msg]") - to_chat(src, "Absorbed struggle messages (inside):") - for(var/msg in B.absorbed_struggle_messages_inside) - to_chat(src, "[msg]") - to_chat(src, "Digest messages (owner):") - for(var/msg in B.digest_messages_owner) - to_chat(src, "[msg]") - to_chat(src, "Digest messages (prey):") - for(var/msg in B.digest_messages_prey) - to_chat(src, "[msg]") - to_chat(src, "Absorb messages:") - for(var/msg in B.absorb_messages_owner) - to_chat(src, "[msg]") - to_chat(src, "Absorb messages (prey):") - for(var/msg in B.absorb_messages_prey) - to_chat(src, "[msg]") - to_chat(src, "Unabsorb messages:") - for(var/msg in B.unabsorb_messages_owner) - to_chat(src, "[msg]") - to_chat(src, "Unabsorb messages (prey):") - for(var/msg in B.unabsorb_messages_prey) - to_chat(src, "[msg]") - to_chat(src, "Examine messages:") - for(var/msg in B.examine_messages) - to_chat(src, "[msg]") - for(var/msg in B.examine_messages_absorbed) - to_chat(src, "[msg]") - to_chat(src, "Emote lists:") - for(var/EL in B.emote_lists) - to_chat(src, "[EL]:") - for(var/msg in B.emote_lists[EL]) + //CHOMPEdit - "Belly HTML Export Earlyport" + var/result = tgui_alert(src, "Would you rather open the export panel?", "Selected Belly Export", list("Open Panel", "Print to Chat")) + if(result == "Open Panel") + var/mob/living/user = usr + if(!user) + to_chat(usr,"Mob undefined: [user]") + return FALSE + + var/datum/vore_look/export_panel/exportPanel + if(!exportPanel) + exportPanel = new(usr) + + if(!exportPanel) + to_chat(user,"Export panel undefined: [exportPanel]") + return + + exportPanel.tgui_interact(user) + else + for(var/belly in vore_organs) + if(isbelly(belly)) + var/obj/belly/B = belly + to_chat(src, "Belly name: [B.name]") + to_chat(src, "Belly desc: [B.desc]") + to_chat(src, "Belly absorbed desc: [B.absorbed_desc]") + to_chat(src, "Vore verb: [B.vore_verb]") + to_chat(src, "Struggle messages (outside):") + for(var/msg in B.struggle_messages_outside) to_chat(src, "[msg]") + to_chat(src, "Struggle messages (inside):") + for(var/msg in B.struggle_messages_inside) + to_chat(src, "[msg]") + to_chat(src, "Absorbed struggle messages (outside):") + for(var/msg in B.absorbed_struggle_messages_outside) + to_chat(src, "[msg]") + to_chat(src, "Absorbed struggle messages (inside):") + for(var/msg in B.absorbed_struggle_messages_inside) + to_chat(src, "[msg]") + to_chat(src, "Digest messages (owner):") + for(var/msg in B.digest_messages_owner) + to_chat(src, "[msg]") + to_chat(src, "Digest messages (prey):") + for(var/msg in B.digest_messages_prey) + to_chat(src, "[msg]") + to_chat(src, "Absorb messages:") + for(var/msg in B.absorb_messages_owner) + to_chat(src, "[msg]") + to_chat(src, "Absorb messages (prey):") + for(var/msg in B.absorb_messages_prey) + to_chat(src, "[msg]") + to_chat(src, "Unabsorb messages:") + for(var/msg in B.unabsorb_messages_owner) + to_chat(src, "[msg]") + to_chat(src, "Unabsorb messages (prey):") + for(var/msg in B.unabsorb_messages_prey) + to_chat(src, "[msg]") + to_chat(src, "Examine messages:") + for(var/msg in B.examine_messages) + to_chat(src, "[msg]") + for(var/msg in B.examine_messages_absorbed) + to_chat(src, "[msg]") + to_chat(src, "Emote lists:") + for(var/EL in B.emote_lists) + to_chat(src, "[EL]:") + for(var/msg in B.emote_lists[EL]) + to_chat(src, "[msg]") + //CHOMPEdit End /** * Small helper component to manage the vore panel HUD icon diff --git a/code/modules/vore/eating/stumblevore_vr.dm b/code/modules/vore/eating/stumblevore_vr.dm index 7c17c604b3..cdaae1d5df 100644 --- a/code/modules/vore/eating/stumblevore_vr.dm +++ b/code/modules/vore/eating/stumblevore_vr.dm @@ -32,10 +32,10 @@ M.Weaken(4) M.stop_flying() if(CanStumbleVore(M)) - visible_message("[M] flops carlessly into [src]!") + visible_message("[M] flops carelessly into [src]!") perform_the_nom(src,M,src,src.vore_selected,1) else if(M.CanStumbleVore(src)) - visible_message("[M] flops carlessly into [src]!") + visible_message("[M] flops carelessly into [src]!") perform_the_nom(M,src,M,M.vore_selected,1) else if(istype(S) && S.species.lightweight == 1) visible_message("[M] carelessly bowls [src] over!") @@ -51,4 +51,4 @@ else visible_message("[M] trips over [src]!") M.forceMove(get_turf(src)) - M.apply_damage(1, BRUTE) \ No newline at end of file + M.apply_damage(1, BRUTE) diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index 96bd26fec5..80e9fb8058 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -186,6 +186,8 @@ "digest_brute" = selected.digest_brute, "digest_burn" = selected.digest_burn, "digest_oxy" = selected.digest_oxy, + "digest_tox" = selected.digest_tox, + "digest_clone" = selected.digest_clone, "bulge_size" = selected.bulge_size, "save_digest_mode" = selected.save_digest_mode, "display_absorbed_examine" = selected.display_absorbed_examine, @@ -441,6 +443,25 @@ to_chat(usr,"Chomp-specific preferences applied from active slot!") unsaved_changes = FALSE return TRUE + //CHOMPEdit - "Belly HTML Export Earlyport" + if("exportpanel") + var/mob/living/user = usr + if(!user) + to_chat(usr,"Mob undefined: [user]") + return FALSE + + var/datum/vore_look/export_panel/exportPanel + if(!exportPanel) + exportPanel = new(usr) + + if(!exportPanel) + to_chat(user,"Export panel undefined: [exportPanel]") + return FALSE + + exportPanel.open_export_panel(user) + + return TRUE + //CHOMPEdit End if("setflavor") var/new_flavor = html_encode(tgui_input_text(usr,"What your character tastes like (400ch limit). This text will be printed to the pred after 'X tastes of...' so just put something like 'strawberries and cream':","Character Flavor",host.vore_taste)) if(!new_flavor) @@ -1216,6 +1237,20 @@ var/new_new_damage = CLAMP(new_damage, 0, 12) host.vore_selected.digest_oxy = new_new_damage . = TRUE + if("b_tox_dmg") + var/new_damage = tgui_input_number(user, "Choose the amount of toxins damage prey will take per tick. Ranges from 0 to 6", "Set Belly Toxins Damage.", host.vore_selected.digest_tox, 6, 0) + if(new_damage == null) + return FALSE + var/new_new_damage = CLAMP(new_damage, 0, 6) + host.vore_selected.digest_tox = new_new_damage + . = TRUE + if("b_clone_dmg") + var/new_damage = tgui_input_number(user, "Choose the amount of brute DNA damage (clone) prey will take per tick. Ranges from 0 to 6", "Set Belly Clone Damage.", host.vore_selected.digest_clone, 6, 0) + if(new_damage == null) + return FALSE + var/new_new_damage = CLAMP(new_damage, 0, 6) + host.vore_selected.digest_clone = new_new_damage + . = TRUE if("b_emoteactive") host.vore_selected.emote_active = !host.vore_selected.emote_active . = TRUE diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm index 471d992c40..db45b0bc46 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm @@ -667,7 +667,7 @@ /obj/item/clothing/head/fluff/avida/mob_can_equip(var/mob/living/carbon/human/H, slot, disable_warning = 0) if(..()) - if(H.ear_style.name == "Bnnuy Ears"||H.ear_style.name == "Bnnuy Ears 2") //check if wearer's ear sprite is compatible with trimmed icon + if(H.ear_style && (H.ear_style.name == "Bnnuy Ears" || H.ear_style.name == "Bnnuy Ears 2")) //check if wearer's ear sprite is compatible with trimmed icon item_state = initial(src.item_state) else //if not, just use a generic icon item_state = "avidahatnoears" diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm index cdbf8dc582..97c97fb0ce 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -1424,6 +1424,31 @@ End CHOMP Removal*/ icon_state = "stamp-midhorror" stamptext = "This paper has been certified by The Council of Mid Horror" +//Coolcrow420 - M41l +/obj/item/weapon/implant/language/fluff/m41l + name = "dusty hard drive" + desc = "A hard drive containing knowledge of various languages." + +/obj/item/weapon/implant/language/fluff/m41l/post_implant(mob/M) + to_chat(M,"LANGUAGES - LOADING") + M.add_language(LANGUAGE_SKRELLIAN) + M.add_language(LANGUAGE_UNATHI) + M.add_language(LANGUAGE_SIIK) + M.add_language(LANGUAGE_EAL) + M.add_language(LANGUAGE_SCHECHI) + M.add_language(LANGUAGE_ZADDAT) + M.add_language(LANGUAGE_BIRDSONG) + M.add_language(LANGUAGE_SAGARU) + M.add_language(LANGUAGE_DAEMON) + M.add_language(LANGUAGE_ENOCHIAN) + M.add_language(LANGUAGE_VESPINAE) +// M.add_language(LANGUAGE_SLAVIC) + M.add_language(LANGUAGE_DRUDAKAR) + M.add_language(LANGUAGE_SPACER) + M.add_language(LANGUAGE_TAVAN) + M.add_language(LANGUAGE_ECHOSONG) + to_chat(M,"LANGUAGES - INITIALISED") + //thedavestdave Lucky ///I know this is pretty bodgey but if it stupid and it works it isn't stupid /obj/item/clothing/suit/armor/combat/crusader_costume/lucky diff --git a/code/modules/vore/resizing/sizegun_vr.dm b/code/modules/vore/resizing/sizegun_vr.dm index 8decb8dde6..4273771ac5 100644 --- a/code/modules/vore/resizing/sizegun_vr.dm +++ b/code/modules/vore/resizing/sizegun_vr.dm @@ -5,8 +5,9 @@ name = "size gun" //I have no idea why this was called shrink ray when this increased and decreased size. desc = "A highly advanced ray gun with a knob on the side to adjust the size you desire. Warning: Do not insert into mouth." icon = 'icons/obj/gun_vr.dmi' - icon_state = "sizegun" + icon_state = "sizegun-shrink100" item_state = "sizegun" + var/initial_icon_state = "sizegun" item_icons = list(slot_l_hand_str = 'icons/mob/items/lefthand_guns_vr.dmi', slot_r_hand_str = 'icons/mob/items/righthand_guns_vr.dmi') fire_sound = 'sound/weapons/wave.ogg' charge_cost = 240 @@ -64,8 +65,8 @@ else ratio = max(round(ratio, 0.25) * 100, 25) - icon_state = "[initial(icon_state)]-[grow_mode][ratio]" - item_state = "[initial(icon_state)]-[grow_mode]" + icon_state = "[initial_icon_state]-[grow_mode][ratio]" + item_state = "[initial_icon_state]-[grow_mode]" if(!ignore_inhands) update_held_icon() @@ -82,8 +83,9 @@ creature well beyond any conceivable size. Only a handfull of these \ exist in the known universe and they are \ exclusively owned by NanoTrasen for research purposes." - icon_state = "sizegun_admin" + icon_state = "sizegun_admin-shrink100" item_state = "sizegun_admin" + initial_icon_state = "sizegun_admin" charge_cost = 0 projectile_type = /obj/item/projectile/beam/sizelaser/admin @@ -105,8 +107,9 @@ name = "alien size gun" desc = "A strange looking ray gun weapon with an adjustor knob on the side. The design is alien, but it bares a striking resemblence to the older model size guns that NT uses for research." catalogue_data = list(/datum/category_item/catalogue/anomalous/precursor_a/alien_sizegun) - icon_state = "sizegun-abductor" + icon_state = "sizegun-abductor-shrink100" item_state = "sizegun-abductor" + initial_icon_state = "sizegun-abductor" charge_cost = 0 projectile_type = /obj/item/projectile/beam/sizelaser/admin/alien diff --git a/code/modules/vore/smoleworld/smoleworld_vr.dm b/code/modules/vore/smoleworld/smoleworld_vr.dm index ae44a9ab2b..0ea518d99a 100644 --- a/code/modules/vore/smoleworld/smoleworld_vr.dm +++ b/code/modules/vore/smoleworld/smoleworld_vr.dm @@ -194,8 +194,10 @@ density = TRUE anchored = TRUE color = "#ffffff" + micro_target = TRUE //Now micros can enter and navigate these things!!! var/health = 75 var/damage + //makes it so buildings can be dismaintaled or GodZilla style attacked /obj/structure/smolebuilding/attack_hand(mob/user) if(user.a_intent == I_DISARM) diff --git a/code/modules/xenoarcheaology/effects/gravitational_waves.dm b/code/modules/xenoarcheaology/effects/gravitational_waves.dm index d34b352ea0..c22eb87167 100644 --- a/code/modules/xenoarcheaology/effects/gravitational_waves.dm +++ b/code/modules/xenoarcheaology/effects/gravitational_waves.dm @@ -1,30 +1,42 @@ - -/datum/artifact_effect/gravity_wave +/datum/artifact_effect/extreme/gravity_wave name = "gravity wave" effect_type = EFFECT_ENERGY var/last_wave_pull = 0 + var/pull_power effect_state = "gravisphere" effect_color = "#d8c3ff" -/datum/artifact_effect/gravity_wave/DoEffectTouch(var/mob/user) - gravwave(user, effectrange, STAGE_TWO) +/datum/artifact_effect/extreme/gravity_wave/New() + ..() + effect_type = pick(EFFECT_ENERGY, EFFECT_BLUESPACE, EFFECT_PSIONIC) + switch(pick(100;1, 50;2, 25;3)) + if(1) //short range + effectrange = rand(2, 4) + if(2) //medium range + effectrange = rand(5, 9) + if(3) //large range + effectrange = rand(9, 14) + pull_power = rand(STAGE_ONE, STAGE_FOUR) -/datum/artifact_effect/gravity_wave/DoEffectAura() +/datum/artifact_effect/extreme/gravity_wave/DoEffectTouch(var/mob/user) + gravwave(user, effectrange, pull_power) + +/datum/artifact_effect/extreme/gravity_wave/DoEffectAura() var/atom/holder = get_master_holder() var/seconds_since_last_pull = max(0, round((last_wave_pull - world.time) / 10)) if(prob(10 + seconds_since_last_pull)) holder.visible_message("\The [holder] distorts as local gravity intensifies, and shifts toward it.") last_wave_pull = world.time - gravwave(get_turf(holder), effectrange, STAGE_TWO) + gravwave(get_turf(holder), effectrange, pull_power) -/datum/artifact_effect/gravity_wave/DoEffectPulse() +/datum/artifact_effect/extreme/gravity_wave/DoEffectPulse() var/atom/holder = get_master_holder() holder.visible_message("\The [holder] distorts as local gravity intensifies, and shifts toward it.") - gravwave(get_turf(holder), effectrange, STAGE_TWO) + gravwave(get_turf(holder), effectrange, pull_power) -/proc/gravwave(var/atom/target, var/pull_range = 7, var/pull_power = STAGE_TWO) +/datum/artifact_effect/extreme/gravity_wave/proc/gravwave(var/atom/target, var/pull_range = 7, var/pull_power = STAGE_TWO) for(var/atom/A in oview(pull_range, target)) A.singularity_pull(target, pull_power) diff --git a/code/stylesheet.dm b/code/stylesheet.dm index cb5b78589d..e32f3f10d2 100644 --- a/code/stylesheet.dm +++ b/code/stylesheet.dm @@ -34,6 +34,8 @@ em {font-style: normal;font-weight: bold;} .pm .other {color: #0000ff;} /* Admin: Channels */ +.mentor_channel {color: #808000; font-weight: bold;} +.mentor {color: #808000;} .mod_channel {color: #735638; font-weight: bold;} .mod_channel .admin {color: #b82e00; font-weight: bold;} .admin_channel {color: #9611D4; font-weight: bold;} diff --git a/guides/New Mapper Mapmerge Readme.md b/guides/New Mapper Mapmerge Readme.md index ae64b979bf..bd8add3d4c 100644 --- a/guides/New Mapper Mapmerge Readme.md +++ b/guides/New Mapper Mapmerge Readme.md @@ -4,4 +4,6 @@ Run dmm2tgm.bat, find the map you edited, and type it in. For instance, as of th If Southern Cross 2 is still 33, type in 33 and hit enter, it will run mapmerge. This reduces the filediff for easier Git merging. -NOTE that this is not "merging" two maps together. ALL YOU ARE DOING IS REDUCING FILEDIFF. IF YOU NEED TO MAPMERGE PROPERLY, @ A DEVELOPER OR SOMEONE WITH MAPPING EXPERIENCE. \ No newline at end of file +NOTE that this is not "merging" two maps together. ALL YOU ARE DOING IS REDUCING FILEDIFF. IF YOU NEED TO MAPMERGE PROPERLY, @ A DEVELOPER OR SOMEONE WITH MAPPING EXPERIENCE. + +NOTE 2: If you are using strongDMM and saving as a tgm filetype (as VerySoft's Rascal's Pass POI mapping guide in discord instructs), you do NOT need to use the dmm2tgm.bat utility. Saving it directly as a .tgm file is sufficient. diff --git a/icons/_nanomaps/southern_cross_nanomap_z10.png b/icons/_nanomaps/southern_cross_nanomap_z10.png index ee4a75e5ae..c0209bedd7 100644 Binary files a/icons/_nanomaps/southern_cross_nanomap_z10.png and b/icons/_nanomaps/southern_cross_nanomap_z10.png differ diff --git a/icons/_nanomaps/southern_cross_nanomap_z5.png b/icons/_nanomaps/southern_cross_nanomap_z5.png index e3ca9e3d8e..9b8337b081 100644 Binary files a/icons/_nanomaps/southern_cross_nanomap_z5.png and b/icons/_nanomaps/southern_cross_nanomap_z5.png differ diff --git a/icons/_nanomaps/southern_cross_nanomap_z6.png b/icons/_nanomaps/southern_cross_nanomap_z6.png index ff31a864c8..2a84e39544 100644 Binary files a/icons/_nanomaps/southern_cross_nanomap_z6.png and b/icons/_nanomaps/southern_cross_nanomap_z6.png differ diff --git a/icons/_nanomaps/southern_cross_nanomap_z8.png b/icons/_nanomaps/southern_cross_nanomap_z8.png index 3d660ba999..cdf0441dc1 100644 Binary files a/icons/_nanomaps/southern_cross_nanomap_z8.png and b/icons/_nanomaps/southern_cross_nanomap_z8.png differ diff --git a/icons/chattags.dmi b/icons/chattags.dmi index 699f1b53a1..ef7eee0f4c 100644 Binary files a/icons/chattags.dmi and b/icons/chattags.dmi differ diff --git a/icons/effects/weather.dmi b/icons/effects/weather.dmi index 355288fc32..94c1fed992 100644 Binary files a/icons/effects/weather.dmi and b/icons/effects/weather.dmi differ diff --git a/icons/inventory/accessory/item_vr.dmi b/icons/inventory/accessory/item_vr.dmi index 91e3c4e7d6..a21b81c2b4 100644 Binary files a/icons/inventory/accessory/item_vr.dmi and b/icons/inventory/accessory/item_vr.dmi differ diff --git a/icons/inventory/head/item.dmi b/icons/inventory/head/item.dmi index c1528bbe20..fd54c269c1 100644 Binary files a/icons/inventory/head/item.dmi and b/icons/inventory/head/item.dmi differ diff --git a/icons/inventory/head/mob.dmi b/icons/inventory/head/mob.dmi index 063d6444df..bbe938bd39 100644 Binary files a/icons/inventory/head/mob.dmi and b/icons/inventory/head/mob.dmi differ diff --git a/icons/inventory/uniform/mob.dmi b/icons/inventory/uniform/mob.dmi index d368c3a4d7..8d89071753 100644 Binary files a/icons/inventory/uniform/mob.dmi and b/icons/inventory/uniform/mob.dmi differ diff --git a/icons/mob/drakeborg/drakeborg_vr.dmi b/icons/mob/drakeborg/drakeborg_vr.dmi index 1be714814b..56a79ce19c 100644 Binary files a/icons/mob/drakeborg/drakeborg_vr.dmi and b/icons/mob/drakeborg/drakeborg_vr.dmi differ diff --git a/icons/mob/human_races/markings_ch.dmi b/icons/mob/human_races/markings_ch.dmi index 5cc3d842c4..abff58fe74 100644 Binary files a/icons/mob/human_races/markings_ch.dmi and b/icons/mob/human_races/markings_ch.dmi differ diff --git a/icons/mob/human_races/markings_digi_ch.dmi b/icons/mob/human_races/markings_digi_ch.dmi index 924b4f54dd..dbe633fac4 100644 Binary files a/icons/mob/human_races/markings_digi_ch.dmi and b/icons/mob/human_races/markings_digi_ch.dmi differ diff --git a/icons/mob/human_races/r_blank.dmi b/icons/mob/human_races/r_blank.dmi new file mode 100644 index 0000000000..9b2fb0341d Binary files /dev/null and b/icons/mob/human_races/r_blank.dmi differ diff --git a/icons/mob/human_races/r_skrell_vr.dmi b/icons/mob/human_races/r_skrell_vr.dmi index ef6688b026..de1775db3a 100644 Binary files a/icons/mob/human_races/r_skrell_vr.dmi and b/icons/mob/human_races/r_skrell_vr.dmi differ diff --git a/icons/mob/human_races/subspecies/r_vatgrown.dmi b/icons/mob/human_races/subspecies/r_vatgrown.dmi index c1562d2b67..25680167e3 100644 Binary files a/icons/mob/human_races/subspecies/r_vatgrown.dmi and b/icons/mob/human_races/subspecies/r_vatgrown.dmi differ diff --git a/icons/mob/screen1_robot.dmi b/icons/mob/screen1_robot.dmi index e4ae2f77c8..5711ac1f4c 100644 Binary files a/icons/mob/screen1_robot.dmi and b/icons/mob/screen1_robot.dmi differ diff --git a/icons/mob/screen1_robot_minimalist.dmi b/icons/mob/screen1_robot_minimalist.dmi index c05e304763..e53ab2503d 100644 Binary files a/icons/mob/screen1_robot_minimalist.dmi and b/icons/mob/screen1_robot_minimalist.dmi differ diff --git a/icons/mob/screen1_robot_vr.dmi b/icons/mob/screen1_robot_vr.dmi index 33046af195..a2cdb93d8e 100644 Binary files a/icons/mob/screen1_robot_vr.dmi and b/icons/mob/screen1_robot_vr.dmi differ diff --git a/icons/mob/taursuits_horse_vr.dmi b/icons/mob/taursuits_horse_vr.dmi index 4986bed14f..33ab8cd9af 100644 Binary files a/icons/mob/taursuits_horse_vr.dmi and b/icons/mob/taursuits_horse_vr.dmi differ diff --git a/icons/mob/vore/tails_ch.dmi b/icons/mob/vore/tails_ch.dmi index b30793a048..ba1c5b6103 100644 Binary files a/icons/mob/vore/tails_ch.dmi and b/icons/mob/vore/tails_ch.dmi differ diff --git a/icons/mob/vore/tails_vr.dmi b/icons/mob/vore/tails_vr.dmi index 1b2e946079..74b8d5fe60 100644 Binary files a/icons/mob/vore/tails_vr.dmi and b/icons/mob/vore/tails_vr.dmi differ diff --git a/icons/mob/vore/taurs_ch.dmi b/icons/mob/vore/taurs_ch.dmi index 7e8e01283f..302002993d 100644 Binary files a/icons/mob/vore/taurs_ch.dmi and b/icons/mob/vore/taurs_ch.dmi differ diff --git a/icons/mob/vore/wings96_vr.dmi b/icons/mob/vore/wings96_vr.dmi new file mode 100644 index 0000000000..f7dc2e61f8 Binary files /dev/null and b/icons/mob/vore/wings96_vr.dmi differ diff --git a/icons/mob/vore/wings_ch.dmi b/icons/mob/vore/wings_ch.dmi index 5b90a078d5..296313cfeb 100644 Binary files a/icons/mob/vore/wings_ch.dmi and b/icons/mob/vore/wings_ch.dmi differ diff --git a/icons/obj/boxes.dmi b/icons/obj/boxes.dmi index 948cb472da..4cfbd48c04 100644 Binary files a/icons/obj/boxes.dmi and b/icons/obj/boxes.dmi differ diff --git a/icons/obj/boxes_vr.dmi b/icons/obj/boxes_vr.dmi new file mode 100644 index 0000000000..c64a7e5017 Binary files /dev/null and b/icons/obj/boxes_vr.dmi differ diff --git a/icons/obj/drinks_ch.dmi b/icons/obj/drinks_ch.dmi deleted file mode 100644 index 369372f3a5..0000000000 Binary files a/icons/obj/drinks_ch.dmi and /dev/null differ diff --git a/icons/obj/food_vr.dmi b/icons/obj/food_vr.dmi index 64b55a6b26..f40c7061f9 100644 Binary files a/icons/obj/food_vr.dmi and b/icons/obj/food_vr.dmi differ diff --git a/icons/obj/gun_vr.dmi b/icons/obj/gun_vr.dmi index e0788a56e9..538ff61b76 100644 Binary files a/icons/obj/gun_vr.dmi and b/icons/obj/gun_vr.dmi differ diff --git a/icons/obj/nanomods.dmi b/icons/obj/nanomods.dmi index f957c63983..c3e5216602 100644 Binary files a/icons/obj/nanomods.dmi and b/icons/obj/nanomods.dmi differ diff --git a/icons/obj/nanomods_vr.dmi b/icons/obj/nanomods_vr.dmi new file mode 100644 index 0000000000..95221599a7 Binary files /dev/null and b/icons/obj/nanomods_vr.dmi differ diff --git a/icons/obj/projectiles_vr.dmi b/icons/obj/projectiles_vr.dmi index 7cdadb1a0e..a274d3edc2 100644 Binary files a/icons/obj/projectiles_vr.dmi and b/icons/obj/projectiles_vr.dmi differ diff --git a/icons/obj/stacks.dmi b/icons/obj/stacks.dmi index b08f3b086a..ea1543413a 100644 Binary files a/icons/obj/stacks.dmi and b/icons/obj/stacks.dmi differ diff --git a/icons/obj/structures/micro_structures.dmi b/icons/obj/structures/micro_structures.dmi new file mode 100644 index 0000000000..f3096a1223 Binary files /dev/null and b/icons/obj/structures/micro_structures.dmi differ diff --git a/icons/obj/trash.dmi b/icons/obj/trash.dmi index f9c1ce7400..99c2939c7e 100644 Binary files a/icons/obj/trash.dmi and b/icons/obj/trash.dmi differ diff --git a/icons/obj/trash_vr.dmi b/icons/obj/trash_vr.dmi index 2c7fed4c7a..5df83d142b 100644 Binary files a/icons/obj/trash_vr.dmi and b/icons/obj/trash_vr.dmi differ diff --git a/icons/obj/vending.dmi b/icons/obj/vending.dmi index 99c9ac9925..562496523f 100755 Binary files a/icons/obj/vending.dmi and b/icons/obj/vending.dmi differ diff --git a/icons/obj/vending_vr.dmi b/icons/obj/vending_vr.dmi index f540d4d55b..a11ef2b241 100644 Binary files a/icons/obj/vending_vr.dmi and b/icons/obj/vending_vr.dmi differ diff --git a/interface/skin.dmf b/interface/skin.dmf index 90660d686a..55e6cdb5aa 100644 --- a/interface/skin.dmf +++ b/interface/skin.dmf @@ -229,7 +229,7 @@ macro "borghotkeymode" command = "body-toggle-head" elem name = "F1" - command = "adminhelp" + command = "request-help" elem name = "CTRL+SHIFT+F1+REP" command = ".options" @@ -453,7 +453,7 @@ macro "macro" command = "body-toggle-head" elem name = "F1" - command = "adminhelp" + command = "request-help" elem name = "CTRL+SHIFT+F1+REP" command = ".options" @@ -734,7 +734,7 @@ macro "hotkeymode" command = "body-toggle-head" elem name = "F1" - command = "adminhelp" + command = "request-help" elem name = "CTRL+SHIFT+F1+REP" command = ".options" @@ -952,7 +952,7 @@ macro "borgmacro" command = "body-toggle-head" elem name = "F1" - command = "adminhelp" + command = "request-help" elem name = "CTRL+SHIFT+F1+REP" command = ".options" @@ -1112,7 +1112,7 @@ menu "menu" saved-params = "is-checked" elem name = "&Admin help\tF1" - command = "adminhelp" + command = "request-help" category = "&Help" saved-params = "is-checked" elem diff --git a/maps/cynosure/cynosure-1.dmm b/maps/cynosure/cynosure-1.dmm index 48a0b40a9a..d27f407ee6 100644 --- a/maps/cynosure/cynosure-1.dmm +++ b/maps/cynosure/cynosure-1.dmm @@ -916,7 +916,7 @@ /obj/structure/plasticflaps/mining, /obj/machinery/mineral/input, /turf/simulated/floor/plating, -/area/space) +/area/surface/station/mining_main/refinery) "bW" = ( /obj/structure/disposalpipe/segment{ dir = 4 diff --git a/maps/groundbase/eastwilds/eastwilds1.dmm b/maps/groundbase/eastwilds/eastwilds1.dmm index 083efd24e9..4992ae4453 100644 --- a/maps/groundbase/eastwilds/eastwilds1.dmm +++ b/maps/groundbase/eastwilds/eastwilds1.dmm @@ -36,8 +36,19 @@ /turf/simulated/floor/outdoors/grass/forest/virgo3c, /area/groundbase/wilderness/east) "y" = ( +<<<<<<< HEAD /turf/simulated/mineral/ignore_cavegen, /area/groundbase/wilderness/east) +======= +/turf/simulated/mineral/ignore_cavegen/virgo3c, +/area/submap/groundbase/wilderness/east) +"B" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/turf/simulated/floor/water/virgo3c, +/area/submap/groundbase/wilderness/east) +>>>>>>> 3e5775ea6e... Merge pull request #13634 from Heroman3003/3c-turfs "F" = ( /turf/simulated/floor/outdoors/grass/virgo3c, /area/groundbase/wilderness/east/unexplored) diff --git a/maps/groundbase/eastwilds/eastwilds2.dmm b/maps/groundbase/eastwilds/eastwilds2.dmm index 8336bc5029..287d56b34b 100644 --- a/maps/groundbase/eastwilds/eastwilds2.dmm +++ b/maps/groundbase/eastwilds/eastwilds2.dmm @@ -26,8 +26,13 @@ }, /area/groundbase/wilderness/east) "r" = ( +<<<<<<< HEAD /turf/simulated/mineral/ignore_cavegen, /area/groundbase/wilderness/east) +======= +/turf/simulated/mineral/ignore_cavegen/virgo3c, +/area/submap/groundbase/wilderness/east) +>>>>>>> 3e5775ea6e... Merge pull request #13634 from Heroman3003/3c-turfs "t" = ( /turf/simulated/floor/water/deep/virgo3c, /area/groundbase/wilderness/east) diff --git a/maps/groundbase/gb-z1.dmm b/maps/groundbase/gb-z1.dmm index 940a39e7ca..e4673f4a1e 100644 --- a/maps/groundbase/gb-z1.dmm +++ b/maps/groundbase/gb-z1.dmm @@ -5075,6 +5075,22 @@ lel }, /turf/simulated/floor/tiled/dark, /area/groundbase/security/lobby) +<<<<<<< HEAD +======= +"mu" = ( +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "engine_public_access"; + name = "Public Access Shutters"; + pixel_x = -25; + req_access = list(10) + }, +/turf/simulated/floor/tiled, +/area/groundbase/engineering/engine) +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures "mv" = ( /obj/structure/cable/yellow{ icon_state = "2-8" @@ -5102,6 +5118,10 @@ lel /obj/machinery/meter, /turf/simulated/floor/tiled, /area/groundbase/engineering/atmos) +"mA" = ( +/obj/machinery/vending/altevian, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/foodplace) "mC" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -5228,6 +5248,7 @@ lel }, /area/maintenance/groundbase/level1/nwtunnel) "mQ" = ( +<<<<<<< HEAD /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -5236,6 +5257,13 @@ lel }, /turf/simulated/floor/tiled/techfloor/grid, /area/groundbase/command/tcomms) +======= +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/virgo3c, +/area/groundbase/level1/southeastspur) +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures "mR" = ( /obj/structure/bed/chair/comfy/orange{ dir = 4 @@ -9613,6 +9641,7 @@ lel /turf/simulated/floor/tiled, /area/groundbase/civilian/foodplace) "xk" = ( +<<<<<<< HEAD /obj/item/weapon/storage/pill_bottle/dice, /obj/item/weapon/storage/pill_bottle/dice, /obj/item/weapon/storage/pill_bottle/dice_nerd, @@ -9632,6 +9661,13 @@ lel temperature = 80 }, /area/groundbase/command/tcomms) +======= +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/virgo3c, +/area/groundbase/level1/southwestspur) +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures "xm" = ( /obj/effect/floor_decal/industrial/danger, /obj/machinery/atmospherics/pipe/simple/hidden/black, @@ -9881,6 +9917,12 @@ lel }, /turf/simulated/floor, /area/prison/cell_block/gb) +"xL" = ( +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/virgo3c, +/area/groundbase/level1/eastspur) "xM" = ( /obj/machinery/firealarm, /turf/simulated/floor/tiled/dark, @@ -14098,6 +14140,12 @@ lel }, /turf/simulated/floor/outdoors/sidewalk/slab/virgo3c, /area/groundbase/level1/westspur) +"HQ" = ( +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/virgo3c, +/area/groundbase/level1/centsquare) "HR" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -16405,6 +16453,7 @@ lel /turf/simulated/floor/tiled, /area/groundbase/engineering/atmos) "Nu" = ( +<<<<<<< HEAD /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 }, @@ -16417,6 +16466,13 @@ lel temperature = 80 }, /area/groundbase/command/tcomms) +======= +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/virgo3c, +/area/groundbase/level1/westspur) +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures "Nv" = ( /turf/simulated/floor/outdoors/grass/forest/virgo3c, /area/groundbase/level1/centsquare) @@ -16564,6 +16620,10 @@ lel }, /turf/simulated/floor/outdoors/sidewalk/side/virgo3c, /area/groundbase/level1/northspur) +"NM" = ( +/obj/effect/mouse_hole_spawner, +/turf/simulated/floor/outdoors/grass/virgo3c, +/area/groundbase/level1/westspur) "NN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -16852,6 +16912,12 @@ lel /obj/machinery/recharge_station, /turf/simulated/floor/tiled/techfloor/grid, /area/groundbase/command/ai/robot) +"Ov" = ( +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/virgo3c, +/area/groundbase/level1/southeastspur) "Ow" = ( /obj/structure/railing/grey{ dir = 1 @@ -19525,6 +19591,14 @@ lel }, /turf/simulated/floor/carpet/sblucarpet, /area/groundbase/security/hos) +"Vp" = ( +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor/outdoors/newdirt_nograss/virgo3c{ + outdoors = 0 + }, +/area/maintenance/groundbase/level1/nwtunnel) "Vq" = ( /turf/simulated/floor/outdoors/newdirt/virgo3c, /area/groundbase/level1/southwestspur) @@ -26445,7 +26519,7 @@ cB cB cB cB -cB +Nu AZ cv px @@ -28318,7 +28392,7 @@ EZ mh Iw Tf -vM +xk Wm vM vM @@ -28389,7 +28463,7 @@ MO MO MO MO -FF +Vp FF MO FF @@ -28998,7 +29072,7 @@ mk cB cB cB -cB +NM gv Az Kh @@ -29834,7 +29908,7 @@ Eb Eb Eb Eb -Eb +HQ Eb Eb Eb @@ -33370,7 +33444,7 @@ qE qE qE Eb -Eb +HQ Eb Eb Eb @@ -34988,7 +35062,7 @@ Uf Uf Uf Uf -ck +Ov ck TW ck @@ -36057,7 +36131,7 @@ Ah Ah Ah MK -MK +xL sF MK MK @@ -36262,7 +36336,7 @@ Lt Lt Uf Uf -Aq +mA pA Aq Uf @@ -36408,7 +36482,7 @@ Uf Uf Uf Uf -ck +mQ ck Ac ck diff --git a/maps/groundbase/gb-z2.dmm b/maps/groundbase/gb-z2.dmm index c307b229ec..a5a10c1c5d 100644 --- a/maps/groundbase/gb-z2.dmm +++ b/maps/groundbase/gb-z2.dmm @@ -3129,6 +3129,10 @@ /obj/structure/bed/double/padded, /turf/simulated/floor/wood, /area/groundbase/dorms/room8) +"jd" = ( +/obj/effect/mouse_hole_spawner, +/turf/simulated/floor/outdoors/grass/virgo3c, +/area/groundbase/level2/se) "je" = ( /turf/unsimulated/wall/planetary/virgo3c, /area/groundbase/level2/se) @@ -7517,6 +7521,12 @@ }, /turf/simulated/floor/tiled/dark, /area/groundbase/civilian/chapel) +"wD" = ( +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/virgo3c, +/area/groundbase/level2/nw) "wE" = ( /obj/structure/table/woodentable, /obj/machinery/camera/network/civilian, @@ -9427,6 +9437,12 @@ /obj/structure/table/woodentable, /turf/simulated/floor/lino, /area/groundbase/civilian/chapel/office) +"Co" = ( +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/virgo3c, +/area/groundbase/level2/se) "Cq" = ( /obj/structure/cable/yellow{ icon_state = "4-8" @@ -10324,6 +10340,12 @@ /obj/machinery/alarm, /turf/simulated/floor/wood, /area/groundbase/dorms/room4) +"EP" = ( +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/virgo3c, +/area/groundbase/level2/ne) "EQ" = ( /obj/structure/filingcabinet, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -11051,6 +11073,12 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/groundbase/medical/triage) +"GY" = ( +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/virgo3c, +/area/groundbase/level2/nw) "GZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -12077,6 +12105,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/groundbase/dorms) +"JS" = ( +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/virgo3c, +/area/groundbase/level2/ne) "JT" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -13184,11 +13218,21 @@ }, /area/groundbase/level2/ne) "MU" = ( +<<<<<<< HEAD /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/outdoors/grass/virgo3c, /area/groundbase/medical/Chemistry) +======= +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor/tiled/virgo3c{ + edge_blending_priority = -1 + }, +/area/groundbase/level2/se) +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures "MV" = ( /obj/machinery/alarm{ dir = 8 @@ -13845,6 +13889,10 @@ }, /turf/simulated/floor/tiled, /area/groundbase/science/xenobot) +"OM" = ( +/obj/effect/mouse_hole_spawner, +/turf/simulated/floor/outdoors/grass/virgo3c, +/area/groundbase/level2/ne) "ON" = ( /turf/unsimulated/wall/planetary/virgo3c, /area/groundbase/level2/sw) @@ -14606,6 +14654,12 @@ outdoors = 0 }, /area/groundbase/level2/nw) +"QS" = ( +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/virgo3c, +/area/groundbase/level2/nw) "QV" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -16532,6 +16586,10 @@ }, /turf/simulated/floor/tiled, /area/groundbase/science/rnd) +"WC" = ( +/obj/effect/mouse_hole_spawner, +/turf/simulated/floor/outdoors/grass/virgo3c, +/area/groundbase/level2/sw) "WD" = ( /turf/simulated/floor/outdoors/grass/virgo3c, /area/medical/virology) @@ -17295,6 +17353,12 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/virology) +"Zf" = ( +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/virgo3c, +/area/groundbase/level2/se) "Zg" = ( /obj/machinery/light/bigfloorlamp, /turf/simulated/floor/outdoors/grass/virgo3c, @@ -20476,7 +20540,7 @@ qr Vb zb Do -bY +GY bY bY sN @@ -21187,7 +21251,7 @@ bY bY bY bY -bY +wD bY bY bY @@ -23078,7 +23142,7 @@ jG jG RL jG -jG +WC Rh mZ kZ @@ -23433,7 +23497,7 @@ Ip IQ gR rP -bY +GY fI bY FF @@ -23741,7 +23805,7 @@ bY sZ bY bY -bY +QS bY pw pw @@ -24320,7 +24384,7 @@ lM bY Oa lM -bY +wD Aq bY bY @@ -28813,7 +28877,7 @@ ks to to to -to +OM Cz EQ ZD @@ -29540,7 +29604,7 @@ Eq xP HJ Wj -to +JS to to to @@ -29973,7 +30037,7 @@ to NC to to -to +OM sW sW sW @@ -30309,7 +30373,7 @@ sx rK CK kU -kU +MU kU kU Bo @@ -31549,7 +31613,7 @@ Nw KA Nw to -to +EP to to to @@ -31997,7 +32061,7 @@ UE Bo cV Bo -Bo +jd ia Hc TX @@ -32721,7 +32785,7 @@ SE gE hA an -Bo +Zf Bo Bo fk @@ -34824,7 +34888,7 @@ Bo Bo Bo Bo -Bo +Co Bo Bo fk diff --git a/maps/groundbase/gb-z3.dmm b/maps/groundbase/gb-z3.dmm index 1b508e0571..fe9bade7d6 100644 --- a/maps/groundbase/gb-z3.dmm +++ b/maps/groundbase/gb-z3.dmm @@ -413,6 +413,12 @@ lol }, /turf/simulated/floor/wood, /area/groundbase/medical/cmo) +"hb" = ( +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/virgo3c, +/area/groundbase/level3/nw) "hl" = ( /turf/simulated/wall, /area/groundbase/level3/escapepad) @@ -759,6 +765,10 @@ lol /obj/effect/landmark/start/explorer, /turf/simulated/floor/tiled, /area/groundbase/exploration/equipment) +"nR" = ( +/obj/effect/mouse_hole_spawner, +/turf/simulated/floor/outdoors/grass/virgo3c, +/area/groundbase/level3/nw) "nU" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -1003,6 +1013,12 @@ lol outdoors = 0 }, /area/groundbase/level3/escapepad) +"rh" = ( +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/virgo3c, +/area/groundbase/level3/nw) "ro" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/medical, @@ -5545,7 +5561,7 @@ Xv Xv Xv qO -qO +nR fz dI dR @@ -5553,7 +5569,7 @@ xO Nf TH fz -qO +rh qO qO qO @@ -6121,7 +6137,7 @@ MF qO Qa Qa -qO +nR hl Rk ow @@ -6253,7 +6269,7 @@ qO qO qO qO -qO +hb qO qO qO diff --git a/maps/groundbase/northwilds/northwilds1.dmm b/maps/groundbase/northwilds/northwilds1.dmm index 0cc00b445b..e586ac7bea 100644 --- a/maps/groundbase/northwilds/northwilds1.dmm +++ b/maps/groundbase/northwilds/northwilds1.dmm @@ -13,8 +13,13 @@ /turf/simulated/floor/outdoors/grass/forest/virgo3c, /area/groundbase/wilderness/north) "m" = ( +<<<<<<< HEAD /turf/simulated/mineral/ignore_cavegen, /area/groundbase/wilderness/north) +======= +/turf/simulated/mineral/ignore_cavegen/virgo3c, +/area/submap/groundbase/wilderness/north) +>>>>>>> 3e5775ea6e... Merge pull request #13634 from Heroman3003/3c-turfs "p" = ( /obj/effect/map_effect/portal/master/side_a/gb_wilds/north_south, /turf/simulated/floor/outdoors/grass/forest/virgo3c, diff --git a/maps/groundbase/northwilds/northwilds2.dmm b/maps/groundbase/northwilds/northwilds2.dmm index 6dc23369cb..18d11228fa 100644 --- a/maps/groundbase/northwilds/northwilds2.dmm +++ b/maps/groundbase/northwilds/northwilds2.dmm @@ -22,8 +22,13 @@ /turf/simulated/floor/outdoors/grass/virgo3c, /area/groundbase/wilderness/north) "m" = ( +<<<<<<< HEAD /turf/simulated/mineral/ignore_cavegen, /area/groundbase/wilderness/north) +======= +/turf/simulated/mineral/ignore_cavegen/virgo3c, +/area/submap/groundbase/wilderness/north) +>>>>>>> 3e5775ea6e... Merge pull request #13634 from Heroman3003/3c-turfs "o" = ( /turf/simulated/mineral/cave/virgo3c, /area/groundbase/wilderness/north/cave) diff --git a/maps/groundbase/southwilds/southwilds1.dmm b/maps/groundbase/southwilds/southwilds1.dmm index 080ddbf0ba..9788032938 100644 --- a/maps/groundbase/southwilds/southwilds1.dmm +++ b/maps/groundbase/southwilds/southwilds1.dmm @@ -42,8 +42,13 @@ /turf/simulated/mineral/cave/virgo3c, /area/groundbase/wilderness/south/cave) "Q" = ( +<<<<<<< HEAD /turf/simulated/mineral/ignore_cavegen, /area/groundbase/wilderness/south) +======= +/turf/simulated/mineral/ignore_cavegen/virgo3c, +/area/submap/groundbase/wilderness/south) +>>>>>>> 3e5775ea6e... Merge pull request #13634 from Heroman3003/3c-turfs "S" = ( /obj/effect/map_effect/portal/master/side_b/gb_wilds/south, /turf/simulated/floor/outdoors/grass/forest/virgo3c, diff --git a/maps/groundbase/southwilds/southwilds2.dmm b/maps/groundbase/southwilds/southwilds2.dmm index 90eefbebdd..b3aeb2e3b7 100644 --- a/maps/groundbase/southwilds/southwilds2.dmm +++ b/maps/groundbase/southwilds/southwilds2.dmm @@ -41,8 +41,13 @@ /turf/simulated/floor/outdoors/grass/virgo3c, /area/groundbase/wilderness/south) "Q" = ( +<<<<<<< HEAD /turf/simulated/mineral/ignore_cavegen, /area/groundbase/wilderness/south) +======= +/turf/simulated/mineral/ignore_cavegen/virgo3c, +/area/submap/groundbase/wilderness/south) +>>>>>>> 3e5775ea6e... Merge pull request #13634 from Heroman3003/3c-turfs "S" = ( /obj/effect/map_effect/portal/master/side_b/gb_wilds/south, /turf/simulated/floor/outdoors/grass/forest/virgo3c, diff --git a/maps/groundbase/southwilds/southwilds3.dmm b/maps/groundbase/southwilds/southwilds3.dmm index 14ee56a717..cfa03d4587 100644 --- a/maps/groundbase/southwilds/southwilds3.dmm +++ b/maps/groundbase/southwilds/southwilds3.dmm @@ -84,7 +84,7 @@ /turf/simulated/floor/outdoors/grass/virgo3c, /area/submap/groundbase/wilderness/south) "Q" = ( -/turf/simulated/mineral/ignore_cavegen, +/turf/simulated/mineral/ignore_cavegen/virgo3c, /area/submap/groundbase/wilderness/south) "S" = ( /obj/effect/map_effect/portal/master/side_b/gb_wilds/south, diff --git a/maps/groundbase/westwilds/westwilds1.dmm b/maps/groundbase/westwilds/westwilds1.dmm index 147fc8f73f..c594711843 100644 --- a/maps/groundbase/westwilds/westwilds1.dmm +++ b/maps/groundbase/westwilds/westwilds1.dmm @@ -2085,8 +2085,13 @@ /turf/simulated/floor, /area/groundbase/science/outpost/atmos) "zM" = ( +<<<<<<< HEAD /turf/simulated/mineral/ignore_cavegen, /area/groundbase/wilderness/west) +======= +/turf/simulated/mineral/ignore_cavegen/virgo3c, +/area/submap/groundbase/wilderness/west) +>>>>>>> 3e5775ea6e... Merge pull request #13634 from Heroman3003/3c-turfs "zP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black, /turf/simulated/floor/tiled/white, diff --git a/maps/groundbase/westwilds/westwilds2.dmm b/maps/groundbase/westwilds/westwilds2.dmm index d16b67dd4f..4a821d801a 100644 --- a/maps/groundbase/westwilds/westwilds2.dmm +++ b/maps/groundbase/westwilds/westwilds2.dmm @@ -446,8 +446,13 @@ }, /area/groundbase/wilderness/west) "fM" = ( +<<<<<<< HEAD /turf/simulated/mineral/ignore_cavegen, /area/groundbase/wilderness/west) +======= +/turf/simulated/mineral/ignore_cavegen/virgo3c, +/area/submap/groundbase/wilderness/west) +>>>>>>> 3e5775ea6e... Merge pull request #13634 from Heroman3003/3c-turfs "fQ" = ( /obj/machinery/chem_master, /obj/machinery/camera/network/research_outpost{ diff --git a/maps/southern_cross/southern_cross-10.dmm b/maps/southern_cross/southern_cross-10.dmm index 741ed1a534..8d5947e6f7 100644 --- a/maps/southern_cross/southern_cross-10.dmm +++ b/maps/southern_cross/southern_cross-10.dmm @@ -1,53 +1,398 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/simulated/wall/solidrock, +/area/surface/outpost/wall/checkpoint) +"ab" = ( +/turf/simulated/wall/solidrock, +/area/surface/outside/wilderness/mountains) +"ac" = ( +/turf/simulated/mineral/sif, +/area/surface/outside/wilderness/mountains) "ad" = ( -/obj/machinery/light, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"aj" = ( /obj/effect/zone_divider, /turf/simulated/wall/solidrock, /area/surface/outside/wilderness/mountains) -"aw" = ( +"ae" = ( +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outside/wilderness/deep) +"ag" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outside/wilderness/deep) +"ah" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/wilderness/deep) +"ai" = ( +/turf/simulated/floor/outdoors/dirt, +/area/surface/outside/wilderness/deep) +"aj" = ( +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/wilderness/deep) +"ak" = ( /obj/effect/zone_divider, /turf/simulated/mineral/sif, /area/surface/outside/wilderness/mountains) -"bc" = ( -/obj/machinery/light, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/bed/roller, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/shelter) -"bw" = ( -/obj/structure/railing/grey, +"al" = ( +/turf/simulated/wall/solidrock, +/area/surface/outside/river/svartan) +"am" = ( +/turf/simulated/floor/water, +/area/surface/outside/river/svartan) +"an" = ( +/turf/simulated/floor/water/deep, +/area/surface/outside/river/svartan) +"ao" = ( +/turf/simulated/floor/outdoors/dirt, +/area/surface/outside/path/wilderness) +"ap" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/wilderness/normal) +"aq" = ( +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/path/wilderness) +"ar" = ( +/turf/simulated/floor/wood, +/area/surface/outside/path/wilderness) +"as" = ( +/turf/simulated/wall/wood, +/area/surface/outside/path/wilderness) +"at" = ( +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outside/wilderness/normal) +"au" = ( +/obj/effect/step_trigger/teleporter/bridge/west_to_east, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/water, +/area/surface/outside/river/svartan) +"av" = ( +/obj/effect/step_trigger/teleporter/bridge/east_to_west, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water, +/area/surface/outside/river/svartan) +"aw" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/wilderness/deep) +"ax" = ( +/obj/effect/step_trigger/teleporter/bridge/east_to_west/small, +/turf/simulated/floor/water, +/area/surface/outside/river/svartan) +"ay" = ( +/obj/effect/step_trigger/teleporter/bridge/west_to_east, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/svartan) +"az" = ( +/obj/effect/step_trigger/teleporter/bridge/east_to_west, +/obj/effect/zone_divider, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/svartan) +"aA" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt, +/area/surface/outside/wilderness/deep) +"aB" = ( +/obj/effect/step_trigger/teleporter/bridge/west_to_east/small, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/svartan) +"aC" = ( +/obj/structure/showcase/sign{ + desc = "This appears to be a sign warning people that the other side is extremely hazardous."; + icon_state = "wilderness2"; + pixel_y = -5 + }, +/turf/simulated/wall/wood, +/area/surface/outside/path/wilderness) +"aD" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outside/wilderness/normal) +"aE" = ( +/obj/effect/step_trigger/teleporter/bridge/west_to_east, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/svartan) +"aF" = ( +/obj/effect/step_trigger/teleporter/bridge/east_to_west, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/svartan) +"aG" = ( /turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"cs" = ( +/area/surface/outside/wilderness/normal) +"aH" = ( /obj/effect/zone_divider, /turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/wilderness/normal) +"aI" = ( +/turf/simulated/floor/outdoors/dirt, +/area/surface/outside/wilderness/normal) +"aJ" = ( +/turf/simulated/floor/outdoors/rocks/sif/planetuse, /area/surface/outside/wilderness/deep) -"dh" = ( -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "wilderness_shelter_1st_floor"; - name = "Wilderness Shelter Shutters"; - pixel_y = -26; - req_one_access = list(1,5,10,12,13,18,31,43,47,48,50) - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"dl" = ( +"aK" = ( +/turf/simulated/floor/water, +/area/surface/outside/ocean) +"aM" = ( +/turf/simulated/floor/outdoors/rocks/sif/planetuse, +/area/surface/outside/wilderness/normal) +"aN" = ( +/turf/simulated/floor/water/deep, +/area/surface/outside/ocean) +"aO" = ( /obj/effect/zone_divider, /obj/effect/zone_divider, /turf/simulated/floor/outdoors/grass/sif/forest/planetuse, /area/surface/outside/wilderness/deep) -"dv" = ( -/obj/effect/map_effect/portal/line/side_b{ +"aP" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/wilderness/deep) +"aQ" = ( +/obj/effect/zone_divider, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/wilderness/deep) +"aR" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water, +/area/surface/outside/river/svartan) +"aS" = ( +/turf/simulated/floor/wood{ + outdoors = 1 + }, +/area/surface/outside/path/wilderness) +"aT" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outpost/shelter/exterior) +"aU" = ( +/turf/simulated/wall/log_sif, +/area/surface/outpost/shelter/utilityroom) +"aV" = ( +/turf/simulated/floor/outdoors/grass/sif/planetuse{ + tree_chance = 0 + }, +/area/surface/outside/wilderness/normal) +"aW" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/path/wilderness) +"aX" = ( +/obj/structure/ladder/up, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outpost/shelter/exterior) +"aY" = ( +/obj/effect/map_effect/portal/master/side_b/wilderness_to_caves/river{ dir = 1 }, /turf/simulated/wall/solidrock, +/area/surface/outside/wilderness/mountains) +"aZ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "wilderness_shelter_1st_floor"; + layer = 4; + name = "Wilderness Shelter Shutters" + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/shelter) +"ba" = ( +/turf/simulated/wall/log_sif, +/area/surface/outpost/shelter) +"bb" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/svartan) +"bc" = ( +/obj/structure/simple_door/sifwood, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "wilderness_shelter_1st_floor"; + layer = 4; + name = "Wilderness Shelter Shutters" + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/shelter) +"bd" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/power/thermoregulator/southerncross{ + dir = 4; + pixel_x = -26; + pixel_y = 2 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/shelter) +"be" = ( +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/shelter) +"bf" = ( +/obj/machinery/button/remote/blast_door{ + id = "wilderness_shelter_1st_floor"; + name = "Wilderness Shelter Shutters"; + pixel_y = 26 + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/shelter) +"bg" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/device/radio/subspace{ + desc = "A heavy duty radio that can pick up all manor of shortwave and subspace frequencies. It's a bit bulkier than a normal radio thanks to the extra hardware. An engraving on the frame reads: IF FOUND, RETURN TO WILDERNESS SHELTER!"; + name = "Wilderness Shelter subspace radio" + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/shelter) +"bh" = ( +/obj/random/junk, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/shelter) +"bi" = ( +/obj/machinery/camera/network/exploration{ + c_tag = "WILD - Shelter First Floor"; + dir = 8 + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/shelter) +"bj" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/machinery/cell_charger, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = -24; + pixel_y = -4 + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/shelter) +"bk" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/wilderness/mountains) +"bl" = ( +/turf/simulated/shuttle/floor/voidcraft/external, /area/surface/outpost/wall/checkpoint) -"dE" = ( +"bm" = ( +/obj/item/weapon/banner/nt, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall/checkpoint) +"bn" = ( +/obj/item/weapon/banner/virgov, +/obj/effect/zone_divider, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall/checkpoint) +"bo" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/surface/outpost/wall/checkpoint) +"bp" = ( +/obj/machinery/door/airlock/voidcraft{ + name = "Wilderness Containment" + }, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall/checkpoint) +"bq" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/surface/outpost/wall/checkpoint) +"br" = ( +/obj/effect/map_effect/portal/line/side_b{ + dir = 1 + }, +/obj/effect/map_effect/perma_light/concentrated/incandescent, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall/checkpoint) +"bs" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/shelter) +"bt" = ( +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 8 + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/shelter) +"bu" = ( +/turf/simulated/floor/water, +/area/surface/outpost/wall/checkpoint) +"bv" = ( +/turf/simulated/floor/wood/sif, +/area/surface/outpost/shelter) +"bw" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "mining_dock_1"; + name = "shuttle bay controller"; + pixel_y = -26; + tag_door = "mining_dock_1_door" + }, +/obj/machinery/alarm/sifwilderness{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/sifwooden_reinforced, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/shelter) +"bx" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/shuttle/shuttle3/mining) +"by" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/machinery/photocopier/faxmachine, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/shelter) +"bz" = ( +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outpost/shelter/exterior) +"bA" = ( +/turf/simulated/floor/outdoors/grass/sif/planetuse{ + tree_chance = 0 + }, +/area/shuttle/shuttle3/mining) +"bB" = ( /obj/item/weapon/banner/virgov, /obj/machinery/light/small, /obj/machinery/embedded_controller/radio/simple_docking_controller{ @@ -64,21 +409,75 @@ }, /turf/simulated/floor/wood/sif, /area/surface/outpost/shelter) -"eI" = ( -/obj/machinery/sleeper{ +"bC" = ( +/obj/effect/map_effect/portal/line/side_b{ + dir = 1 + }, +/turf/simulated/wall/solidrock, +/area/surface/outpost/wall/checkpoint) +"bD" = ( +/obj/effect/shuttle_landmark{ + docking_controller = "mining_dock_3"; + landmark_tag = "shuttle3_mining"; + name = "Wilderness Landing Site" + }, +/turf/simulated/floor/outdoors/grass/sif/planetuse{ + tree_chance = 0 + }, +/area/shuttle/shuttle3/mining) +"bE" = ( +/turf/simulated/wall/rsifwood, +/area/surface/outpost/shelter/exterior) +"bF" = ( +/turf/simulated/mineral/sif, +/turf/simulated/mineral/sif, +/area/surface/outside/wilderness/mountains) +"bX" = ( +/obj/effect/map_effect/portal/line/side_b{ + dir = 1 + }, +/turf/simulated/wall/solidrock, +/area/surface/outside/wilderness/mountains) +"cA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/log_sif, +/area/surface/outpost/shelter) +"cG" = ( +/obj/effect/zone_divider, +/obj/effect/zone_divider, +/turf/simulated/floor/water, +/area/surface/outside/ocean) +"cH" = ( +/obj/machinery/light{ dir = 4 }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/shelter) -"eP" = ( -/obj/structure/closet/secure_closet/medical_wall{ - name = "Wilderness Shelter defibrillator closet"; +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall/checkpoint) +"dd" = ( +/obj/effect/zone_divider, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/wilderness/normal) +"dO" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/water, +/area/surface/outpost/wall/checkpoint) +"er" = ( +/obj/effect/zone_divider, +/obj/effect/zone_divider, +/turf/simulated/floor/water, +/area/surface/outside/river/svartan) +"es" = ( +/obj/structure/closet/medical_wall{ + name = "Wilderness Shelter first-aid closet"; pixel_y = 31; - req_access = null; - req_one_access = list(1,3,43,66,67); - starts_with = list(/obj/item/device/defib_kit/loaded) + starts_with = list(/obj/item/roller,/obj/item/bodybag/cryobag,/obj/item/weapon/storage/firstaid/regular=2,/obj/item/weapon/storage/pill_bottle/spaceacillin) }, /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -88,12 +487,64 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/shelter) -"fW" = ( -/obj/machinery/power/rtg/advanced, +"ez" = ( +/obj/machinery/light, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outpost/shelter/exterior) +"fY" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "wilderness_shelter_1st_floor"; + name = "Wilderness Shelter Shutters"; + pixel_y = -26; + req_one_access = list(1,5,10,12,13,18,31,43,47,48,50) + }, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outpost/shelter/exterior) +"gy" = ( +/obj/machinery/light/small, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outpost/shelter/exterior) +"gE" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/surface/outpost/shelter/utilityroom) +"gV" = ( +/obj/structure/cable{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/button/remote/blast_door{ + id = "wilderness_shelter_Utility"; + name = "Wilderness Shelter Shutters"; + pixel_y = 26 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/shelter/utilityroom) +"hu" = ( /obj/structure/cable{ d2 = 8; icon_state = "0-8" }, +/obj/structure/frame{ + anchored = 1 + }, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -101,49 +552,19 @@ }, /turf/simulated/floor/plating, /area/surface/outpost/shelter/utilityroom) -"gm" = ( +"kZ" = ( /obj/effect/zone_divider, /obj/effect/zone_divider, /turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/wilderness/deep) -"gT" = ( -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"hC" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/wilderness/deep) -"hM" = ( -/obj/random/junk, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"hW" = ( -/turf/simulated/floor/outdoors/dirt, -/area/surface/outside/path/wilderness) -"ip" = ( -/turf/simulated/floor/water/deep, /area/surface/outside/wilderness/normal) -"iJ" = ( -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/path/wilderness) -"jb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"ld" = ( +/obj/effect/map_effect/portal/line/side_b{ + dir = 1 }, -/turf/simulated/wall/log_sif, -/area/surface/outpost/shelter) -"ji" = ( -/turf/simulated/wall/wood, -/area/surface/outside/path/wilderness) -"js" = ( -/turf/simulated/floor/water/deep, -/area/surface/outside/river/svartan) -"kj" = ( -/turf/simulated/wall/solidrock, +/obj/effect/map_effect/perma_light/concentrated/incandescent, +/turf/simulated/floor/water, /area/surface/outpost/wall/checkpoint) -"kA" = ( +"mj" = ( /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -162,27 +583,61 @@ }, /turf/simulated/floor/plating, /area/surface/outpost/shelter/utilityroom) -"lY" = ( -/turf/simulated/floor/wood{ - outdoors = 1; - temperature = 243.15 - }, +"mR" = ( +/obj/structure/railing/grey, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outpost/shelter/exterior) +"nN" = ( +/turf/simulated/wall/rsifwood, +/area/surface/outside/wilderness/mountains) +"op" = ( +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, /area/surface/outside/path/wilderness) -"mk" = ( +"oO" = ( +/obj/effect/step_trigger/teleporter/bridge/east_to_west, /obj/structure/railing{ - dir = 4 + dir = 8 }, +/obj/effect/zone_divider, /turf/simulated/floor/water, /area/surface/outside/river/svartan) -"mD" = ( -/obj/machinery/button/remote/blast_door{ - id = "wilderness_shelter_1st_floor"; - name = "Wilderness Shelter Shutters"; - pixel_y = 26 +"oS" = ( +/obj/effect/zone_divider, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outside/wilderness/normal) +"qe" = ( +/obj/machinery/camera/network/medbay{ + c_tag = "WILD - Shelter First Aid"; + dir = 8 }, -/turf/simulated/floor/wood/sif, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/table/rack, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/roller, +/obj/item/roller, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 8; + pixel_y = -5 + }, +/turf/simulated/floor/tiled/white, /area/surface/outpost/shelter) -"nu" = ( +"qr" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/path/wilderness) +"td" = ( +/obj/structure/curtain/medical{ + name = "medical curtain" + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/shelter) +"tB" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -199,17 +654,255 @@ }, /turf/simulated/floor/plating, /area/surface/outpost/shelter/utilityroom) -"nv" = ( -/obj/structure/railing{ - dir = 8 +"tK" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "wilderness_shelter_Utility"; + name = "Wilderness Shelter Shutters"; + pixel_x = 24; + req_one_access = list(1,5,10,12,13,18,31,43,47,48,50) }, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outpost/shelter/exterior) +"tO" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/sif/planetuse{ + tree_chance = 0 + }, +/area/surface/outside/wilderness/normal) +"ub" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/frame{ + anchored = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/shelter/utilityroom) +"uc" = ( +/obj/effect/zone_divider, /turf/simulated/floor/water, -/area/surface/outside/river/svartan) -"nK" = ( +/area/surface/outside/ocean) +"wg" = ( /obj/machinery/light, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outpost/shelter/exterior) +"xt" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt, +/area/surface/outside/path/wilderness) +"xA" = ( +/obj/machinery/light/bigfloorlamp, /turf/simulated/floor/outdoors/grass/sif/planetuse, /area/surface/outpost/shelter/exterior) -"nW" = ( +"xM" = ( +/obj/machinery/camera/network/exploration{ + c_tag = "WILD - Shelter First Floor Exterior"; + dir = 1 + }, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outpost/shelter/exterior) +"ys" = ( +/turf/simulated/floor/plating, +/area/surface/outpost/shelter/utilityroom) +"yv" = ( +/obj/machinery/camera/network/substations{ + c_tag = "WILD - Shelter Utility Exterior"; + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outpost/shelter/exterior) +"AB" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/rocks/sif/planetuse, +/area/surface/outside/wilderness/normal) +"AZ" = ( +/obj/structure/simple_door/sifwood, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "wilderness_shelter_Utility"; + layer = 3; + name = "Wilderness Shelter Shutters" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/shelter/utilityroom) +"Dk" = ( +/obj/structure/sign/department/medbay{ + name = "FIRST AID" + }, +/turf/simulated/wall/log_sif, +/area/surface/outpost/shelter) +"IA" = ( +/obj/structure/curtain/medical{ + name = "medical curtain" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/shelter) +"Jk" = ( +/obj/item/device/geiger/wall/north, +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/shelter/utilityroom) +"Jq" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/shelter) +"KX" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outpost/shelter/exterior) +"Lv" = ( +/obj/effect/zone_divider, +/obj/effect/zone_divider, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/svartan) +"Mk" = ( +/obj/structure/table/rack, +/obj/item/weapon/circuitboard/machine/rtg/advanced, +/obj/item/weapon/circuitboard/machine/rtg/advanced, +/obj/item/weapon/circuitboard/machine/rtg/advanced, +/obj/item/stack/cable_coil, +/obj/item/weapon/storage/belt/utility/full, +/obj/random/powercell, +/obj/random/powercell, +/obj/random/powercell, +/obj/fiftyspawner/rods, +/obj/fiftyspawner/rods, +/turf/simulated/floor/plating, +/area/surface/outpost/shelter/utilityroom) +"No" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water/deep, +/area/surface/outside/ocean) +"Nq" = ( +/obj/effect/map_effect/portal/master/side_b/wilderness_to_caves{ + dir = 1 + }, +/turf/simulated/wall/solidrock, +/area/surface/outside/wilderness/mountains) +"NL" = ( +/obj/effect/map_effect/portal/line/side_b{ + dir = 1 + }, +/turf/simulated/shuttle/wall/voidcraft, +/area/surface/outpost/wall/checkpoint) +"OU" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/shelter) +"Rc" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/shelter) +"Sd" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall/checkpoint) +"St" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/wilderness/normal) +"SE" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/bed/roller, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/shelter) +"SI" = ( +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/item/stack/material/phoron{ + amount = 2 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/shelter/utilityroom) +"ST" = ( +/obj/effect/zone_divider, +/turf/simulated/wall/wood, +/area/surface/outside/path/wilderness) +"Wo" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/closet/walllocker_double/survival/north{ + name = "Wilderness Shelter Emergency Food Wall Cabinet"; + starts_with = list(/obj/random/mre=20,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle=20) + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/shelter) +"WB" = ( +/obj/machinery/power/rtg/advanced, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/shelter/utilityroom) +"WE" = ( +/obj/structure/closet/secure_closet/medical_wall{ + name = "Wilderness Shelter defibrillator closet"; + pixel_y = 31; + req_access = null; + req_one_access = list(1,3,43,66,67); + starts_with = list(/obj/item/device/defib_kit/loaded) + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/shelter) +"Yq" = ( /obj/machinery/power/thermoregulator/southerncross{ pixel_x = 1; pixel_y = 26 @@ -245,66745 +938,66064 @@ }, /turf/simulated/floor/plating, /area/surface/outpost/shelter/utilityroom) -"nY" = ( -/obj/structure/sign/department/medbay{ - name = "FIRST AID" - }, -/turf/simulated/wall/log_sif, -/area/surface/outpost/shelter) -"om" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/closet/walllocker_double/survival/north{ - name = "Wilderness Shelter Emergency Food Wall Cabinet"; - starts_with = list(/obj/random/mre = 20,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle = 20) - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/shelter) -"oO" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/wilderness/normal) -"pj" = ( -/turf/simulated/floor/water/deep, -/area/surface/outside/wilderness/deep) -"pk" = ( -/obj/structure/closet/medical_wall{ - name = "Wilderness Shelter first-aid closet"; - pixel_y = 31; - starts_with = list(/obj/item/roller,/obj/item/bodybag/cryobag,/obj/item/weapon/storage/firstaid/regular = 2,obj/item/weapon/storage/pill_bottle/spaceacillin) - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/shelter) -"pl" = ( -/obj/structure/simple_door/sifwood, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "wilderness_shelter_Utility"; - layer = 3; - name = "Wilderness Shelter Shutters" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"pB" = ( -/obj/effect/map_effect/portal/master/side_b/wilderness_to_caves/river{ - dir = 1 - }, -/turf/simulated/wall/solidrock, -/area/surface/outside/wilderness/mountains) -"pC" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/wilderness/deep) -"pD" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water, -/area/surface/outside/river/svartan) -"pL" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/svartan) -"qb" = ( -/obj/machinery/camera/network/exploration{ - c_tag = "WILD - Shelter First Floor Exterior"; - dir = 1 - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"qk" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "WILD - Shelter First Aid"; - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/table/rack, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/crowbar, -/obj/item/roller, -/obj/item/roller, -/obj/item/weapon/storage/box/bodybags{ - pixel_x = 8; - pixel_y = -5 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/shelter) -"ro" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, -/area/surface/outside/wilderness/deep) -"rz" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "wilderness_shelter_Utility"; - name = "Wilderness Shelter Shutters"; - pixel_x = 24; - req_one_access = list(1,5,10,12,13,18,31,43,47,48,50) - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"rN" = ( -/obj/structure/stairs/spawner/west, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/path/wilderness) -"rR" = ( -/obj/structure/curtain/medical{ - name = "medical curtain" - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/shelter) -"rW" = ( -/obj/effect/map_effect/portal/master/side_b/wilderness_to_caves{ - dir = 1 - }, -/turf/simulated/wall/solidrock, -/area/surface/outside/wilderness/mountains) -"rZ" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 1 - }, -/obj/effect/map_effect/perma_light/concentrated/incandescent, -/turf/simulated/floor/water, +"YL" = ( +/turf/simulated/mineral/sif, /area/surface/outpost/wall/checkpoint) -"tb" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"tq" = ( -/turf/simulated/wall/rsifwood, -/area/surface/outpost/shelter/exterior) -"tA" = ( -/obj/structure/ladder/up, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"uh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "wilderness_shelter_1st_floor"; - layer = 4; - name = "Wilderness Shelter Shutters" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"uO" = ( -/obj/machinery/sleep_console{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/shelter) -"uU" = ( -/obj/item/weapon/banner/nt, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"vK" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/svartan) -"wh" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"wR" = ( -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, -/area/surface/outside/wilderness/deep) -"xh" = ( -/turf/simulated/shuttle/wall/voidcraft, -/area/surface/outpost/wall/checkpoint) -"xi" = ( -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/path/wilderness) -"xp" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 1 - }, -/turf/simulated/wall/solidrock, -/area/surface/outside/wilderness/mountains) -"xG" = ( -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/wilderness/deep) -"xZ" = ( -/turf/simulated/wall/rsifwood, -/area/surface/outside/wilderness/mountains) -"yb" = ( -/turf/simulated/floor/outdoors/grass/sif/planetuse{ - tree_chance = 0 - }, -/area/surface/outside/wilderness/normal) -"yf" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/svartan) -"yg" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 1 - }, -/obj/effect/map_effect/perma_light/concentrated/incandescent, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"yC" = ( -/turf/simulated/wall/solidrock, -/area/surface/outside/wilderness/mountains) -"yP" = ( -/turf/simulated/floor/water, -/area/surface/outside/wilderness/normal) -"zc" = ( -/turf/simulated/floor/wood/broken{ - outdoors = 1; - temperature = 243.15 - }, -/area/surface/outside/path/wilderness) -"ze" = ( -/obj/structure/simple_door/sifwood, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "wilderness_shelter_1st_floor"; - layer = 4; - name = "Wilderness Shelter Shutters" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"zf" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/frame{ - anchored = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"zi" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "mining_dock_1"; - name = "shuttle bay controller"; - pixel_y = -26; - tag_door = "mining_dock_1_door" - }, -/obj/machinery/alarm/sifwilderness{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/table/sifwooden_reinforced, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"Ai" = ( -/obj/item/device/geiger/wall/north, -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"Am" = ( -/turf/simulated/wall/log_sif, -/area/surface/outpost/shelter/utilityroom) -"Az" = ( -/turf/simulated/floor/outdoors/grass/sif/planetuse{ - tree_chance = 0 - }, -/area/shuttle/shuttle3/mining) -"AP" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 1 - }, -/turf/simulated/shuttle/wall/voidcraft, -/area/surface/outpost/wall/checkpoint) -"AQ" = ( -/turf/simulated/wall/log_sif, -/area/surface/outpost/shelter) -"BY" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/zone_divider, -/turf/simulated/floor/water, -/area/surface/outside/river/svartan) -"Ci" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/wilderness/mountains) -"Cp" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/wood/broken{ - outdoors = 1; - temperature = 243.15 - }, -/area/surface/outside/path/wilderness) -"CM" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/wood{ - outdoors = 1; - temperature = 243.15 - }, -/area/surface/outside/path/wilderness) -"CR" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/frame{ - anchored = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"Dy" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, -/area/surface/outside/wilderness/normal) -"Er" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/zone_divider, -/turf/simulated/floor/water, -/area/surface/outside/river/svartan) -"Ez" = ( -/obj/structure/cable{ - d1 = 16; - d2 = 0; - icon_state = "16-0" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/button/remote/blast_door{ - id = "wilderness_shelter_Utility"; - name = "Wilderness Shelter Shutters"; - pixel_y = 26 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"EC" = ( -/obj/machinery/camera/network/substations{ - c_tag = "WILD - Shelter Utility Exterior"; - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"Fj" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/device/radio/subspace{ - desc = "A heavy duty radio that can pick up all manor of shortwave and subspace frequencies. It's a bit bulkier than a normal radio thanks to the extra hardware. An engraving on the frame reads: IF FOUND, RETURN TO WILDERNESS SHELTER!"; - name = "Wilderness Shelter subspace radio" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"GE" = ( -/obj/machinery/light/bigfloorlamp, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"GK" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/svartan) -"GL" = ( -/turf/simulated/shuttle/wall/voidcraft/hard_corner, -/area/surface/outpost/wall/checkpoint) -"GZ" = ( -/obj/structure/bed/chair/bay/comfy/blue{ - dir = 8 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"Hf" = ( +"ZG" = ( /obj/structure/showcase/sign{ desc = "This appears to be a sign warning people that the other side is extremely hazardous."; icon_state = "wilderness2"; pixel_y = -5 }, +/obj/effect/zone_divider, /turf/simulated/wall/wood, /area/surface/outside/path/wilderness) -"Hs" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep, -/area/surface/outside/wilderness/normal) -"Hx" = ( -/turf/simulated/mineral/sif, -/area/surface/outside/wilderness/deep) -"HM" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/vending/wallmed1{ - name = "Emergency NanoMed"; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/shelter) -"IJ" = ( -/turf/simulated/floor/outdoors/rocks/sif/planetuse, -/area/surface/outside/wilderness/deep) -"IK" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"IS" = ( -/obj/machinery/camera/network/exploration{ - c_tag = "WILD - Shelter First Floor"; - dir = 8 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"IZ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/power/thermoregulator/southerncross{ - dir = 4; - pixel_x = -26; - pixel_y = 2 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"Jh" = ( -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"Js" = ( -/turf/simulated/floor/water, -/area/surface/outside/wilderness/deep) -"JH" = ( -/turf/simulated/floor/water, -/area/surface/outside/ocean) -"Ki" = ( -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, -/area/surface/outside/wilderness/normal) -"Kj" = ( -/turf/simulated/floor/outdoors/dirt, -/area/surface/outside/wilderness/normal) -"KG" = ( -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"Mm" = ( -/turf/unsimulated/wall/planetary/sif, -/area/surface/outside/ocean) -"NL" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/shuttle/shuttle3/mining) -"Oa" = ( -/turf/simulated/mineral/sif, -/area/surface/outside/wilderness/mountains) -"Od" = ( -/turf/simulated/floor/outdoors/rocks/sif/planetuse, -/area/surface/outside/wilderness/normal) -"OY" = ( -/turf/simulated/floor/water/deep, -/area/surface/outside/ocean) -"Pu" = ( -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, -/area/surface/outside/wilderness/mountains) -"Py" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, -/area/surface/outside/wilderness/normal) -"PG" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"QE" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/water, -/area/surface/outpost/wall/checkpoint) -"Rm" = ( -/turf/simulated/floor/water, -/area/surface/outpost/wall/checkpoint) -"RJ" = ( -/obj/structure/curtain/medical{ - name = "medical curtain" - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/shelter) -"Si" = ( -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/wilderness/normal) -"Sr" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/path/wilderness) -"Ti" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/wilderness/normal) -"Tj" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/wilderness/normal) -"Tn" = ( -/obj/machinery/light/small, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"Tr" = ( -/obj/structure/table/rack, -/obj/item/weapon/circuitboard/machine/rtg/advanced, -/obj/item/weapon/circuitboard/machine/rtg/advanced, -/obj/item/weapon/circuitboard/machine/rtg/advanced, -/obj/item/stack/cable_coil, -/obj/item/weapon/storage/belt/utility/full, -/obj/random/powercell, -/obj/random/powercell, -/obj/random/powercell, -/obj/fiftyspawner/rods, -/obj/fiftyspawner/rods, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"Tw" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"Tx" = ( -/turf/simulated/floor/water, -/area/surface/outside/river/svartan) -"TD" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/rocks/sif/planetuse, -/area/surface/outside/wilderness/normal) -"Uo" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water, -/area/surface/outside/ocean) -"UN" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/wilderness/normal) -"UR" = ( -/obj/machinery/power/port_gen/pacman{ - anchored = 1 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/item/stack/material/phoron{ - amount = 2 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"Vt" = ( -/obj/item/weapon/banner/virgov, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"Vu" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep, -/area/surface/outside/ocean) -"VE" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/machinery/photocopier/faxmachine, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"VH" = ( -/obj/effect/shuttle_landmark{ - docking_controller = "mining_dock_3"; - landmark_tag = "shuttle3_mining"; - name = "Wilderness Landing Site" - }, -/turf/simulated/floor/outdoors/grass/sif/planetuse{ - tree_chance = 0 - }, -/area/shuttle/shuttle3/mining) -"VL" = ( -/obj/machinery/door/airlock/voidcraft{ - name = "Wilderness Containment" - }, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"XG" = ( -/obj/effect/zone_divider, -/turf/unsimulated/wall/planetary/sif, -/area/surface/outside/ocean) -"XH" = ( -/obj/structure/ladder/up, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"Yg" = ( -/obj/structure/railing, -/turf/simulated/floor/water, -/area/surface/outside/ocean) -"Yw" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/path/wilderness) -"YR" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/water, -/area/surface/outside/ocean) -"Zr" = ( -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"Zw" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/machinery/cell_charger, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = -24; - pixel_y = -4 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"ZZ" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) (1,1,1) = {" -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -aj -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -aj -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -aj -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ab +ab +ab +al +al +al +al +al +al +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab "} (2,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -aw -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Tx -Tx -Tx -js -Tx -Tx -Oa -Oa -Oa -Oa -aw -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -aw -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +am +am +an +an +am +am +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab "} (3,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -aw -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Tx -Tx -js -js -Tx -Tx -Oa -Oa -Oa -Oa -aw -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -aw -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +am +am +an +an +am +am +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab "} (4,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -wR -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -wR -Oa +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ac +ac +ac +ac +ac +ae +ae +ae +ae +ag +ae +ae +ae +ae +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ah +ah aw -Oa -Oa -Oa -Oa -wR -wR -Oa -Oa -Oa -Oa -Oa -Oa -Oa -wR -wR -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Tx -Tx -js -js -Tx -Tx -Oa -Oa -Oa -Oa -aw -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Ki -Ki -Ki -Ki -Oa -Oa -Oa -Oa -Oa -Oa -Ki -Ki -Ki -Ki -Oa -Oa -Oa -Oa -Oa -Oa -Ki -Ki -Ki -Ki -Ki -Oa -Oa -Oa -Ki -Ki -Ki -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -aw -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Ki -Ki -Ki -Ki -Ki -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -yC +ah +ac +ah +am +am +an +an +am +am +ap +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab "} (5,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -Oa -Oa -Oa -Oa -wR -Oa -Oa -Oa -wR -wR -Oa -wR -wR -wR -wR -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -Oa -Oa -Oa -Oa -Oa -wR -wR -ro -wR -Oa -Oa -wR -wR -wR -wR -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -js -Tx -Tx -Tx -Ki -Ki -Ki +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ac +ac +ac +ac +ac +ac +ae +ae +ae +ag +ae +ac +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ac +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae aw -Oa -Oa -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -Oa -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -Oa -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Oa -Oa -Oa -Oa -Oa -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -yC +ah +ah +ah +am +am +an +an +am +am +am +ap +ap +ap +ap +ap +ap +at +ac +ac +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ak +ac +ac +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +at +at +at +at +aD +at +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab "} (6,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -js -Tx -Tx -Tx -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ah +am +am +an +an +am +am +am +at +ap +ap +ap +ap +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab "} (7,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -js -Tx -Tx -Tx -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +at +at +at +at +at +at +at +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab "} (8,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -js -js -Tx -Tx -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +ac +ac +ac +ac +ac +ac +ac +at +at +at +at +at +at +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab "} (9,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -js -js -Tx -Tx -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab "} (10,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -js -js -Tx -Tx -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ac +ac +ab "} (11,1,1) = {" -yC -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -js -js -Tx -Tx -Tx -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ac +ac +ab "} (12,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -Tx -js -js -Tx -Tx -Tx -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ac +ac +ab "} (13,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -Tx -js -js -Tx -Tx -Tx -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ac +ab "} (14,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -js -Tx -Tx -Tx -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ac +ab "} (15,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -Tx -js -Tx -Tx -Tx -Tx -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ab "} (16,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -Tx -js -js -Tx -Tx -Tx -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ab "} (17,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -Tx -Tx -js -Tx -Tx -Tx -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +am +am +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ab "} (18,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -Tx -js -js -Tx -Tx -Tx -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ab "} (19,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -Tx -js -js -Tx -Tx -Tx -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ab "} (20,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -Tx -js -js -Tx -Tx -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ab "} (21,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -Tx -js -js -Tx -Tx -pD -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ab "} (22,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -Tx -js -js -Tx -pD -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ab "} (23,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -Tx -js -js -Tx -pD -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +am +am +an +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ab "} (24,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -Tx -js -js -js -pD -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +am +am +an +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ab "} (25,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -js -js -pD -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ab "} (26,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -Tx -js -js -pD -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ab "} (27,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -js -pD -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ab "} (28,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -js -pD -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ab "} (29,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -js -pD -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ab "} (30,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -yf -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +am +am +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ab "} (31,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -yf -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +am +am +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ac +ab "} (32,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -Tx -yf -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -yC +ad +ak +ak +ak +ak +ak +ak +ak +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +aR +aR +bb +aR +aR +aR +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +oS +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +oS +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +oS +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +ak +ak +ak +ak +ak +ad "} (33,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -yf -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ab "} (34,1,1) = {" -yC -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -pD -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ab "} (35,1,1) = {" -yC -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -pD -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ab "} (36,1,1) = {" -yC -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -pD -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ab "} (37,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -pD -Tx -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ab "} (38,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -hW -hW -pD -Tx -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ab "} (39,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -hW -xi -BY -mk -js -js -mk -mk -ji -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ab "} (40,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -hW -wR -hW -lY -Cp -lY -zc -js -lY -zc -lY -hW -hW -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ab "} (41,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -lY -CM -Tx -lY -zc -lY -lY -lY -Ki -hW -hW -hW -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ab "} (42,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ji -Er -Tx -js -js -nv -nv -Hf -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ab "} (43,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pD -Tx -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ab "} (44,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pD -Tx -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Ki -Ki -Si -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ab "} (45,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pD -Tx -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Ki -Si -Ki -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ab "} (46,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pD -Tx -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Ki -Si -Ki -Si -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (47,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pD -Tx -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Ki -Si -Si -Si -Ki -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (48,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pD -Tx -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Ki -Ki -Ki -Si -Ki -Pu -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (49,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pD -Tx -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (50,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -pD -Tx -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -Oa -yC -rW -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (51,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -pD -Tx -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Ki -Si -Ki -Si -Si -Si -Si -Si -Si -Ci -Oa -Oa -yC -xp -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (52,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -pD -Tx -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -oO -Si -Si -oO -Si -Si -Si -Si -Si -Sr -uU -GL -xh -xh -AP -xh +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +an +am +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (53,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -pD -Tx -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Ki -Si -Si -Si -Si -Si -oO -Si -Si -oO -Si -Si -Si -gT -gT -VL -PG -gT -yg -gT +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (54,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -pD -Tx -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -oO -Si -Si -Sr -gT -gT -xh -gT -gT -yg -gT +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (55,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -pD -Tx -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -gT -gT -VL -wh -gT -yg -gT +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (56,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -pD -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Sr -Vt -GL -xh -xh -AP -xh +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (57,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -Tx -pD -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Ci -Oa -Oa -yC -xp -yC +ab +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (58,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -Tx -pD -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Sr -Si -Oa -Oa -Oa -yC -xp -yC +ab +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (59,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -Tx -yf -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Oa -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (60,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -Tx -js -yf -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Sr -Si -Si -Oa -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ao +ao +ae +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (61,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -Tx -js -Hs -ip -ip -yP -yP -Ki -Tx -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Sr -Si -Si -Si -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ao +aq +au +au +ay +an +au +au +as +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ab "} (62,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -Tx -js -Hs -ip -ip -yP -yP -Tx -Tx -js -js -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ai +ae +ao +ar +ar +ar +aS +aB +ar +ar +ar +ao +ao +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ab "} (63,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -Tx -js -Hs -ip -js -Tx -Tx -Tx -js -js -js -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Sr -Si -Si -Si -Si -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ar +ar +ax +aS +aS +ar +ar +ar +at +ao +ao +ao +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ab "} (64,1,1) = {" -aj -aw -aw -aw -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -dl -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -hC -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -pD -pD -pD -yf -Hs -yf -yf -yf -yf -yf -yf -yf -yf -pD -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Py -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -Dy -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -Yw -Yw -UN -UN -UN -UN -UN -aw -aw -aw -aw -aj +ad +ak +ak +ak +ak +ak +ak +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +ag +ag +ST +oO +aR +az +az +oO +oO +ZG +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +oS +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +oS +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +oS +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +ak +ak +ak +ak +ad "} (65,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -js -yf -js -js -js -js -js -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +an +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ab "} (66,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -js -js -yf -js -js -js -js -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -yb -yb -Si -Si -Si -Si -Si -Si -Si -yb -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ab "} (67,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -yf -js -js -Tx -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -yb -yb -yb -yb -oO -oO -oO -Az -Az -Az -NL -NL -NL -NL -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ab "} (68,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -yf -ip -ip -yP -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -yb -Az -NL -Az -NL -Az -Az -Az -Az -Az -NL -NL -NL -Az -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ab "} (69,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -yf -ip -ip -yP -yP -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -yb -NL -NL -Az -Az -Az -Az -NL -NL -NL -NL -NL -NL -NL -yb -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ab "} (70,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -GK -js -js -js -yP -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -Az -NL -Az -Az -NL -NL -NL -NL -NL -NL -NL -NL -yb -yb -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ab "} (71,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -yf -js -js -Tx -yP -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Az -NL -Az -Az -NL -NL -NL -NL -NL -NL -NL -NL -yb -oO -oO -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ac +ab "} (72,1,1) = {" -yC -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -yf -js -js -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -NL -Az -Az -NL -NL -Az -Az -Az -NL -Az -Az -NL -yb -oO -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (73,1,1) = {" -yC -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -yf -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Az -Az -Az -NL -Az -Az -NL -NL -NL -Az -Az -NL -Az -yb -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (74,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -js -js -yf -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -yb -NL -Az -Az -NL -Az -NL -Az -Az -VH -Az -Az -Az -Az -Si -Si -Si -Sr -Sr -Si -Si -oO -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (75,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -js -js -yf -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -yb -yb -yb -yb -yb -yb -oO -Az -Az -Az -Az -Az -Az -Az -yb -Si -Sr -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (76,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -js -js -yf -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -yb -oO -oO -yb -yb -yb -yb -yb -yb -yb -Sr -Sr -Sr -Sr -Sr -Sr -Sr -Sr -Si -Si -Si -Si -oO -oO -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (77,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -js -js -yf -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -yb -yb -oO -yb -yb -yb -yb -yb -yb -yb -yb -oO -yb -yb -yb -Sr -Sr -Sr -Sr -Sr -Tw -Zr -Zr -Zr -Zr -Zr -Zr -Zr -Tw -tA -Oa -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (78,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -yf -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -yb -yb -oO -oO -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -Si -Sr -ad -tq -Zr -Zr -Zr -tq -Zr -Tw -Tn -tq -Oa -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (79,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -js -yf -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -yb -yb -yb -yb -yb -oO -oO -oO -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -Sr -Sr -Tw -Zr -Zr -Zr -Zr -Zr -Zr -Tw -Tw -Zr -Oa -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (80,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -yf -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -oO -oO -yb -oO -yb -oO -oO -yb -oO -yb -oO -oO -yb -oO -oO -yb -yb -Sr -Sr -Sr -Sr -Tw -Zr -Zr -Tw -Zr -Zr -Tw -Zr -Tw -Tw -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (81,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -yf -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -oO -oO -oO -yb -yb -yb -yb -yb -oO -oO -yb -yb -yb -oO -yb -yb -oO -Sr -yb -yb -Sr -Tw -Zr -Zr -Zr -Tw -Tw -Zr -Zr -Tw -Zr -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (82,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -yf -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Tx -Tx -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -yb -yb -oO -yb -yb -yb -yb -oO -oO -oO -yb -yb -oO -oO -yb -oO -oO -Sr -yb -yb -Sr -ad -tq -Zr -Tw -Tw -tq -Zr -Tw -Tw -tq -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (83,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -pD -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Tx -Tx -Tx -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -yb -oO -oO -yb -yb -yb -yb -oO -oO -oO -yb -yb -yb -oO -yb -oO -oO -yb -yb -yb -Sr -Tw -Zr -Tw -Zr -Zr -EC -Zr -Zr -Tw -Zr -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ab "} (84,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -pD -js -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Tx -Tx -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -oO -yb -yb -yb -yb -yb -yb -oO -oO -oO -yb -oO -yb -oO -oO -oO -oO -yb -yb -yb -Sr -Tw -Tw -Tw -Tw -Tw -Tw -Tw -Tw -Tw -Zr -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ab "} (85,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -Tx -wR -wR -wR -wR -Tx -pD -js -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -oO -yb -yb -yb -yb -oO -oO -yb -oO -yb -yb -oO -oO -yb -oO -oO -oO -yb -yb -yb -Sr -Tw -Tw -Tw -Tw -Tw -Tw -tb -Tw -rz -Zr -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +an +am +am +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ab "} (86,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -js -Tx -Tx -wR -wR -wR -Tx -pD -Tx -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -yb -yb -yb -yb -oO -yb -yb -yb -oO -yb -oO -oO -oO -yb -yb -oO -yb -yb -yb -yb -Sr -ad -AQ -AQ -AQ -AQ -AQ -AQ -pl -Am -Am -Am -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ab "} (87,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -js -js -Tx -wR -wR -Tx -Tx -pD -Tx -js -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -yb -yb -yb -yb -yb -oO -oO -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -Tw -uh -IZ -Fj -Zw -zi -jb -Ez -nu -UR -Am -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ab "} (88,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -js -Tx -Tx -Tx -Tx -Tx -pD -Tx -Tx -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -oO -yb -yb -yb -yb -yb -yb -yb -oO -yb -yb -oO -yb -yb -yb -yb -yb -yb -yb -Sr -dh -AQ -mD -hM -GZ -VE -AQ -nW -Jh -fW -Am -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ab "} (89,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -js -js -js -js -js -js -Tx -pD -Tx -Tx -js -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -oO -oO -yb -yb -yb -yb -yb -yb -yb -Tw -ze -KG -KG -KG -dE -AQ -Ai -Jh -kA -Am -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ab "} (90,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -js -js -js -js -js -js -js -js -js -pD -Tx -js -js -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -yb -yb -yb -oO -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -Sr -qb -AQ -KG -KG -KG -XH -AQ -IK -Jh -zf -Am -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ab "} (91,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -js -js -js -js -js -js -js -js -yf -js -js -js -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -oO -oO -oO -yb -yb -yb -yb -yb -Sr -Tw -uh -ZZ -IS -KG -KG -AQ -Tr -Jh -CR -Am -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ab "} (92,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -js -js -js -Tx -Tx -Tx -Tx -js -js -js -yf -js -js -js -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -yb -yb -yb -yb -yb -yb -oO -oO -yb -yb -oO -oO -yb -yb -oO -oO -yb -yb -Sr -ad -AQ -AQ -nY -rR -RJ -AQ -Am -Am -Am -Am -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ab "} (93,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -js -js -js -js -Tx -wR -wR -Tx -Tx -js -js -yf -js -js -js -js -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -yb -yb -oO -yb -yb -oO -oO -oO -oO -yb -yb -oO -yb -oO -oO -yb -yb -yb -Sr -Tw -Zr -Zr -AQ -HM -bc -AQ -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +an +am +am +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ab "} (94,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -js -js -js -Tx -Tx -wR -wR -wR -Tx -Tx -Tx -yf -js -js -js -js -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -yb -yb -oO -oO -yb -yb -oO -oO -oO -yb -yb -yb -yb -oO -yb -Sr -yb -yb -Sr -Tw -Tw -Zr -AQ -eP -uO -AQ -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ab "} (95,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -Tx -Tx -Tx -wR -wR -wR -wR -Tx -Tx -Tx -pD -Tx -Tx -Tx -js -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -yb -yb -oO -oO -oO -yb -yb -oO -oO -oO -yb -yb -oO -oO -yb -yb -Sr -Sr -Sr -Tw -Tw -Zr -AQ -pk -eI -AQ -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ab "} (96,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -Tx -Tx -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Dy -Ki -Si -Si -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -oO -yb -yb -oO -oO -yb -oO -yb -oO -oO -oO -yb -yb -oO -oO -yb -yb -Sr -Sr -Sr -Tw -Tw -Zr -AQ -om -qk -AQ -Oa -Oa -Oa -Oa -yC +ad +ak +ak +ak +ak +ak +ak +ag +ag +ag +ag +ag +ag +ag +aw +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aR +aR +bb +aR +aR +aR +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +oS +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +oS +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +oS +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +ak +ak +ad "} (97,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -Tx -Tx -js -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -yb -yb -oO -yb -yb -oO -yb -yb -oO -yb -yb -yb -yb -oO -oO -yb -yb -Sr -Sr -Tw -Tw -GE -AQ -AQ -AQ -AQ -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ah +ah +ah +ah +ae +ae +ae +ae +ae +ae +ae +ah +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +am +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ab "} (98,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -Tx -Tx -js -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -yb -yb -yb -yb -oO -oO -oO -yb -yb -yb -oO -oO -yb -yb -oO -oO -yb -yb -yb -Tw -Tw -Zr -Zr -Zr -Zr -Zr -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ah +ah +ah +ah +ae +ae +ae +ae +ah +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +am +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ab "} (99,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -Tx -Tx -js -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -yb -yb -yb -yb -Si -Si -yb -yb -yb -yb -oO -oO -oO -yb -oO -oO -yb -yb -yb -Sr -Sr -Zr -Zr -Zr -Zr -Zr -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +am +am +am +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ab "} (100,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -Tx -js -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -yb -yb -yb -Si -Si -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -Sr -Sr -Sr -Zr -Zr -Zr -Zr -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +ac +ac +ac +ab "} (101,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -Tx -js -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Ki -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -oO -yb -yb -yb -oO -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -yb -Si -Sr -Sr -Zr -Zr -Zr -Zr -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ah +ae +ae +ai +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +aG +at +at +ac +ac +ac +ab "} (102,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -Tx -js -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -yb -yb -oO -oO -yb -oO -yb -yb -oO -yb -yb -yb -yb -yb -yb -Si -Sr -Sr -Zr -Zr -Zr -Zr -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +am +am +am +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +aG +at +at +at +ac +ac +ac +ab "} (103,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -Tx -js -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -oO -yb -yb -yb -oO -yb -yb -yb -yb -yb -Si -Sr -Sr -Sr -Zr -Zr -Zr -Zr -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +am +am +am +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +ac +ac +ac +ab "} (104,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -Tx -js -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -yb -oO -yb -yb -yb -yb -oO -yb -oO -Si -Si -Sr -Sr -Sr -Zr -Zr -Zr -Zr -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +am +am +am +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +aG +at +at +at +aG +aG +at +ac +ac +ac +ab "} (105,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -Tx -Tx -js -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -oO -Si -Si -oO -Si -Si -oO -yb -oO -Si -Si -Si -Si -Sr -Sr -Zr -Zr -nK -xZ -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +am +am +am +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +aG +aG +at +at +at +ac +ac +ac +ab "} (106,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -Tx -Tx -js -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -yb -oO -Si -Si -Sr -Si -Si -Sr -Sr -Zr -bw -rN -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +at +ac +ac +ac +ac +ab "} (107,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -js -js -Tx -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -Tx -Tx -js -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -oO -Si -Si -oO -Si -Si -Si -Si -Sr -Si -Si -Si -Sr -Sr -bw -Sr -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +at +at +at +at +at +at +aG +aG +ac +ac +ac +ac +ab "} (108,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -js -js -js -Tx -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -Tx -Tx -js -js -js -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -oO -Si -Si -oO -Si -Si -Si -Sr -Si -Si -Si -Si -Sr -Sr -Sr -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +aG +at +at +at +aG +aG +at +ac +ac +ac +ac +ab "} (109,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -js -js -js -Tx -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -Tx -Tx -js -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +aG +at +aG +aG +at +aG +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (110,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -js -js -js -Tx -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -Tx -Tx -Tx -js -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +aG +aG +at +at +aG +at +at +aG +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (111,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -js -js -js -js -Tx -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -Tx -Tx -Tx -js -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +aG +aG +at +at +at +at +at +at +at +at +aG +aG +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (112,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -js -js -js -Tx -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -Tx -Tx -Tx -js -js -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +aG +at +at +at +at +at +at +aG +at +at +at +aG +aG +aG +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (113,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -Tx -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pD -Tx -Tx -Tx -js -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +aG +aG +at +at +at +at +at +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (114,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Js -Js -Js -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pD -Tx -Tx -js -js -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +aG +at +at +at +aG +at +at +at +aG +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (115,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Js -pj -pj -pj -Js -Js -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -pD -Tx -Tx -js -js -Tx -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +am +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +aG +aG +at +at +at +aG +aG +at +at +at +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (116,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -pC -wR -wR -Js -pj -pj -pj -pj -pj -Js -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -pD -Tx -js -js -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +am +am +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +aG +at +at +at +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ac +ac +ac +ac +ac +ab "} (117,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -pC -wR -Js -pj -pj -pj -pj -pj -pj -Js -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -pD -js -js -js -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +am +am +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ac +ac +ac +ac +ac +ab "} (118,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -wR -wR -Js -pj -pj -pj -pj -pj -pj -Js -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -pD -js -js -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +am +am +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +aG +at +at +aG +at +at +at +at +at +at +at +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ac +ac +ac +ac +ac +ab "} (119,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -wR -wR -Js -pj -pj -pj -pj -pj -pj -Js -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -yf -js -js -Tx -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Ki -Si -Ki -Si -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -oO -Si -Si -oO -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +am +am +am +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +aG +at +aG +aG +at +at +aG +at +at +aG +at +at +aG +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ac +ac +ac +ac +ac +ab "} (120,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -pC -wR -wR -Js -Js -Js -pj -pj -Js -Js -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -yf -js -js -Tx -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Ki -Si -Si -Ki -Ki -Ki -Ki -Ki -Ki -Si -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +am +am +am +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aH +aG +at +at +at +at +at +aG +at +at +aG +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ac +ac +ac +ac +ac +ab "} (121,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -pC -wR -wR -wR -wR -Js -Js -Js -Js -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -yf -js -js -Tx -Tx -Tx -Ki -Ki -Ki -Ki -Ki -Si -Si -Si -Si -Si -Si -Ki -Si -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Kj -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -oO -Ti -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +an +an +am +am +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +at +aD +at +at +at +at +at +aG +aG +at +at +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ac +ac +ac +ab +ab +ab "} (122,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -yf -js -js -Tx -Tx -Tx -Ki -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Kj -Si -Si -Si -Si -Si -Si -Si -Si -Si -oO -oO -oO -oO -oO -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ai +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +an +an +am +am +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +aG +at +at +at +aD +aG +aG +at +at +at +at +at +at +at +at +aG +aG +aG +aG +ap +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ac +ac +ac +ab +Nq +ab "} (123,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -yf -js -js -Tx -Tx -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Kj -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ai +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +an +an +am +am +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aH +aG +at +at +at +at +at +at +at +at +aG +aG +aG +aG +aG +aG +aG +ap +aG +aG +aG +aG +aG +aG +aG +aG +bk +ac +ac +ab +bX +ab "} (124,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -yf -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +an +an +am +am +am +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +aG +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +aG +aG +aG +at +aG +aG +aG +aG +ap +aG +aG +ap +aG +aG +aG +aG +aG +aW +bm +bo +bq +bq +NL +bq "} (125,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -yf -js -Tx -Tx -Si -Si -Si -Ki -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ai +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +an +an +am +am +am +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +at +aD +at +at +at +at +aG +aG +aG +aG +at +aG +aG +aG +aG +aG +aG +aG +aG +ap +aG +aG +ap +aG +aG +aG +bl +bl +bp +Sd +bl +br +bl "} (126,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -Tx -Tx -yf -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ai +ai +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +an +am +am +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +at +aD +at +aG +aG +aG +aG +at +aG +aG +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ap +aG +aG +aW +bl +bl +bq +bl +bl +br +bl "} (127,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -Tx -Tx -yf -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ai +ai +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +an +am +am +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +aG +at +at +aG +aH +aG +aG +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +bl +bl +bp +cH +bl +br +bl "} (128,1,1) = {" -aj -aw -aw -aw -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -dl -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -hC -hC -hC -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -cs -ro -cs -cs -cs -cs -pD -pD -GK -yf -pD -pD -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -Tj -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -Yw -Yw -UN -UN -UN -UN -UN -UN -aw -aw -aj +ad +ak +ak +ak +ak +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aA +aA +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aR +aR +bb +bb +bb +aR +aR +aD +aD +aD +aD +aD +aD +aD +oS +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +oS +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aH +aD +aD +aD +aD +aD +aD +aD +aH +aD +aD +aH +aH +kZ +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +qr +qr +qr +bn +bo +bq +bq +NL +bq "} (129,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -yf -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Kj -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ai +ai +ai +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +an +am +am +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +at +at +at +at +aG +at +at +at +at +aG +aG +aG +at +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aG +bk +ac +ac +ab +bX +ab "} (130,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -yf -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ai +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +at +at +at +aG +aG +at +at +at +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aW +aG +ac +ac +ac +ab +bX +ab "} (131,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -wR -xG -wR -xG -xG -xG -xG -xG -Tx -Tx -Tx -Tx -yf -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Kj -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +aG +at +at +at +at +at +at +at +at +at +aG +aG +at +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aG +aG +ac +ac +ac +ab +ab +ab "} (132,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -Tx -js -yf -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +at +at +at +at +at +at +at +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aW +aG +aG +ac +ac +ac +ac +ac +ab "} (133,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -ji -mk -pL -pL -pL -pL -BY -mk -Hf -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +aG +at +at +at +at +aG +aG +at +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aW +aG +aG +aG +ac +ac +ac +ac +ab "} (134,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -hW -xG -hW -hW -lY -lY -lY -lY -lY -zc -CM -lY -zc -hW -hW -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +at +at +at +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (135,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -iJ -iJ -iJ -iJ -lY -lY -lY -lY -lY -CM -zc -lY -hW -hW -hW -hW -hW -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Sr -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +an +am +am +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +at +at +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aW +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (136,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -iJ -nv -nv -vK -vK -vK -Er -nv -ji -Si -Si -hW -hW -hW -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Sr -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +an +am +am +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +aG +at +at +at +at +at +at +at +at +aG +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aG +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (137,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -js -js -js -js -pD -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +an +am +am +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +at +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aG +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (138,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -js -js -js -pD -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +an +am +am +am +am +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +at +aD +at +at +at +at +aG +at +at +at +at +aG +at +at +at +aG +at +at +aG +aG +aG +aG +aG +aG +at +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aV +aV +aV +aG +aG +aG +aG +aG +aG +aG +aV +aG +aG +aG +aW +aW +aG +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (139,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -Tx -pD -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +aG +at +at +at +aD +at +aG +at +at +aG +at +at +at +at +aG +at +at +at +at +at +aG +aG +aG +aG +aG +aG +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aV +aV +aV +aV +ap +ap +ap +bA +bA +bA +bx +bx +bx +bx +aG +aG +aG +aW +aW +aG +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (140,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -js -pD -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +at +at +aD +at +at +at +at +aG +at +at +aG +at +at +at +at +at +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aV +bA +bx +bA +bx +bA +bA +bA +bA +bA +bx +bx +bx +bA +aG +aG +aG +aW +aW +aG +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (141,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -Tx -pD -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ai +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +an +am +am +am +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +at +at +at +at +at +aD +aG +at +at +at +at +at +at +aG +at +at +at +at +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aV +bx +bx +bA +bA +bA +bA +bx +bx +bx +bx +bx +bx +bx +aV +aG +aG +aG +aW +aG +aG +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (142,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -Tx -pD -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ai +ai +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +am +am +am +am +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +aG +at +at +at +at +aG +at +at +aH +aG +at +at +at +at +at +aG +aG +at +at +at +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aV +bA +bx +bA +bA +bx +bx +bx +bx +bx +bx +bx +bx +aV +aV +aG +aG +aG +aW +aG +aG +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (143,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -Tx -pD -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ai +ai +ai +ai +ai +ai +ai +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +am +am +am +am +at +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +at +at +aG +aG +at +at +aH +at +at +aG +at +at +at +at +at +at +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +bA +bx +bA +bA +bx +bx +bx +bx +bx +bx +bx +bx +aV +ap +ap +aG +aG +aW +aG +aG +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (144,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -Tx -pD -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ai +ai +ai +ai +ai +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +an +am +am +am +am +at +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +at +aG +at +at +at +at +aH +at +aG +aG +at +at +at +at +at +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +bx +bA +bA +bx +bx +bA +bA +bA +bx +bA +bA +bx +aV +ap +aG +aG +aG +aW +aW +aG +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (145,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -Tx -pD -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ai +ai +ai +ai +ai +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +an +an +am +am +am +am +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +at +at +at +at +aG +at +at +at +at +aD +at +aG +at +at +at +aG +at +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +bA +bA +bA +bx +bA +bA +bx +bx +bx +bA +bA +bx +bA +aV +aG +aG +aG +aW +aW +aG +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (146,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -Tx -pD -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ai +ai +ai +ai +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +am +an +am +am +am +am +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +aG +at +at +at +at +at +at +aG +at +at +at +at +aD +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aV +aV +bx +bA +bA +bx +bA +bx +bA +bA +bD +bA +bA +bA +bA +aG +aG +aG +aW +aW +aG +aG +ap +aG +aG +aG +aG +ac +ac +ab "} (147,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -Tx -js -Tx -pD -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ai +ai +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +an +an +am +am +am +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +at +at +aG +at +at +at +at +aG +at +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aV +aV +aV +aV +aV +aV +aV +ap +bA +bA +bA +bA +bA +bA +bA +aV +aG +aW +aW +aW +aG +aG +aG +aG +aG +aG +aG +ac +ac +ab "} (148,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -Tx -js -Tx -pD -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +an +an +am +am +am +at +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +aG +at +at +at +at +aG +at +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aV +aV +ap +ap +aV +aV +aV +aV +aV +aV +aV +aW +aW +aW +aW +aW +aW +aW +aW +aG +aG +aG +aG +ap +ap +aG +aG +ac +ac +ab "} (149,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -Tx -js -Tx -pD -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +an +am +am +am +am +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +at +at +at +at +at +at +at +aG +at +at +aG +at +at +at +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aV +tO +aV +ap +aV +aV +aV +aV +aV +aV +aV +aV +ap +aV +aV +aV +aW +aW +aW +aW +aW +aT +bz +bz +bz +bz +bz +bz +bz +aT +aX +ac +ab "} (150,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -Tx -js -Tx -pD -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +an +am +am +am +am +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +aG +aG +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +at +aG +at +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aV +tO +aV +ap +ap +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aG +aW +wg +bE +bz +bz +bz +bE +bz +aT +gy +bE +ac +ab "} (151,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -Tx -js -Tx -pD -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +an +an +am +am +am +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +aG +aG +aG +aG +aG +aG +at +aG +at +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aV +aV +tO +aV +aV +aV +ap +ap +ap +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aW +aW +aT +bz +bz +bz +bz +bz +bz +aT +aT +bz +ac +ab "} (152,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -pD -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ai +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +an +an +am +am +am +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +aG +at +aG +aG +at +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aV +ap +St +aV +ap +aV +ap +ap +aV +ap +aV +ap +ap +aV +ap +ap +aV +aV +aW +aW +aW +aW +aT +bz +bz +aT +bz +bz +aT +bz +aT +aT +ac +ab "} (153,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -pD -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +an +am +am +am +at +at +aD +at +at +at +at +at +at +at +at +at +at +at +at +at +at +aG +at +at +aG +aG +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aV +ap +St +ap +aV +aV +aV +aV +aV +ap +ap +aV +aV +aV +ap +aV +aV +ap +aW +aV +aV +aW +aT +bz +bz +bz +aT +aT +bz +bz +aT +bz +ac +ab "} (154,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -pD -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +an +an +am +am +am +at +aD +at +at +at +at +at +at +at +aG +aG +at +at +at +at +aG +aG +at +at +at +aG +aG +aG +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aV +aV +tO +ap +aV +aV +aV +aV +ap +ap +ap +aV +aV +ap +ap +aV +ap +ap +aW +aV +aV +aW +wg +bE +bz +aT +aT +bE +bz +aT +aT +bE +ac +ab "} (155,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -pD -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Tx -Tx -Tx -js -js -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +an +an +am +am +am +at +aD +at +at +at +at +at +at +at +aG +at +at +at +at +at +aG +at +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aV +aV +St +ap +aV +aV +aV +aV +ap +ap +ap +aV +aV +aV +ap +aV +ap +ap +aV +aV +aV +aW +aT +bz +aT +bz +bz +yv +bz +bz +aT +bz +ac +ab "} (156,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -Tx -js -pD -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Tx -js -js -js -js -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +am +an +am +am +am +at +aD +at +at +at +at +at +at +aG +aG +at +at +at +at +at +aG +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aV +ap +tO +aV +aV +aV +aV +aV +ap +ap +ap +aV +ap +aV +ap +ap +ap +ap +aV +aV +aV +aW +aT +aT +aT +aT +aT +aT +aT +aT +aT +bz +ac +ab "} (157,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -yf -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Tx -js -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +am +an +an +am +am +am +aD +at +at +at +at +at +at +at +at +at +aG +at +at +at +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +at +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aV +ap +tO +aV +aV +aV +ap +ap +aV +ap +aV +aV +ap +ap +aV +ap +ap +ap +aV +aV +aV +aW +aT +aT +aT +aT +aT +aT +KX +aT +tK +bz +ac +ab "} (158,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -Tx -yf -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Tx -Tx -Tx -js -js -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +am +an +an +am +am +am +aD +at +at +at +at +at +at +at +at +at +aG +at +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +at +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aV +aV +tO +aV +aV +ap +aV +aV +aV +ap +aV +ap +ap +ap +aV +aV +ap +aV +aV +aV +aV +aW +wg +ba +ba +ba +ba +ba +ba +AZ +aU +aU +aU +ab "} (159,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -Tx -yf -js -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Tx -Tx -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +am +an +am +am +am +aD +at +at +at +at +at +at +at +at +aG +aG +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aV +tO +aV +aV +aV +aV +ap +ap +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aT +aZ +bd +bg +bj +bw +cA +gV +tB +SI +aU +ab "} (160,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -pD -js -js -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ad +ak +ak +ak +ak +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aw +aw +aw +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aR +aR +aR +aR +bb +bb +aR +aR +er +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +kZ +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +dd +tO +tO +tO +tO +tO +tO +tO +St +tO +tO +St +tO +tO +tO +tO +tO +tO +tO +qr +fY +ba +bf +bh +bt +by +ba +Yq +ys +WB +aU +ab "} (161,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -pD -Tx -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ah +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +am +an +am +am +aR +at +at +at +at +aG +aG +at +at +at +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +tO +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +ap +ap +aV +aV +aV +aV +aV +aV +aV +aT +bc +bv +bv +bv +bB +ba +Jk +ys +mj +aU +ab "} (162,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -pD -Tx -Tx -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +an +am +am +aR +am +at +at +at +aG +at +at +at +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +tO +aV +aV +aV +ap +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aW +xM +ba +bv +bv +bv +be +ba +gE +ys +hu +aU +ab "} (163,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -pD -Tx -Tx -js -js -js -Tx -Tx -Si -Si -Si -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +an +an +am +aR +am +at +at +aG +aG +at +at +at +aG +aG +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +tO +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +ap +ap +ap +aV +aV +aV +aV +aV +aW +aT +aZ +Rc +bi +bv +bv +ba +Mk +ys +ub +aU +ab "} (164,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -pD -Tx -Tx -Tx -js -js -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ah +ah +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +an +an +an +aR +am +am +at +at +at +at +at +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +tO +aV +aV +aV +aV +aV +aV +ap +ap +aV +aV +ap +ap +aV +aV +ap +ap +aV +aV +aW +wg +ba +ba +Dk +IA +td +ba +aU +aU +aU +aU +ab "} (165,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -pD -Tx -Tx -Tx -Tx -js -js -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ah +ah +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +an +an +aR +am +am +at +at +at +at +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +tO +aV +aV +ap +aV +aV +ap +ap +ap +ap +aV +aV +ap +aV +ap +ap +aV +aV +aV +aW +aT +bz +bz +ba +OU +SE +ba +ac +ac +ac +ac +ab "} (166,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -pD -Tx -Tx -Tx -Tx -js -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ah +ah +ah +ae +ae +ae +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +an +an +aR +am +am +at +aG +at +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +tO +aV +aV +ap +ap +aV +aV +ap +ap +ap +aV +aV +aV +aV +ap +aV +aW +aV +aV +aW +aT +aT +bz +ba +WE +Jq +ba +ac +ac +ac +ac +ab "} (167,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -xG -xG -xG -xG -xG -xG -cs -Tx -Tx -Tx -Tx -js -js -js -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +an +am +aR +am +am +at +aG +at +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +tO +aV +aV +ap +ap +ap +aV +aV +ap +ap +ap +aV +aV +ap +ap +aV +aV +aW +aW +aW +aT +aT +bz +ba +es +bs +ba +ac +ac +ac +ac +ab "} (168,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -Tx -Tx -xG -xG -xG -xG -cs -Tx -Tx -Tx -Tx -Tx -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +am +am +am +am +am +aR +am +am +aG +aG +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +St +aV +aV +ap +ap +aV +ap +aV +ap +ap +ap +aV +aV +ap +ap +aV +aV +aW +aW +aW +aT +aT +bz +ba +Wo +qe +ba +ac +ac +ac +ac +ab "} (169,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -js -js -js -Tx -Tx -Tx -xG -xG -cs -xG -Tx -Tx -Tx -Tx -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ah +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +am +am +am +am +am +aR +am +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +tO +aV +aV +ap +aV +aV +ap +aV +aV +ap +aV +aV +aV +aV +ap +ap +aV +aV +aW +aW +aT +aT +xA +ba +ba +ba +ba +ac +ac +ac +ac +ab "} (170,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -js -js -js -js -js -Tx -Tx -Tx -xG -cs -xG -Tx -Tx -Tx -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ah +ah +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +ae +am +am +am +am +an +aR +am +am +at +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +tO +aV +aV +aV +aV +ap +ap +ap +aV +aV +aV +ap +ap +aV +aV +ap +ap +aV +aV +aV +aT +aT +bz +bz +bz +bz +bz +ac +ac +ac +ac +ab "} (171,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -js -js -js -js -js -js -Tx -Tx -cs -xG -Tx -Tx -Tx -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +ae +am +am +am +am +an +aR +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +tO +aV +aV +aV +aV +aG +aG +aV +aV +aV +aV +ap +ap +ap +aV +ap +ap +aV +aV +aV +aW +aW +bz +bz +bz +bz +bz +ac +ac +ac +ac +ab "} (172,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -js -js -js -js -js -js -Tx -pD -Tx -Tx -Tx -Tx -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ah +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +aj +am +am +an +an +aR +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aV +aV +aV +aV +aG +aG +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aW +aW +aW +bz +bz +bz +bz +ac +ac +ac +ac +ab "} (173,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -js -js -js -js -js -js -js -Tx -pD -Tx -Tx -Tx -Tx -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +am +am +an +an +aR +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +ap +aV +aV +aV +ap +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aG +aW +aW +bz +bz +bz +bz +ac +ac +ac +ac +ab "} (174,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -js -js -js -js -js -js -js -js -js -yf -js -js -Tx -Tx -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +am +am +an +an +aR +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aV +aV +aV +ap +ap +aV +ap +aV +aV +ap +aV +aV +aV +aV +aV +aV +aG +aW +aW +bz +bz +bz +bz +ac +ac +ac +ac +ab "} (175,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -wR -xG -xG -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -js -js -js -js -js -js -js -js -js -yf -js -js -js -js -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +am +am +am +an +an +aR +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aV +ap +aV +aV +aV +ap +aV +aV +aV +aV +aV +aG +aW +aW +aW +bz +bz +bz +bz +ac +ac +ac +ab "} (176,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -xG -xG -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -js -js -js -js -js -Tx -js -js -js -yf -js -js -js -js -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +am +an +an +aR +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aV +aV +ap +aV +aV +aV +aV +ap +aV +ap +aG +aG +aW +aW +aW +bz +bz +bz +bz +ac +ac +ac +ab "} (177,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -js -js -js -Tx -Tx -Tx -Tx -Tx -pD -js -js -js -js -js -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +am +an +am +aR +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +ap +aG +aG +ap +aG +aG +ap +aV +ap +aG +aG +aG +aG +aW +aW +bz +bz +ez +nN +ac +ac +ab "} (178,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -js -js -js -Tx -Tx -xG -xG -xG -pD -Tx -Tx -js -js -js -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +am +am +am +an +am +aR +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aV +ap +aG +aG +aW +aG +aG +aW +aW +bz +mR +op +ac +ac +ab "} (179,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -js -js -Tx -Tx -xG -xG -xG -cs -Tx -Tx -Tx -js -js -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +aj +ae +aj +aj +aj +aj +aj +aj +aj +aj +am +am +am +an +an +am +aR +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ap +aG +aG +ap +aG +aG +aG +aG +aW +aG +aG +aG +aW +aW +mR +aW +ac +ac +ab "} (180,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -js -Tx -Tx -xG -xG -xG -xG -cs -Tx -Tx -Tx -Tx -js -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +am +an +an +am +aR +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ap +aG +aG +ap +aG +aG +aG +aW +aG +aG +aG +aG +aW +aW +aW +ac +ac +ab "} (181,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -xG -xG -xG -xG -xG -cs -xG -Tx -Tx -Tx -Tx -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +am +an +an +am +aR +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aG +aG +aG +aG +aG +aG +aG +ac +ac +ab "} (182,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -ro -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -Tx -Tx -Tx -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +am +am +an +an +am +aR +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aG +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (183,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -Tx -Tx -Tx -Tx -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +am +am +an +an +am +aR +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aG +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (184,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -Tx -Tx -Tx -Tx -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +am +an +an +am +am +aR +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aG +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (185,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -Tx -Tx -Tx -Tx -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +ae +ae +aj +aj +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +am +am +an +an +am +am +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (186,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -Tx -Tx -Tx -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +am +am +an +an +am +am +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (187,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -Tx -Tx -Tx -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +aj +aj +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +am +an +an +am +am +am +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aG +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (188,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -wR -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +an +an +an +am +am +am +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aG +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (189,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +ae +ae +ae +ae +ae +ae +ag +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +am +an +an +an +am +am +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aG +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (190,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -wR -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +ae +ae +ae +ae +ae +ag +ae +aj +aj +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +an +an +an +am +am +am +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (191,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +ae +ae +ae +ae +ag +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +an +an +an +am +am +am +am +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (192,1,1) = {" -aj -aw -aw -aw -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -ro -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -gm -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -cs -gm -cs -cs -cs -cs -cs -cs -pD -pD -yf -yf -pD -pD -pD -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -Tj -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -UN -Yw -UN -UN -UN -UN -UN -UN -UN -UN -aw -aw -aj +ad +ak +ak +ak +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aA +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aP +ag +ag +ag +ag +aP +aP +ag +ag +ag +aQ +aP +ag +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aR +aR +bb +bb +bb +aR +aR +aR +aR +aH +kZ +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +kZ +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +kZ +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +qr +aH +aH +aH +aH +aH +ak +ak +ak +ad "} (193,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -wR -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -js -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +ae +ae +ae +ae +ae +ae +ae +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +an +an +an +an +am +am +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (194,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -js -Tx -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +ae +ae +ae +ae +ae +ae +ae +ag +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +an +an +an +an +am +am +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (195,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -Tx -js -js -Tx -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ai +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +ae +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ai +aj +aj +ai +aj +aj +aj +aj +aj +aj +aj +as +au +aE +aE +aE +aE +au +au +aC +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (196,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -js -js -Tx -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ai +ai +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +ae +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ao +aj +aj +ao +ao +ar +ar +ar +ar +ar +ar +ar +ar +ar +ao +xt +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aG +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (197,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Tx -Tx -Tx -Tx -Tx -js -js -js -js -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ai +ai +ai +ai +ai +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +ae +ae +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ao +aj +aj +ao +ao +ar +ar +ar +ar +ar +ar +ar +ar +ar +ao +xt +ao +ao +ao +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aG +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (198,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -Tx -js -js -Tx -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Tx -Tx -Tx -Tx -Tx -js -js -js -js -js -js -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ai +ai +ai +ae +ae +ai +ae +ae +aj +ae +ae +ae +ae +ae +ae +ae +aj +ae +ae +ae +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +as +av +av +aF +aF +aF +av +av +as +aG +aH +ao +ao +ao +aG +aG +aI +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (199,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -Tx -js -js -Tx -Tx -Tx -Tx -Tx -Tx -Si -Si -Si -Tx -Tx -Tx -Tx -js -js -js -Tx -js -js -js -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +ae +aj +ae +ae +ae +ae +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +an +an +an +an +am +am +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aI +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (200,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -Tx -js -js -js -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -js -js -js -Tx -Tx -Tx -Tx -js -js -js -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +ae +ae +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +an +an +an +an +am +am +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (201,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -Tx -js -js -js -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -js -js -js -js -Tx -Tx -Tx -Tx -Tx -js -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +ae +ae +ae +ae +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +an +an +an +am +am +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aI +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (202,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -Tx -Tx -Tx -js -js -js -Tx -js -js -js -Tx -js -js -js -js -js -Tx -Tx -Tx -xG -Tx -Tx -js -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +ae +ae +ae +ae +aj +ae +ae +aj +ae +ae +ae +aj +aj +ae +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +an +an +an +am +am +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (203,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -Tx -Tx -js -js -js -js -js -js -js -js -js -js -js -Tx -Tx -Tx -Tx -xG -xG -Tx -Tx -js -js -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +ae +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +an +an +am +am +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (204,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -xG -xG -Tx -Tx -js -js -Tx -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +an +an +am +am +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (205,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -Tx -xG -xG -xG -Tx -Tx -Tx -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +an +an +an +am +am +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aW +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (206,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -Tx -xG -xG -Tx -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +an +an +am +am +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aW +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (207,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -js -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +an +an +am +am +am +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aG +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (208,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +an +an +am +am +am +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aG +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (209,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +an +an +am +am +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aG +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (210,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +ae +aj +ae +aj +aj +ae +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +am +an +am +am +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aG +aG +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (211,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +aj +ae +ae +ae +aj +ae +aj +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +an +an +am +am +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aG +aG +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (212,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +an +an +am +am +aR +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aG +aG +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (213,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +an +an +an +am +aR +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aG +aG +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (214,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +ae +ae +aj +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +an +an +an +am +aR +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +St +ap +aG +aG +aG +aG +aG +ap +ap +ap +ap +aG +aG +aG +aG +aG +aG +aG +aG +aW +aW +aG +aG +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (215,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -oO -oO -Si -Si -Si -Si -Si -oO -oO -oO -oO -Si -Si -Si -Si -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +ae +ae +aj +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +am +an +an +am +aR +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ap +ap +ap +ap +ap +St +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +aG +aG +aG +aG +aW +aW +aG +aG +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (216,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -Si -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +ae +ae +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +an +an +am +aR +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ap +ap +ap +ap +ap +ap +ap +ap +ap +St +ap +aM +aM +aM +ap +ap +ap +aM +aM +ap +ap +ap +ap +ap +ap +aG +aG +aG +aW +aW +aG +aG +aG +aG +aG +aG +aG +ac +ac +ac +ab "} (217,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -Od -Od -Od -oO -oO -oO -Od -Od -oO -oO -oO -oO -oO -oO -Si -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +aj +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +an +an +an +aR +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +aM +aM +AB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +ap +ap +ap +aG +aG +aW +aW +aG +aG +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (218,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -oO -oO -oO -Si -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +aj +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +an +an +aR +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ap +ap +ap +ap +ap +ap +aM +aM +aM +aM +aM +aM +aM +aM +AB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +ap +ap +ap +aG +aW +aW +aG +aG +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (219,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -oO -oO -oO -oO -oO -oO -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -oO -oO -oO -Si -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +aj +ae +ae +aj +ae +aj +aj +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +am +an +bb +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ap +ap +ap +ap +ap +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +AB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +ap +ap +ap +aW +aW +aG +aG +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (220,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -oO -oO -oO -oO -oO -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 -oO -oO -oO -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +an +bb +am +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ap +ap +ap +ap +ap +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +AB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +ap +ap +aW +aG +aG +aG +aG +aG +aG +aG +ac +ac +ac +ac +ab "} (221,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -oO -oO -oO -oO -oO -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 -oO -oO -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +an +bb +am +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ap +ap +ap +ap +ap +ap +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +AB +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aM +aM +aM +aM +aM +aM +aM +ap +aW +aW +aG +aG +aG +aG +aG +ac +ac +ac +ac +ac +ab "} (222,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -oO -oO -oO -oO -oO -oO -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -Od -Od -Od -Od -Od -Od -Od -oO -Sr -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +an +bb +an +am +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ap +ap +ap +ap +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aK +aK +uc +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aM +aM +aM +aM +aM +ap +ap +aW +aG +aG +aG +aG +aG +ac +ac +ac +ac +ac +ab "} (223,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -oO -oO -oO -oO -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -Od -Od -Od -Od -Od -oO -oO -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +aj +ae +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +an +bb +an +am +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +aG +aG +aG +ap +ap +ap +ap +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aK +aK +aK +uc +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aM +aM +aM +aM +aM +aM +aW +aG +aG +aG +aG +aG +ac +ac +ac +ac +ac +ab "} (224,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -oO -oO -oO -oO -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -Od -Od -Od -Od -Od -Od -Sr -Si -Si -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ad +ak +ak +ak +ak +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aO +ag +ag +aP +aP +ag +ag +ag +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aQ +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aR +aR +Lv +bb +aR +aR +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +kZ +aH +aH +aH +aH +aH +aH +aH +St +St +St +St +St +AB +AB +AB +AB +AB +AB +AB +AB +AB +AB +AB +AB +AB +uc +uc +uc +uc +uc +uc +cG +uc +uc +uc +uc +uc +uc +uc +uc +uc +uc +uc +uc +uc +uc +uc +AB +AB +AB +AB +qr +AB +AB +aH +aH +aH +ak +ak +ak +ak +ak +ad "} (225,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -Si -oO -oO -oO -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -Od -Od -Od -Od -Sr -Od -Od -Si -Si -Si -Si -Si -Si -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ag +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +bb +an +am +am +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +ap +ap +ap +aM +aM +aM +aM +aM +aM +aM +aM +aM +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +uc +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aM +aW +aW +aM +aM +aM +aM +aG +ac +ac +ac +ac +ac +ab "} (226,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -Si -oO -oO -oO -Od -Od -Od -Od -Od -Od -Od -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -Od -Sr -Sr -Od -Od -Od -Od -Si -Si -Si -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ag +ae +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +bb +an +an +am +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +aG +ap +ap +aM +aM +aM +aM +aM +aM +aM +aM +aM +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +uc +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aW +aW +aM +aM +aM +aM +aM +ac +ac +ac +ac +ac +ab "} (227,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -Si -oO -oO -oO -Od -Od -Od -Od -Od -Od -Od -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -Sr -Sr -Od -Od -Od -Od -Od -Si -Si -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +ag +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +am +aR +an +an +am +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +aG +ap +ap +aM +aM +aM +aM +aM +aM +aM +aM +aM +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +uc +aK +aK +aK +aK +aK +aN +aN +aN +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +ar +ar +aK +aM +aM +aM +aM +ac +ac +ac +ac +ac +ab "} (228,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -Si -oO -oO -Od -Od -Od -Od -Od -Od -Od -Od -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -OY -OY -OY -JH -JH -JH -JH -JH -JH -JH -JH -JH -Yg -lY -zc -JH -Od -Od -Od -Od -Od -Si -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +ae +aP +aj +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +aR +an +an +am +am +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +aG +aG +ap +ap +aM +aM +aM +aM +aM +aM +aM +aM +aM +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +uc +aK +aK +aK +aN +aN +aN +aN +aN +aN +aK +aK +aK +aK +aK +aK +aK +aK +aK +ar +ar +aK +aK +aK +aK +aM +ac +ac +ac +ac +ac +ab "} (229,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -oO -oO -Od -Od -Od -Od -Od -Od -Od -Od -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -OY -OY -OY -OY -OY -OY -JH -JH -JH -JH -JH -JH -JH -JH -Yg -lY -zc -YR -JH -JH -JH -Od -Od -Od -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +ae +ae +ag +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +am +aR +am +an +an +am +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +aG +ap +ap +ap +aM +aM +aM +aM +aM +aM +aM +aM +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +uc +aK +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +aK +aK +aK +aK +aK +aK +ar +ar +aK +aK +aK +aK +aK +aK +ac +ac +ac +ac +ab "} (230,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -Si -oO -oO -Od -Od -Od -Od -Od -Od -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -JH -JH -JH -JH -JH -JH -zc -lY -YR -JH -JH -JH -JH -Od -Od -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aR +am +an +an +am +am +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aH +aG +ap +ap +aM +aM +aM +aM +aM +aM +aM +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +ac +ac +ac +ac +ab "} (231,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -js -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -Si -oO -oO -Od -Od -Od -Od -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +aj +ae +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aR +am +an +an +an +am +am +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +St +ap +ap +aM +aM +aM +aM +aM +aM +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +ac +ac +ac +ac +ab "} (232,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -Si -oO -oO -oO -Od -Od -Od -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aR +am +an +an +an +an +am +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ap +St +ap +aM +aM +aM +aM +aM +aM +aM +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +ac +ac +ac +ac +ab "} (233,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -oO -oO -oO -Od -Od -Od -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +am +am +an +an +an +am +am +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ap +ap +St +aM +aM +aM +aM +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +ac +ac +ac +ab "} (234,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -js -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -Si -oO -oO -oO -Od -Od -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -Oa -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +am +am +am +an +an +an +am +am +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ap +ap +ap +AB +aM +aM +aM +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +aK +aK +aK +aK +aK +aK +aK +ac +ac +ac +ab "} (235,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -Si -oO -oO -Od -Od -Od -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -JH -JH -JH -JH -JH -JH -JH -Oa -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +ae +ae +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ae +aP +ae +am +am +am +an +an +am +am +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ap +ap +aM +aM +AB +aM +aM +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +aK +aK +aK +aK +aK +ac +ac +ac +ab "} (236,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -oO -oO -oO -Od -Od -Od -JH -JH -JH -JH -JH -JH -JH -JH -JH -JH -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -JH -JH -JH -JH -JH -Oa -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +ae +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +ae +am +am +am +am +an +an +am +am +am +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ap +ap +ap +ap +aM +aM +aM +AB +aM +aM +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +aK +aK +aK +ac +ac +ac +ac +ab "} (237,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -Tx -Tx -Tx -Si -Si -Si -Si -Si -Si -Si -Si -Si -UN -oO -oO -oO -Od -Od -JH -JH -JH -JH -JH -JH -JH -JH -JH -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -JH -JH -JH -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +ae +aj +aj +ae +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ag +ae +ae +am +am +am +am +an +an +am +am +am +ap +ap +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ap +ap +ap +ap +ap +aM +aM +aM +AB +aM +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +aK +aK +ac +ac +ac +ac +ab "} (238,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Tx -Tx -Tx -js -js -js -Tx -Tx -oO -oO -Si -Si -Si -Si -Si -Si -Si -UN -oO -oO -Od -Od -Od -JH -JH -JH -JH -JH -JH -JH -JH -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -JH -JH -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +ae +ae +aj +ae +ae +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ae +ae +ae +aj +ae +ag +ae +ae +ae +ae +am +am +am +an +am +am +am +ap +ap +ap +aG +aG +aG +aG +aG +aG +aG +ap +ap +ap +ap +ap +ap +aM +aM +aM +aM +AB +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +aK +aK +ac +ac +ac +ac +ab "} (239,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -wR -xG -Tx -Tx -Tx -js -js -Tx -Tx -oO -oO -oO -oO -Si -Si -Si -Si -Si -Ti -oO -Od -Od -Od -Od -JH -JH -JH -JH -JH -JH -JH -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -JH -JH -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +ae +aj +ae +ae +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ae +ae +aj +ae +ae +ae +ag +aj +ae +ae +ae +aj +am +am +am +an +am +am +am +aM +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +aM +aM +aM +aM +aM +aM +aM +aK +uc +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +ac +ac +ac +ac +ac +ab "} (240,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -wR -xG -xG -wR -wR -xG -Tx -Tx -Tx -Tx -js -js -Tx -Tx -Od -oO -oO -oO -oO -oO -oO -oO -Ti -oO -Od -Od -Od -JH -JH -JH -JH -JH -JH -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -JH -Oa -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +ae +aj +aj +ae +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +aj +am +am +an +an +am +am +aM +aM +aM +ap +ap +ap +ap +ap +ap +ap +aM +aM +aM +aM +aM +aM +aM +aK +aK +uc +aK +aK +aK +aK +aK +aK +aK +aK +aK +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +ac +ac +ac +ab +ab +ab "} (241,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -wR -xG -wR -wR -wR -xG -xG -Tx -js -js -js -Tx -Od -Od -Od -oO -oO -oO -oO -oO -Ti -Od -Od -Od -JH -JH -JH -JH -JH -JH -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -JH -JH -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +aj +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ae +ae +ae +ae +ae +aj +ag +ae +ae +ae +ae +ae +ae +ae +am +am +an +am +am +am +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aK +aK +aK +aK +aK +uc +aK +aK +aK +aK +aK +aK +aK +aK +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +ac +ac +ac +ab +aY +ab "} (242,1,1) = {" -yC -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -wR -xG -wR -wR -wR -wR -wR -wR -xG -Tx -Tx -js -js -js -Tx -Od -Od -Od -Od -Od -Od -Od -TD -Od -Od -Od -JH -JH -JH -JH -JH -JH -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -yC -yC -yC -pB -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +aj +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ae +ae +ae +ae +aj +aP +ae +ae +aj +aj +ae +ae +ah +ah +am +am +am +am +am +am +aM +aM +aM +aM +aM +aM +aM +aM +aM +aK +aK +aK +aK +aK +aK +aK +aK +uc +aK +aK +aK +aK +aK +aK +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +ac +ac +ab +bX +ab "} (243,1,1) = {" -yC -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -wR -wR -xG -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -Tx -js -js -js -Tx -Tx -Od -Od -Od -Od -Od -Od -TD -Od -Od -JH -JH -JH -JH -JH -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -yC -yC -yC -xp -yC +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ae +ae +ae +ae +ae +ag +ae +ae +ae +aj +ae +ae +ah +aJ +am +am +am +an +an +am +am +aM +aM +aM +aM +aM +aM +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +uc +aK +aK +aK +aK +aK +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +aK +bq +bq +NL +bq "} (244,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -IJ -Tx -Tx -Tx -js -js -Tx -Tx -Od -Od -Od -Od -Od -TD -JH -JH -JH -JH -JH -JH -JH -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -JH -xh -xh -AP -xh +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +aj +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ah +ah +aJ +aJ +am +am +am +an +an +am +am +am +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +uc +aK +aK +aK +aK +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +bu +dO +bu +ld +bu "} (245,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -IJ -IJ -Tx -Tx -Tx -js -js -Tx -Tx -Tx -JH -JH -JH -Uo -JH -JH -JH -JH -JH -JH -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -Rm -QE -Rm -rZ -Rm +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ah +aJ +aJ +aJ +am +am +an +an +an +am +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +uc +aK +aK +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +bu +bu +bu +ld +bu "} (246,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -wR -wR -wR -wR -wR -wR -wR -wR -wR -pC -IJ -IJ -IJ -Tx -Tx -js -js -js -Tx -JH -JH -JH -JH -Uo -JH -JH -JH -JH -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -Rm -Rm -Rm -rZ -Rm +ab +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ae +aj +ae +ae +ae +ag +ae +ae +ae +ae +ae +ah +ah +ah +aJ +aJ +aJ +am +am +am +an +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +uc +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +bu +bu +bu +ld +bu "} (247,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -wR -wR -wR -wR -wR -wR -wR -pC -pC -pC -IJ -IJ -IJ -Tx -Tx -Tx -js -OY -OY -OY -OY -OY -Vu -OY -JH -JH -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -Rm -Rm -Rm -rZ -Rm +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ae +ae +aj +ae +ae +aj +ag +ae +ae +aj +aj +ah +ah +ah +ah +ah +aJ +aJ +aJ +am +am +aK +aK +aN +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +aK +YL +aa +bC +aa "} (248,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -wR -wR -wR -wR -wR -wR -wR -wR -pC -pC -pC -pC -pC -IJ -IJ -IJ -Tx -Tx -JH -OY -OY -OY -OY -OY -Vu -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -JH -kj -kj -dv -kj +ab +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ae +ae +ae +ae +ae +ae +ak +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +aJ +aJ +am +aK +aK +aK +aN +aN +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +aK +ac +ac +ab +bX +ab "} (249,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -wR -xG -wR -Oa -Oa -Oa -Oa -Oa -Oa -pC -pC -pC -pC -pC -IJ -IJ -Tx -JH -JH -OY -OY -OY -OY -OY -Vu -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -JH -yC -yC -yC -xp -yC +ab +ac +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ae +ae +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aK +aK +aK +aK +aN +aN +aN +aN +aN +aN +aK +aK +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +aK +aK +ac +ac +ab +bX +ab "} (250,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -wR -wR -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -JH -JH -JH -JH -OY -OY -OY -OY -OY -Vu -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -JH -JH -yC -yC -yC -xp -yC +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aK +aK +aK +aK +aK +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +aK +aK +aK +ac +ab +ab +ab "} (251,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -wR -wR -wR -xG -Oa -Oa -Oa -Oa -Oa -Oa -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Oa -Oa -Oa -Oa -Oa -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Oa -Oa -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Oa -Hx -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -JH -JH -JH -JH -JH -OY -OY -OY -OY -OY -Vu -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -JH -JH -JH -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ac +ac +ac +ac +ac +ac +ac +ac +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ac +ac +ac +ac +ac +ac +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +ac +ac +ac +ac +ac +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aK +aK +aK +aK +aK +aK +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +aK +aK +aK +ac +ac +ac +ab "} (252,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -wR -wR -wR -wR -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -xG -xG -xG -xG -xG -xG -Oa -Oa -xG -xG -xG -xG -xG -xG -Oa -Oa -Oa -Oa -Oa -Oa -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -cs -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -xG -Oa -Oa -Oa -Oa -Oa -xG -xG -xG -xG -xG -xG -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -xG -xG -xG -xG -xG -xG -xG -xG -xG -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -xG -xG -xG -xG -xG -xG -xG -xG -Oa -Oa -Oa -Oa -xG -cs -xG -xG -xG -xG -xG -xG -xG -Oa -Oa -Oa -Oa -Oa -xG -xG -xG -xG -xG -xG -xG -xG -Oa -Oa -Oa -Oa -Oa -xG -xG -xG -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -JH -JH -JH -JH -JH -JH -OY -OY -OY -OY -Vu -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -JH -JH -JH -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ae +ae +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aj +aj +aj +aj +aj +aj +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aj +aj +aj +aj +aj +ac +ac +ac +ac +ac +ac +ac +aj +aj +aj +aj +aP +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +aK +aK +aK +aK +aK +aK +aK +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +aK +aK +aK +ac +ac +ac +ab "} (253,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -wR -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -xG -xG -xG -xG -xG -xG -cs -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -xG -xG -xG -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -aw -Oa -xG -xG -xG -xG -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -xG -xG -xG -xG -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -JH -JH -JH -JH -JH -JH -JH -OY -OY -OY -OY -Vu -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -JH -JH -JH -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aP +aj +aj +aj +aj +aj +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +aK +aK +aK +aK +aK +aK +aK +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +aK +aK +aK +ac +ac +ac +ab "} (254,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -aw -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -aw -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -JH -JH -JH -JH -JH -JH -JH -OY -OY -OY -OY -OY -Vu -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -JH -JH -JH -Oa -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +bF +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +aK +aK +aK +aK +aK +aK +aK +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +aK +aK +aK +aK +ac +ac +ab "} (255,1,1) = {" -yC -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -aw -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -aw -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -JH -JH -JH -JH -JH -JH -JH -OY -OY -OY -OY -OY -Vu -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -OY -JH -JH -JH -JH -JH -JH -Oa -Oa -yC +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ak +ac +ac +ac +ac +ac +ac +ac +ac +aK +aK +aK +aK +aK +aK +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +No +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aK +aK +aK +aK +aK +ac +ac +ab "} (256,1,1) = {" -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -aj -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -aj -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -yC -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -XG -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -Mm -yC -yC -yC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab "} diff --git a/maps/southern_cross/southern_cross-12.dmm b/maps/southern_cross/southern_cross-12.dmm index 633e7dd55e..9cab78c1a6 100644 --- a/maps/southern_cross/southern_cross-12.dmm +++ b/maps/southern_cross/southern_cross-12.dmm @@ -34,9 +34,12 @@ /turf/simulated/floor/outdoors/snow, /area/surface/outside/wilderness/skylands) "bx" = ( -/obj/structure/flora/bush, /obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow, +/turf/simulated/wall/solidrock, +/area/surface/outside/wilderness/skylands) +"bV" = ( +/obj/effect/zone_divider, +/turf/simulated/mineral/sif, /area/surface/outside/wilderness/skylands) "bY" = ( /obj/effect/catwalk_plated, @@ -97,19 +100,19 @@ /turf/simulated/floor/wood/sif, /area/surface/outpost/shelter/exterior) "dd" = ( -/obj/structure/flora/ausbushes/fullgrass, /obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow, -/area/surface/outside/wilderness/skylands) +/obj/effect/zone_divider, +/turf/simulated/open{ + temperature = 243.15 + }, +/area/surface/outside/wilderness/skylands/empty) "do" = ( /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/outdoors/snow, /area/surface/outside/wilderness/skylands) "dD" = ( -/obj/structure/flora/rocks1, -/obj/structure/flora/ausbushes/reedbush, /obj/effect/zone_divider, -/turf/simulated/floor/water, +/turf/simulated/floor/outdoors/snow, /area/surface/outside/wilderness/skylands) "dI" = ( /obj/structure/flora/rocks1, @@ -134,6 +137,11 @@ /obj/effect/zone_divider, /turf/simulated/floor/water, /area/surface/outside/wilderness/skylands) +"ef" = ( +/obj/structure/flora/smallbould, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass, +/area/surface/outside/wilderness/skylands) "em" = ( /obj/structure/cable{ d1 = 4; @@ -243,6 +251,11 @@ /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/outdoors/grass, /area/surface/outside/wilderness/skylands) +"hI" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/snow, +/area/surface/outside/wilderness/skylands) "hP" = ( /obj/structure/flora/smallbould, /turf/simulated/floor/water/deep, @@ -267,6 +280,7 @@ /area/surface/outpost/shelter/utilityroom) "ih" = ( /obj/structure/flora/ausbushes, +/obj/effect/zone_divider, /turf/simulated/floor/outdoors/dirt, /area/surface/outside/wilderness/skylands) "in" = ( @@ -275,6 +289,11 @@ /obj/fiftyspawner/glass, /turf/simulated/floor/wood/sif, /area/surface/outpost/shelter/utilityroom) +"io" = ( +/obj/structure/flora/smallbould, +/obj/effect/zone_divider, +/turf/simulated/floor/water, +/area/surface/outside/wilderness/skylands) "iu" = ( /obj/effect/zone_divider, /turf/simulated/mineral/floor/light{ @@ -302,6 +321,7 @@ "jh" = ( /obj/structure/flora/ausbushes/stalkybush, /obj/structure/flora/ausbushes/sparsegrass, +/obj/effect/zone_divider, /turf/simulated/floor/outdoors/grass, /area/surface/outside/wilderness/skylands) "jq" = ( @@ -340,12 +360,12 @@ /obj/item/weapon/storage/box/syndie_kit{ max_storage_space = 20; name = "box of 7.62mm clips"; - starts_with = list(/obj/item/ammo_magazine/clip/c762 = 10) + starts_with = list(/obj/item/ammo_magazine/clip/c762=10) }, /obj/item/weapon/storage/box/syndie_kit{ max_storage_space = 20; name = "box of 7.62mm clips"; - starts_with = list(/obj/item/ammo_magazine/clip/c762 = 10) + starts_with = list(/obj/item/ammo_magazine/clip/c762=10) }, /obj/item/device/binoculars, /obj/item/device/binoculars, @@ -518,7 +538,7 @@ "nj" = ( /obj/structure/closet/walllocker_double/survival/north{ name = "Wilderness Shelter Emergency Survival Wall Cabinet"; - starts_with = list(/obj/item/device/gps = 5,/obj/item/weapon/material/knife/tacknife/survival = 5,/obj/random/mre = 5,/obj/item/device/flashlight/color/yellow = 5,/obj/item/device/flashlight/flare = 5,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle = 5,/obj/item/weapon/whetstone) + starts_with = list(/obj/item/device/gps=5,/obj/item/weapon/material/knife/tacknife/survival=5,/obj/random/mre=5,/obj/item/device/flashlight/color/yellow=5,/obj/item/device/flashlight/flare=5,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle=5,/obj/item/weapon/whetstone) }, /turf/simulated/floor/wood/sif, /area/surface/outpost/shelter) @@ -566,6 +586,10 @@ /obj/structure/flora/log2, /turf/simulated/floor/water/deep, /area/surface/outside/wilderness/skylands) +"og" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/ice, +/area/surface/outside/wilderness/skylands) "oq" = ( /obj/structure/flora/rocks2, /obj/structure/flora/ausbushes/sparsegrass, @@ -577,6 +601,11 @@ /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/outdoors/mud, /area/surface/outside/wilderness/skylands) +"oF" = ( +/obj/structure/flora/ausbushes, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass, +/area/surface/outside/wilderness/skylands) "oM" = ( /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/mineral/floor{ @@ -605,8 +634,9 @@ /turf/simulated/floor/wood/sif, /area/surface/outpost/shelter/utilityroom) "pl" = ( +/obj/structure/flora/grass/brown, /obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/snow, /area/surface/outside/wilderness/skylands) "pr" = ( /obj/structure/flora/tree/jungle_small, @@ -639,6 +669,11 @@ /obj/structure/flora/lily2, /turf/simulated/floor/water/deep, /area/surface/outside/wilderness/skylands) +"qG" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt, +/area/surface/outside/wilderness/skylands) "qJ" = ( /turf/simulated/mineral/floor/light, /area/surface/outside/wilderness/skylands) @@ -649,6 +684,13 @@ }, /turf/simulated/floor/wood/sif, /area/surface/outpost/shelter/dorms) +"qT" = ( +/obj/structure/flora/grass/brown, +/obj/effect/zone_divider, +/turf/simulated/mineral/floor{ + outdoors = 1 + }, +/area/surface/outside/wilderness/skylands) "ra" = ( /obj/structure/flora/rocks1, /obj/structure/flora/lily1, @@ -660,7 +702,8 @@ /area/surface/outside/wilderness/skylands) "rn" = ( /obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass, +/obj/effect/zone_divider, +/turf/simulated/mineral, /area/surface/outside/wilderness/skylands) "rw" = ( /obj/structure/flora/bboulder1, @@ -679,14 +722,13 @@ /turf/simulated/floor/water/deep, /area/surface/outside/wilderness/skylands) "rY" = ( -/obj/structure/flora/ausbushes/reedbush, +/obj/structure/flora/bush, /obj/effect/zone_divider, -/turf/simulated/floor/outdoors/mud, +/turf/simulated/floor/outdoors/snow, /area/surface/outside/wilderness/skylands) "sc" = ( -/obj/structure/flora/lily1, /obj/effect/zone_divider, -/turf/simulated/floor/water, +/turf/simulated/floor/outdoors/dirt, /area/surface/outside/wilderness/skylands) "sf" = ( /obj/structure/flora/rocks1, @@ -706,14 +748,15 @@ /turf/simulated/floor/water/deep, /area/surface/outside/wilderness/skylands) "sW" = ( -/obj/structure/flora/lily2, +/obj/structure/flora/ausbushes/fullgrass, /obj/effect/zone_divider, -/turf/simulated/floor/water/deep, +/turf/simulated/floor/outdoors/snow, /area/surface/outside/wilderness/skylands) "tb" = ( -/obj/structure/flora/ausbushes/reedbush, /obj/effect/zone_divider, -/turf/simulated/floor/water, +/turf/simulated/mineral/floor{ + outdoors = 1 + }, /area/surface/outside/wilderness/skylands) "ti" = ( /obj/effect/catwalk_plated, @@ -723,10 +766,11 @@ /turf/simulated/floor/wood/sif, /area/surface/outpost/shelter/exterior) "tj" = ( -/obj/structure/flora/ausbushes/reedbush, -/obj/structure/flora/ausbushes/sparsegrass, /obj/effect/zone_divider, -/turf/simulated/floor/outdoors/mud, +/obj/effect/zone_divider, +/turf/simulated/mineral/floor{ + outdoors = 1 + }, /area/surface/outside/wilderness/skylands) "tm" = ( /obj/effect/catwalk_plated, @@ -827,8 +871,11 @@ /turf/simulated/floor/wood/sif, /area/surface/outpost/shelter) "uR" = ( +/obj/structure/outcrop, /obj/effect/zone_divider, -/turf/simulated/mineral/sif, +/turf/simulated/mineral/floor{ + outdoors = 1 + }, /area/surface/outside/wilderness/skylands) "uW" = ( /obj/effect/catwalk_plated, @@ -842,6 +889,11 @@ /obj/structure/flora/lily3, /turf/simulated/floor/water/deep, /area/surface/outside/wilderness/skylands) +"uZ" = ( +/obj/structure/flora/bush, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt, +/area/surface/outside/wilderness/skylands) "vd" = ( /obj/structure/flora/rocks1, /turf/simulated/floor/water, @@ -857,7 +909,12 @@ /area/surface/outside/wilderness/skylands) "vv" = ( /obj/effect/zone_divider, -/turf/simulated/floor/water/deep, +/turf/simulated/floor/outdoors/rocks, +/area/surface/outside/wilderness/skylands) +"vy" = ( +/obj/structure/flora/lily2, +/obj/effect/zone_divider, +/turf/simulated/floor/water, /area/surface/outside/wilderness/skylands) "vS" = ( /obj/structure/table/rack/shelf, @@ -887,9 +944,8 @@ /turf/simulated/floor/water, /area/surface/outside/wilderness/skylands) "wO" = ( -/obj/structure/flora/lily3, /obj/effect/zone_divider, -/turf/simulated/floor/water, +/turf/simulated/floor/water/deep, /area/surface/outside/wilderness/skylands) "wY" = ( /obj/structure/flora/log1, @@ -940,8 +996,9 @@ /turf/simulated/floor/outdoors/grass, /area/surface/outside/wilderness/skylands) "xO" = ( +/obj/structure/flora/ausbushes/fullgrass, /obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow, +/turf/simulated/floor/outdoors/dirt, /area/surface/outside/wilderness/skylands) "xV" = ( /turf/simulated/floor/outdoors/grass/heavy, @@ -955,10 +1012,9 @@ }, /area/surface/outpost/shelter/exterior) "yf" = ( +/obj/structure/outcrop, /obj/effect/zone_divider, -/turf/simulated/mineral/floor{ - outdoors = 1 - }, +/turf/simulated/floor/outdoors/dirt, /area/surface/outside/wilderness/skylands) "yn" = ( /obj/structure/flora/ausbushes/fullgrass, @@ -1017,6 +1073,14 @@ /obj/structure/flora/ausbushes/leafybush, /turf/simulated/floor/water, /area/surface/outside/wilderness/skylands) +"zN" = ( +/obj/effect/catwalk_plated, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/wood/sif, +/area/surface/outpost/shelter/exterior) "Ae" = ( /obj/structure/table/sifwooden_reinforced, /obj/item/weapon/storage/box{ @@ -1024,7 +1088,7 @@ name = "box of 7.62mm practice clips"; pixel_x = 3; pixel_y = 3; - starts_with = list(/obj/item/ammo_magazine/clip/c762/practice = 10) + starts_with = list(/obj/item/ammo_magazine/clip/c762/practice=10) }, /obj/structure/cable{ d1 = 1; @@ -1044,7 +1108,7 @@ name = "box of 7.62mm practice clips"; pixel_x = 3; pixel_y = -1; - starts_with = list(/obj/item/ammo_magazine/clip/c762/practice = 10) + starts_with = list(/obj/item/ammo_magazine/clip/c762/practice=10) }, /turf/simulated/floor/wood/sif, /area/surface/outpost/shelter) @@ -1112,6 +1176,11 @@ /obj/structure/toilet, /turf/simulated/floor/tiled/freezer, /area/surface/outpost/shelter/dorms) +"BZ" = ( +/obj/structure/flora/log2, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt, +/area/surface/outside/wilderness/skylands) "Ci" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/brflowers, @@ -1144,12 +1213,13 @@ /turf/simulated/floor/outdoors/grass, /area/surface/outside/wilderness/skylands) "CO" = ( +/obj/structure/flora/ausbushes/sparsegrass, /obj/effect/zone_divider, -/turf/simulated/floor/outdoors/ice, +/turf/simulated/floor/outdoors/dirt, /area/surface/outside/wilderness/skylands) "CS" = ( -/obj/effect/zone_divider, -/turf/simulated/wall/solidrock, +/obj/structure/flora/ausbushes, +/turf/simulated/floor/outdoors/dirt, /area/surface/outside/wilderness/skylands) "CT" = ( /turf/simulated/wall/log_sif, @@ -1167,6 +1237,11 @@ /obj/structure/flora/ausbushes/genericbush, /turf/simulated/floor/outdoors/mud, /area/surface/outside/wilderness/skylands) +"Dh" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass, +/area/surface/outside/wilderness/skylands) "Dy" = ( /obj/structure/flora/rocks1, /obj/structure/flora/ausbushes/reedbush, @@ -1277,7 +1352,7 @@ /obj/structure/closet/medical_wall{ name = "Wilderness Shelter first-aid closet"; pixel_y = 31; - starts_with = list(/obj/item/roller,/obj/item/bodybag/cryobag,/obj/item/weapon/storage/firstaid/regular = 2,obj/item/weapon/storage/pill_bottle/spaceacillin) + starts_with = list(/obj/item/roller,/obj/item/bodybag/cryobag,/obj/item/weapon/storage/firstaid/regular=2,obj/item/weapon/storage/pill_bottle/spaceacillin) }, /turf/simulated/floor/wood/sif, /area/surface/outpost/shelter) @@ -1314,9 +1389,8 @@ /turf/simulated/floor/outdoors/grass/heavy, /area/surface/outside/wilderness/skylands) "Hr" = ( -/obj/structure/flora/log2, /obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/grass, /area/surface/outside/wilderness/skylands) "Hw" = ( /obj/structure/flora/bboulder1, @@ -1390,6 +1464,11 @@ /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/outdoors/dirt, /area/surface/outside/wilderness/skylands) +"Km" = ( +/obj/effect/zone_divider, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt, +/area/surface/outside/wilderness/skylands) "Kq" = ( /obj/machinery/camera/network/exploration{ c_tag = "WILD - Shelter Second Floor"; @@ -1424,10 +1503,23 @@ "La" = ( /turf/simulated/floor/outdoors/snow, /area/surface/outside/wilderness/skylands) +"Ll" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/snow, +/area/surface/outside/wilderness/skylands) "Lq" = ( /obj/structure/outcrop, +/obj/effect/zone_divider, /turf/simulated/floor/water, /area/surface/outside/wilderness/skylands) +"Lt" = ( +/obj/structure/flora/rocks2, +/obj/effect/zone_divider, +/turf/simulated/mineral/floor{ + outdoors = 1 + }, +/area/surface/outside/wilderness/skylands) "LB" = ( /obj/structure/flora/log2, /turf/simulated/floor/outdoors/grass, @@ -1436,6 +1528,10 @@ /obj/structure/flora/rocks2, /turf/simulated/floor/outdoors/mud, /area/surface/outside/wilderness/skylands) +"LK" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/heavy, +/area/surface/outside/wilderness/skylands) "LP" = ( /obj/structure/flora/tree/dead, /turf/simulated/floor/outdoors/rocks, @@ -1487,6 +1583,7 @@ "MM" = ( /obj/structure/flora/tree/jungle_small, /obj/structure/flora/ausbushes/grassybush, +/obj/effect/zone_divider, /turf/simulated/floor/outdoors/grass, /area/surface/outside/wilderness/skylands) "MQ" = ( @@ -1523,6 +1620,12 @@ }, /turf/simulated/floor/plating/external, /area/surface/outpost/shelter/exterior) +"Nv" = ( +/obj/structure/flora/rocks1, +/obj/structure/flora/ausbushes/reedbush, +/obj/effect/zone_divider, +/turf/simulated/floor/water, +/area/surface/outside/wilderness/skylands) "NH" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/ppflowers, @@ -1602,6 +1705,11 @@ /obj/structure/flora/log2, /turf/simulated/floor/outdoors/dirt, /area/surface/outside/wilderness/skylands) +"PP" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/mud, +/area/surface/outside/wilderness/skylands) "PV" = ( /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/outdoors/snow, @@ -1844,9 +1952,9 @@ }, /area/surface/outside/wilderness/skylands) "Vp" = ( -/obj/structure/flora/ausbushes/sparsegrass, /obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow, +/obj/effect/zone_divider, +/turf/simulated/floor/water/deep, /area/surface/outside/wilderness/skylands) "VD" = ( /obj/structure/bed/chair/bay/comfy/blue{ @@ -1855,15 +1963,19 @@ /turf/simulated/floor/wood/sif, /area/surface/outpost/shelter) "VE" = ( +/obj/structure/flora/ausbushes/reedbush, /obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/heavy, +/turf/simulated/floor/outdoors/mud, +/area/surface/outside/wilderness/skylands) +"VJ" = ( +/obj/structure/flora/rocks1, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt, /area/surface/outside/wilderness/skylands) "VT" = ( -/obj/structure/flora/grass/brown, +/obj/structure/flora/lily1, /obj/effect/zone_divider, -/turf/simulated/mineral/floor{ - outdoors = 1 - }, +/turf/simulated/floor/water, /area/surface/outside/wilderness/skylands) "Wb" = ( /obj/effect/zone_divider, @@ -1891,13 +2003,14 @@ /turf/simulated/floor/wood/sif, /area/surface/outpost/shelter/dorms) "WB" = ( +/obj/structure/flora/lily2, /obj/effect/zone_divider, -/turf/simulated/floor/outdoors/rocks, +/turf/simulated/floor/water/deep, /area/surface/outside/wilderness/skylands) "WF" = ( -/obj/structure/flora/rocks1, +/obj/structure/flora/ausbushes/reedbush, /obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/water, /area/surface/outside/wilderness/skylands) "WH" = ( /obj/structure/table/sifwooden_reinforced, @@ -1982,11 +2095,10 @@ }, /area/surface/outside/wilderness/skylands) "Xw" = ( -/obj/structure/flora/rocks2, +/obj/structure/flora/ausbushes/reedbush, +/obj/structure/flora/ausbushes/sparsegrass, /obj/effect/zone_divider, -/turf/simulated/mineral/floor{ - outdoors = 1 - }, +/turf/simulated/floor/outdoors/mud, /area/surface/outside/wilderness/skylands) "Xx" = ( /obj/structure/flora/ausbushes/sparsegrass, @@ -2004,9 +2116,9 @@ /turf/simulated/floor/wood/sif, /area/surface/outpost/shelter/dorms) "XK" = ( -/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/lily3, /obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow, +/turf/simulated/floor/water, /area/surface/outside/wilderness/skylands) "XU" = ( /obj/effect/catwalk_plated, @@ -2080,6 +2192,11 @@ }, /turf/simulated/floor/wood/sif, /area/surface/outpost/shelter) +"ZQ" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/heavy, +/area/surface/outside/wilderness/skylands) (1,1,1) = {" aE @@ -2114,6 +2231,7 @@ aE aE aE aE +bx aE aE aE @@ -2145,8 +2263,8 @@ aE aE aE aE +bx aE -CS aE aE aE @@ -2177,6 +2295,7 @@ aE aE aE aE +bx aE aE aE @@ -2208,9 +2327,9 @@ aE aE aE aE +bx aE aE -CS aE aE aE @@ -2240,6 +2359,7 @@ aE aE aE aE +bx aE aE aE @@ -2271,11 +2391,7 @@ aE aE aE aE -aE -aE -aE -CS -aE +bx aE aE aE @@ -2307,6 +2423,7 @@ aE aE aE aE +bx aE aE aE @@ -2372,6 +2489,7 @@ bj bj bj bj +bV bj bj bj @@ -2403,8 +2521,8 @@ bj bj bj bj +bV bj -uR bj bj bj @@ -2435,6 +2553,7 @@ bj bj bj bj +bV bj bj bj @@ -2466,9 +2585,9 @@ bj bj bj bj +bV bj bj -uR bj bj bj @@ -2498,6 +2617,7 @@ bj bj bj bj +bV bj bj bj @@ -2529,11 +2649,7 @@ bj bj bj bj -bj -bj -bj -uR -bj +bV bj bj bj @@ -2565,6 +2681,7 @@ bj bj bj bj +bV bj bj bj @@ -2630,7 +2747,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -2694,7 +2811,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -2758,7 +2875,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -2822,7 +2939,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -2888,7 +3005,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -2952,7 +3069,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -3016,7 +3133,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -3080,7 +3197,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -3146,7 +3263,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -3210,7 +3327,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -3274,7 +3391,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -3338,7 +3455,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -3404,7 +3521,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -3468,7 +3585,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -3532,7 +3649,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -3596,7 +3713,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -3662,7 +3779,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -3726,7 +3843,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -3790,7 +3907,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -3854,7 +3971,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -3920,7 +4037,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -3984,7 +4101,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -4048,7 +4165,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -4112,7 +4229,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -4178,7 +4295,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -4242,7 +4359,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -4306,7 +4423,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -4370,7 +4487,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -4436,7 +4553,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -4500,7 +4617,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -4564,7 +4681,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -4628,7 +4745,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -4694,7 +4811,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -4758,7 +4875,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -4822,7 +4939,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -4886,7 +5003,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -4952,7 +5069,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -5016,7 +5133,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -5080,7 +5197,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -5144,7 +5261,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -5210,7 +5327,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -5274,7 +5391,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -5338,7 +5455,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -5402,7 +5519,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -5468,7 +5585,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -5532,7 +5649,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -5596,7 +5713,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -5660,7 +5777,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -5726,7 +5843,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -5790,7 +5907,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -5854,7 +5971,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -5918,7 +6035,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -5984,7 +6101,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -6048,7 +6165,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -6112,7 +6229,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -6176,7 +6293,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -6242,7 +6359,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -6306,7 +6423,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -6370,7 +6487,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -6434,7 +6551,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -6500,7 +6617,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -6564,7 +6681,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -6628,7 +6745,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -6692,7 +6809,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -6758,7 +6875,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -6822,7 +6939,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -6886,7 +7003,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -6950,7 +7067,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -7016,7 +7133,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -7080,7 +7197,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -7144,7 +7261,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -7208,7 +7325,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -7274,7 +7391,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -7338,7 +7455,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -7402,7 +7519,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -7466,7 +7583,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -7532,7 +7649,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -7596,7 +7713,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -7660,7 +7777,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -7724,7 +7841,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -7790,7 +7907,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -7854,7 +7971,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -7918,7 +8035,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -7982,7 +8099,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -8048,7 +8165,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -8112,7 +8229,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -8176,7 +8293,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -8240,7 +8357,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -8306,7 +8423,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -8370,7 +8487,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -8434,7 +8551,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -8498,7 +8615,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -8564,7 +8681,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -8628,7 +8745,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -8692,7 +8809,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -8756,7 +8873,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -8822,7 +8939,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -8886,7 +9003,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -8950,7 +9067,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -9014,7 +9131,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -9080,7 +9197,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -9144,7 +9261,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -9208,7 +9325,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -9272,7 +9389,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -9338,7 +9455,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -9402,7 +9519,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -9466,7 +9583,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -9530,7 +9647,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -9596,7 +9713,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -9660,7 +9777,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -9724,7 +9841,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -9788,7 +9905,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -9854,7 +9971,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -9918,7 +10035,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -9982,7 +10099,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -10046,7 +10163,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -10080,262 +10197,262 @@ bj aE "} (32,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO +bx +bV jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +dd +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +dd +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +dd +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +dd +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +dd +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +dd +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +dd +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +bV +bx "} (33,1,1) = {" aE @@ -10370,7 +10487,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -10434,7 +10551,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -10498,7 +10615,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -10562,7 +10679,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -10628,7 +10745,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -10692,7 +10809,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -10756,7 +10873,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -10820,7 +10937,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -10886,7 +11003,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -10950,7 +11067,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -11014,7 +11131,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -11078,7 +11195,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -11144,7 +11261,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -11208,7 +11325,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -11272,7 +11389,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -11336,7 +11453,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -11402,7 +11519,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -11466,7 +11583,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -11530,7 +11647,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -11594,7 +11711,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -11660,7 +11777,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -11724,7 +11841,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -11788,7 +11905,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -11852,7 +11969,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -11918,7 +12035,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -11982,7 +12099,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -12046,7 +12163,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -12110,7 +12227,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -12176,7 +12293,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -12240,7 +12357,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -12304,7 +12421,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -12368,7 +12485,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -12434,7 +12551,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -12498,7 +12615,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -12562,7 +12679,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -12626,7 +12743,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -12692,7 +12809,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -12756,7 +12873,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -12820,7 +12937,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -12884,7 +13001,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -12950,7 +13067,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -13014,7 +13131,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -13078,7 +13195,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -13142,7 +13259,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -13208,7 +13325,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -13272,7 +13389,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -13336,7 +13453,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -13400,7 +13517,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -13466,7 +13583,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -13530,7 +13647,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -13594,7 +13711,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -13658,7 +13775,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -13724,7 +13841,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -13788,7 +13905,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -13852,7 +13969,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -13916,7 +14033,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -13982,7 +14099,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -14046,7 +14163,7 @@ WO WO WO WO -WO +jM WO WO La @@ -14110,7 +14227,7 @@ WO WO WO WO -WO +jM WO WO TO @@ -14174,7 +14291,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -14240,7 +14357,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -14304,7 +14421,7 @@ WO WO WO WO -La +dD La La La @@ -14368,7 +14485,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -14432,7 +14549,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -14498,7 +14615,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -14562,7 +14679,7 @@ WO WO La La -La +dD WJ WJ WJ @@ -14626,7 +14743,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -14658,7 +14775,7 @@ TO TO TO TO -pl +sc WJ le le @@ -14690,7 +14807,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -14756,7 +14873,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -14820,7 +14937,7 @@ WO La La WJ -gH +uZ WJ Cz Sr @@ -14884,7 +15001,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -14916,7 +15033,7 @@ TO TO TO TO -pl +sc La La DN @@ -14948,7 +15065,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -15014,7 +15131,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -15078,7 +15195,7 @@ WJ WJ Sr Sr -Cz +tb Cz Cz Cz @@ -15142,7 +15259,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -15174,7 +15291,7 @@ TO TO TO WJ -pl +sc WJ le bZ @@ -15206,7 +15323,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -15272,7 +15389,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -15336,7 +15453,7 @@ Cz TO TO TO -TO +Wb TO TO TO @@ -15400,7 +15517,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -15464,7 +15581,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -15530,7 +15647,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -15594,7 +15711,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -15658,7 +15775,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -15722,7 +15839,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -15788,7 +15905,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -15852,7 +15969,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -15916,7 +16033,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -15948,7 +16065,7 @@ TO TO le le -xO +dD le le le @@ -15980,7 +16097,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -16046,7 +16163,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -16110,7 +16227,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -16174,7 +16291,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -16206,7 +16323,7 @@ TO WJ La le -xO +dD ou le le @@ -16238,7 +16355,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -16304,7 +16421,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -16368,7 +16485,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -16432,7 +16549,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -16464,7 +16581,7 @@ TO vp La Vb -Vp +Ll La le le @@ -16496,7 +16613,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -16562,7 +16679,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -16626,7 +16743,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -16690,7 +16807,7 @@ La WJ WJ TO -WO +jM WO WO WO @@ -16722,7 +16839,7 @@ TO TO La La -xO +dD La La ou @@ -16754,7 +16871,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -16820,7 +16937,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -16884,7 +17001,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -16948,7 +17065,7 @@ TO TO TO TO -TO +Wb WO WO WO @@ -16980,7 +17097,7 @@ TO TO PV La -xO +dD WI le La @@ -17012,7 +17129,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -17078,7 +17195,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -17142,7 +17259,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -17206,7 +17323,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -17270,7 +17387,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -17336,7 +17453,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -17400,7 +17517,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -17464,7 +17581,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -17528,7 +17645,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -17594,7 +17711,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -17658,7 +17775,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -17722,7 +17839,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -17786,7 +17903,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -17852,7 +17969,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -17916,7 +18033,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -17980,7 +18097,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -18044,7 +18161,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -18110,7 +18227,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -18174,7 +18291,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -18238,7 +18355,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -18302,7 +18419,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -18336,10 +18453,8 @@ bj aE "} (64,1,1) = {" -CS -uR -jM -jM +bx +bV jM jM jM @@ -18370,6 +18485,7 @@ jM jM jM jM +dd jM jM jM @@ -18401,6 +18517,7 @@ jM jM jM jM +dd jM jM jM @@ -18432,6 +18549,7 @@ Wb Wb Wb Wb +rn Wb Wb Wb @@ -18463,8 +18581,7 @@ Wb Wb Wb Wb -Wb -jM +dd jM jM jM @@ -18472,8 +18589,8 @@ jM jM jM jM -vv -xO +wO +dD Wb Wb Wb @@ -18496,6 +18613,7 @@ Wb Wb Wb Wb +rn Wb Wb Wb @@ -18506,8 +18624,6 @@ Wb Wb Wb Wb -Wb -jM jM jM jM @@ -18529,11 +18645,12 @@ jM jM jM jM +dd jM jM -xO -XK -xO +dD +hI +dD Wb Wb Wb @@ -18560,6 +18677,7 @@ jM jM jM jM +dd jM jM jM @@ -18589,9 +18707,8 @@ jM jM jM jM -jM -uR -CS +bV +bx "} (65,1,1) = {" aE @@ -18626,7 +18743,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -18690,7 +18807,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -18754,7 +18871,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -18818,7 +18935,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -18884,7 +19001,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -18948,7 +19065,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -19012,7 +19129,7 @@ TO TO TO TO -TO +Wb TO Cz La @@ -19076,7 +19193,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -19142,7 +19259,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -19206,7 +19323,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -19270,7 +19387,7 @@ Sr WJ WJ WJ -La +dD WJ La GK @@ -19334,7 +19451,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -19400,7 +19517,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -19464,7 +19581,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -19528,7 +19645,7 @@ WJ WJ Cz vp -TO +Wb TO TO TO @@ -19592,7 +19709,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -19658,7 +19775,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -19722,7 +19839,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -19786,7 +19903,7 @@ qJ WJ TO TO -TO +Wb TO TO TO @@ -19850,7 +19967,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -19916,7 +20033,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -19980,7 +20097,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -20044,7 +20161,7 @@ Cz Sr TO TO -TO +Wb TO TO TO @@ -20108,7 +20225,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -20174,7 +20291,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -20238,7 +20355,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -20302,7 +20419,7 @@ WJ TO TO TO -TO +Wb TO TO TO @@ -20366,7 +20483,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -20432,7 +20549,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -20496,7 +20613,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -20560,7 +20677,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -20624,7 +20741,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -20690,7 +20807,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -20754,7 +20871,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -20818,7 +20935,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -20882,7 +20999,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -20948,7 +21065,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -21012,7 +21129,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -21076,7 +21193,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -21140,7 +21257,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -21206,7 +21323,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -21270,7 +21387,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -21334,7 +21451,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -21398,7 +21515,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -21464,7 +21581,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -21528,7 +21645,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -21592,7 +21709,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -21656,6 +21773,8 @@ WO WO WO WO +jM +WO WO WO WO @@ -21684,8 +21803,6 @@ WO WO WO WO -hR -uW bj aE "} @@ -21722,7 +21839,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -21786,7 +21903,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -21850,7 +21967,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -21914,6 +22031,16 @@ WO WO WO WO +jM +WO +WO +WO +WO +WO +WO +WO +WO +WO WO WO WO @@ -21934,16 +22061,6 @@ WO WO WO WO -DM -uW -uW -uW -uW -RF -fy -uW -OQ -BU bj aE "} @@ -21980,7 +22097,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -22044,7 +22161,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -22108,7 +22225,7 @@ TO TO TO TO -TO +Wb WO WO WO @@ -22172,6 +22289,16 @@ WO WO WO WO +jM +WO +WO +WO +WO +WO +WO +WO +WO +WO WO WO WO @@ -22192,16 +22319,6 @@ WO WO WO WO -ti -GN -GN -GN -GN -GN -GN -GN -em -GN bj aE "} @@ -22238,7 +22355,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -22302,7 +22419,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -22366,7 +22483,7 @@ TO TO TO TO -TO +Wb WO WO WO @@ -22430,6 +22547,16 @@ WO WO WO WO +jM +WO +WO +WO +WO +WO +WO +WO +WO +WO WO WO WO @@ -22450,16 +22577,6 @@ WO WO WO WO -ti -GN -BY -uq -vS -GN -Wi -eP -Oj -GN bj aE "} @@ -22496,7 +22613,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -22560,7 +22677,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -22624,7 +22741,7 @@ TO TO TO TO -WO +jM WO WO WO @@ -22688,6 +22805,16 @@ WO WO WO WO +jM +WO +WO +WO +WO +WO +WO +WO +WO +WO WO WO WO @@ -22708,16 +22835,6 @@ WO WO WO WO -ti -GN -Rl -Mb -mG -Yu -LU -Wv -LU -GN bj aE "} @@ -22754,7 +22871,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -22818,7 +22935,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -22882,7 +22999,7 @@ TO TO TO TO -WO +jM WO WO WO @@ -22946,6 +23063,16 @@ WO WO WO WO +jM +WO +WO +WO +WO +WO +WO +WO +WO +WO WO WO WO @@ -22966,16 +23093,6 @@ WO WO WO WO -ti -GN -GN -GN -GN -GN -LU -Wv -LU -GN bj aE "} @@ -23012,7 +23129,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -23076,7 +23193,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -23140,7 +23257,7 @@ TO TO TO TO -TO +Wb WO WO WO @@ -23172,7 +23289,7 @@ WO WO WO La -xO +dD WQ La GK @@ -23204,6 +23321,16 @@ WO WO WO WO +jM +WO +WO +WO +WO +WO +WO +WO +WO +WO WO WO WO @@ -23224,16 +23351,6 @@ WO WO WO WO -Bo -GN -BG -LU -Sd -yJ -KF -Wv -ck -GN bj aE "} @@ -23270,7 +23387,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -23334,7 +23451,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -23398,7 +23515,7 @@ TO TO TO TO -jA +eb WO WO WO @@ -23430,7 +23547,7 @@ WO WO WO WO -xO +dD La La GK @@ -23462,6 +23579,16 @@ WO WO WO WO +jM +WO +WO +WO +WO +WO +WO +WO +WO +WO WO WO WO @@ -23482,16 +23609,6 @@ WO WO WO WO -ti -GN -sk -LU -Sd -kg -KF -Wv -LU -GN bj aE "} @@ -23528,7 +23645,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -23592,7 +23709,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -23656,7 +23773,7 @@ TO TO TO TO -jA +eb jA tT jA @@ -23720,6 +23837,16 @@ WO WO WO WO +jM +WO +WO +WO +WO +WO +WO +WO +WO +WO WO WO WO @@ -23740,16 +23867,6 @@ WO WO WO WO -ti -GN -kJ -kJ -LU -HI -LU -Wv -LU -GN bj aE "} @@ -23786,7 +23903,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -23850,7 +23967,7 @@ TO TO TO TO -TO +Wb TO Cz Cz @@ -23914,7 +24031,7 @@ TO TO TO jA -jA +eb od jA TO @@ -23978,6 +24095,16 @@ WO WO WO WO +jM +WO +WO +WO +WO +WO +WO +WO +WO +WO WO WO WO @@ -23998,16 +24125,6 @@ WO WO WO WO -ti -GN -XJ -wb -qK -lP -Ii -Se -LU -GN bj aE "} @@ -24044,7 +24161,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -24108,7 +24225,7 @@ WJ WJ WJ WJ -WJ +sc WJ WJ WJ @@ -24172,7 +24289,7 @@ TO TO jA jA -jA +eb jA TO TO @@ -24236,6 +24353,7 @@ WO WO WO WO +jM WO WO WO @@ -24256,17 +24374,16 @@ WO WO WO WO -XU -mP -mP -mP -mP -mP -mP -CZ -Ru -CT -CT +WO +WO +WO +WO +WO +WO +WO +WO +WO +bj aE "} (87,1,1) = {" @@ -24302,7 +24419,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -24366,7 +24483,7 @@ Sr Sr WJ WJ -WJ +sc mt WJ WJ @@ -24430,7 +24547,7 @@ TO TO jA jA -jA +eb TO TO TO @@ -24494,6 +24611,7 @@ WO WO WO WO +jM WO WO WO @@ -24514,17 +24632,16 @@ WO WO WO WO -ti -Nq -JU -Ae -WH -xv -Mw -kB -hs -ie -CT +WO +WO +WO +WO +WO +WO +WO +WO +WO +bj aE "} (88,1,1) = {" @@ -24560,7 +24677,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -24624,7 +24741,7 @@ WJ WJ WJ WJ -Sr +vv Sr WJ WJ @@ -24752,6 +24869,7 @@ WO WO WO WO +jM WO WO WO @@ -24772,17 +24890,16 @@ WO WO WO WO -ti -mP -jb -uJ -VD -hu -mP -Mr -lZ -in -CT +WO +WO +WO +WO +WO +WO +WO +WO +WO +bj aE "} (89,1,1) = {" @@ -24818,7 +24935,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -24882,7 +24999,7 @@ WJ Cz Cz Cz -Sr +vv Cz Th WJ @@ -24946,7 +25063,7 @@ TO jA jA Et -TO +Wb TO TO TO @@ -25010,6 +25127,7 @@ WO WO WO WO +jM WO WO WO @@ -25030,17 +25148,16 @@ WO WO WO WO -Bo -mP -nj -Zr -uJ -ka -mP -Yv -XX -Ym -CT +WO +WO +WO +WO +WO +WO +WO +WO +WO +bj aE "} (90,1,1) = {" @@ -25076,7 +25193,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -25108,7 +25225,7 @@ WO WO La Ol -xO +dD La La La @@ -25140,7 +25257,7 @@ TO TO TO Rh -Rh +iu Cz Cz Cz @@ -25204,7 +25321,7 @@ TO jA jA TO -TO +Wb TO TO TO @@ -25268,6 +25385,7 @@ WO WO WO WO +jM WO WO WO @@ -25288,17 +25406,16 @@ WO WO WO WO -ti -mP -Gg -uJ -uJ -Ai -mP -cC -XX -TC -CT +WO +WO +WO +WO +WO +WO +WO +WO +WO +bj aE "} (91,1,1) = {" @@ -25334,7 +25451,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -25366,7 +25483,7 @@ La La La La -xO +dD La La cg @@ -25398,7 +25515,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -25430,7 +25547,7 @@ EF EF EF EF -vv +wO TO TO TO @@ -25462,7 +25579,7 @@ TO jA TO TO -TO +Wb TO TO TO @@ -25526,6 +25643,7 @@ WO WO WO WO +jM WO WO WO @@ -25546,17 +25664,16 @@ WO WO WO WO -ti -Nq -uC -Kq -uJ -uJ -Ec -Rb -XX -ph -CT +WO +WO +WO +WO +WO +WO +WO +WO +WO +bj aE "} (92,1,1) = {" @@ -25592,7 +25709,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -25624,7 +25741,7 @@ La La La La -xO +dD TG La TO @@ -25656,7 +25773,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -25688,7 +25805,7 @@ EF EF EF EF -vv +wO TO TO TO @@ -25720,7 +25837,7 @@ TO jA Hw TO -TO +Wb TO TO TO @@ -25784,6 +25901,7 @@ WO WO WO WO +jM WO WO WO @@ -25804,17 +25922,16 @@ WO WO WO WO -ti -mP -mP -mP -mP -mP -mP -CT -cn -CT -CT +WO +WO +WO +WO +WO +WO +WO +WO +WO +bj aE "} (93,1,1) = {" @@ -25850,7 +25967,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -25914,7 +26031,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -25946,7 +26063,7 @@ EF EF EF EF -vv +wO EF TO TO @@ -25978,7 +26095,7 @@ TO jA TO TO -TO +Wb TO TO TO @@ -26042,6 +26159,16 @@ WO WO WO WO +jM +WO +WO +WO +WO +WO +WO +WO +WO +WO WO WO WO @@ -26062,16 +26189,6 @@ WO WO WO WO -tI -cF -cF -MY -MY -tm -ST -DA -jc -jc bj aE "} @@ -26108,7 +26225,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -26172,7 +26289,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -26204,7 +26321,7 @@ TO TO TO EF -vv +wO EF TO TO @@ -26236,7 +26353,7 @@ jA jA TO TO -TO +Wb TO TO TO @@ -26300,6 +26417,13 @@ WO WO WO WO +jM +WO +WO +WO +WO +WO +WO WO WO WO @@ -26323,13 +26447,6 @@ WO WO WO WO -xy -MY -MY -MY -jc -jc -jc bj aE "} @@ -26366,7 +26483,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -26430,7 +26547,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -26462,7 +26579,7 @@ TO TO TO EF -vv +wO EF EF TO @@ -26494,168 +26611,6 @@ jA jA TO TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -xy -MY -MY -MY -jc -jc -jc -bj -aE -"} -(96,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -TG -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO Wb TO TO @@ -26676,104 +26631,8 @@ TO TO TO TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Rh -Cz -Cz -vp -ih -Sr WO WO -jh -Th -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -vv -EF -EF -EF -TO -TO -TO -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -jA -jA -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -xV -WO WO WO WO @@ -26816,6 +26675,13 @@ WO WO WO WO +jM +WO +WO +WO +WO +WO +WO WO WO WO @@ -26839,16 +26705,267 @@ WO WO WO WO -xy -MY -MY -MY -jc -jc -jc bj aE "} +(96,1,1) = {" +bx +bV +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +dd +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +dD +pl +dD +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +rn +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +rn +Wb +Wb +Wb +Wb +Wb +Wb +Wb +iu +tb +tb +yf +ih +vv +jM +jM +jh +CO +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Vp +wO +wO +wO +Wb +Wb +Wb +wO +wO +wO +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +eb +eb +eb +Wb +Wb +rn +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +LK +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +dd +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +dd +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +bV +bx +"} (97,1,1) = {" aE bj @@ -26882,7 +26999,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -26946,6 +27063,7 @@ TO TO TO TO +Wb TO TO TO @@ -26977,8 +27095,7 @@ TO TO TO TO -TO -vv +wO EF EF EF @@ -27010,7 +27127,7 @@ jA le TO TO -TO +Wb TO TO TO @@ -27042,7 +27159,7 @@ WO WO WO WO -xO +dD La WO WO @@ -27074,6 +27191,13 @@ WO WO WO WO +jM +WO +WO +WO +WO +WO +WO WO WO WO @@ -27097,13 +27221,6 @@ WO WO WO WO -RO -Ct -Ct -Ct -jc -jc -jc bj aE "} @@ -27140,7 +27257,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -27204,7 +27321,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -27268,7 +27385,7 @@ jA Et TO TO -TO +Wb TO TO TO @@ -27300,7 +27417,7 @@ WO WO WO WO -VE +LK La TO TO @@ -27332,6 +27449,9 @@ WO WO WO WO +jM +WO +WO WO WO WO @@ -27359,9 +27479,6 @@ WO WO WO WO -kO -jc -jc bj aE "} @@ -27398,7 +27515,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -27462,7 +27579,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -27526,7 +27643,7 @@ le TO TO TO -TO +Wb TO TO TO @@ -27558,7 +27675,7 @@ La Hb Hb La -VE +LK La xY TO @@ -27590,6 +27707,9 @@ WO WO WO WO +jM +WO +WO WO WO WO @@ -27617,9 +27737,6 @@ WO WO WO WO -kO -jc -jc bj aE "} @@ -27656,7 +27773,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -27720,7 +27837,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -27784,7 +27901,7 @@ ou TO TO TO -TO +Wb TO TO TO @@ -27816,7 +27933,7 @@ TH xV Ow Vi -rn +Hr hB xY TO @@ -27848,6 +27965,9 @@ WO WO WO WO +jM +WO +WO WO WO WO @@ -27875,9 +27995,6 @@ WO WO WO WO -kO -bY -GS bj aE "} @@ -27914,7 +28031,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -27978,7 +28095,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -28042,7 +28159,7 @@ le TO IH TO -TO +Wb TO TO TO @@ -28106,6 +28223,9 @@ WO WO WO WO +jM +WO +WO WO WO WO @@ -28133,9 +28253,6 @@ WO WO WO WO -kO -jc -bj bj aE "} @@ -28172,7 +28289,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -28236,7 +28353,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -28300,7 +28417,7 @@ le QJ le Et -Kf +qG WJ TO TO @@ -28364,6 +28481,9 @@ WO WO WO WO +jM +WO +WO WO WO WO @@ -28391,9 +28511,6 @@ WO WO WO WO -kO -jc -bj bj aE "} @@ -28430,7 +28547,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -28494,7 +28611,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -28558,7 +28675,7 @@ le tT jA KS -le +AM TO TO TO @@ -28622,6 +28739,9 @@ WO WO WO WO +jM +WO +WO WO WO WO @@ -28649,9 +28769,6 @@ WO WO WO WO -Nu -jc -bj bj aE "} @@ -28688,7 +28805,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -28752,7 +28869,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -28816,7 +28933,7 @@ jA od jA le -le +AM QJ TO TO @@ -28880,6 +28997,9 @@ WO WO WO WO +jM +WO +WO WO WO WO @@ -28907,9 +29027,6 @@ WO WO WO WO -Nu -jc -bj bj aE "} @@ -28946,7 +29063,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -29010,7 +29127,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -29074,7 +29191,7 @@ Et jA jA xj -BC +XK le vp TO @@ -29138,6 +29255,9 @@ WO WO WO WO +jM +WO +WO WO WO WO @@ -29165,9 +29285,6 @@ WO WO WO WO -Nu -jc -bj bj aE "} @@ -29204,7 +29321,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -29268,7 +29385,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -29332,7 +29449,7 @@ TO mV jA jA -jA +eb xj le TO @@ -29396,6 +29513,9 @@ WO WO WO WO +jM +WO +WO WO WO WO @@ -29423,9 +29543,6 @@ WO WO WO WO -aK -ye -bj bj aE "} @@ -29462,7 +29579,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -29526,7 +29643,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -29590,7 +29707,7 @@ Kf le le KS -tT +io nE IH WJ @@ -29654,6 +29771,9 @@ WO WO WO WO +jM +WO +WO WO WO WO @@ -29681,9 +29801,6 @@ WO WO WO WO -aK -ye -bj bj aE "} @@ -29720,7 +29837,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -29784,7 +29901,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -29848,7 +29965,7 @@ TO vp IH le -QJ +PP le WJ WJ @@ -29912,6 +30029,9 @@ WO WO WO WO +jM +WO +WO WO WO WO @@ -29939,9 +30059,6 @@ WO WO WO WO -cv -bf -bj bj aE "} @@ -29978,7 +30095,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -30042,7 +30159,7 @@ EF EF EF km -EF +wO EF EF TO @@ -30106,7 +30223,7 @@ TO TO TO TO -TO +Wb TO vp TO @@ -30170,6 +30287,7 @@ WO WO WO WO +jM WO WO WO @@ -30200,7 +30318,6 @@ WO WO WO bj -bj aE "} (110,1,1) = {" @@ -30236,7 +30353,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -30300,7 +30417,7 @@ EF EF EF EF -EF +wO EF EF EF @@ -30364,7 +30481,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -30428,6 +30545,7 @@ WO WO WO WO +jM WO WO WO @@ -30458,7 +30576,6 @@ WO WO WO bj -bj aE "} (111,1,1) = {" @@ -30494,7 +30611,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -30558,7 +30675,7 @@ EF EF EF EF -EF +wO EF EF EF @@ -30622,7 +30739,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -30686,6 +30803,7 @@ WO WO WO WO +jM WO WO WO @@ -30716,7 +30834,6 @@ WO WO WO bj -bj aE "} (112,1,1) = {" @@ -30752,7 +30869,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -30816,7 +30933,7 @@ gk EF EF EF -EF +wO EF EF EF @@ -30880,7 +30997,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -30944,6 +31061,7 @@ WO WO WO WO +jM WO WO WO @@ -30974,7 +31092,6 @@ WO WO WO bj -bj aE "} (113,1,1) = {" @@ -31010,7 +31127,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -31074,7 +31191,7 @@ gn WO EF bZ -TO +Wb TO TO TO @@ -31138,7 +31255,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -31202,6 +31319,7 @@ WO WO WO WO +jM WO WO WO @@ -31232,7 +31350,6 @@ WO WO WO bj -bj aE "} (114,1,1) = {" @@ -31268,7 +31385,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -31332,7 +31449,7 @@ WO WO TO TO -TO +Wb TO TO TO @@ -31396,7 +31513,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -31460,7 +31577,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -31526,7 +31643,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -31590,7 +31707,7 @@ WO WO TO TO -TO +Wb TO TO TO @@ -31622,7 +31739,7 @@ TO TO TO rj -pl +sc WJ WJ le @@ -31654,7 +31771,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -31718,7 +31835,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -31784,7 +31901,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -31848,7 +31965,7 @@ WO WO TO TO -TO +Wb TO TO TO @@ -31912,7 +32029,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -31976,7 +32093,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -32042,7 +32159,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -32106,7 +32223,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -32138,7 +32255,7 @@ nY hB ql WJ -rY +VE jA jA EF @@ -32170,7 +32287,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -32234,7 +32351,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -32300,7 +32417,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -32364,7 +32481,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -32428,7 +32545,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -32492,7 +32609,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -32558,7 +32675,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -32622,7 +32739,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -32654,7 +32771,7 @@ od le ny le -sc +VT jA tJ EF @@ -32686,7 +32803,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -32750,7 +32867,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -32816,7 +32933,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -32880,7 +32997,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -32944,7 +33061,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -32955,7 +33072,7 @@ le jA le xY -ih +CS TO TO TO @@ -33008,7 +33125,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -33074,7 +33191,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -33138,7 +33255,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -33202,7 +33319,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -33266,7 +33383,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -33332,7 +33449,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -33396,7 +33513,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -33428,7 +33545,7 @@ EF EF EF EF -vv +wO EF EF EF @@ -33460,7 +33577,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -33524,7 +33641,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -33590,7 +33707,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -33654,7 +33771,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -33686,7 +33803,7 @@ oe EF qF EF -vv +wO EF EF EF @@ -33718,7 +33835,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -33782,7 +33899,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -33848,7 +33965,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -33912,7 +34029,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -33944,7 +34061,7 @@ EF EF EF EF -vv +wO tx EF EF @@ -33976,7 +34093,7 @@ TO TO TO TO -TO +Wb TO WJ LP @@ -34040,7 +34157,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -34106,7 +34223,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -34170,7 +34287,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -34202,7 +34319,7 @@ EF pr EF EF -vv +wO qF oe EF @@ -34234,7 +34351,7 @@ TO TO TO TO -TO +Wb TO vp LT @@ -34298,7 +34415,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -34364,7 +34481,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -34428,7 +34545,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -34492,7 +34609,7 @@ Cz Cz Sr dX -Sr +vv WJ WJ WJ @@ -34556,7 +34673,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -34622,7 +34739,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -34686,7 +34803,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -34750,7 +34867,7 @@ Sr Sr KA WJ -WJ +sc WJ WJ WJ @@ -34814,7 +34931,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -34848,208 +34965,231 @@ bj aE "} (128,1,1) = {" -CS -uR -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -xO bx -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -pl -pl -pl -pl -pl -pl -pl -pl -jq -rn -pl -AM -AM +bV +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +dd +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +dd dD +rY +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +rn +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +sc +sc +sc +sc +sc +sc +sc +sc +jq +Hr +sc +AM +AM +Nv eb eb eb eb -vv -vv -vv -vv -So -oq -vv -tZ -vv -eb wO +wO +wO +wO +So +oq +wO +tZ +wO +eb +XK eb eb zx AM AM -pl -pl -pl -rn -pl -pl -pl -pl -pl -pl -pl -pl +sc +sc +sc Hr -pl -pl -pl -pl -pl -pl -pl -pl -pl -pl -pl -pl -pl -pl -pl +sc +sc +sc +sc +sc +sc +sc +sc +BZ +sc +sc +sc +sc +sc +sc +sc +Km +sc +sc +sc +sc +sc +sc +sc +Hr +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb rn Wb Wb +Lt +tb Wb Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Xw -yf -Wb -Wb -CO -yf -xO +og +tb +dD +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +dd jM jM jM @@ -35079,31 +35219,8 @@ jM jM jM jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -uR -CS +bV +bx "} (129,1,1) = {" aE @@ -35138,7 +35255,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -35170,7 +35287,7 @@ WO WO WO La -bx +rY bw TG TO @@ -35202,7 +35319,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -35266,7 +35383,7 @@ WJ xY WJ WJ -WJ +sc WJ WJ WJ @@ -35330,7 +35447,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -35396,7 +35513,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -35460,7 +35577,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -35492,7 +35609,7 @@ oT mu kn EF -vv +wO kn EF EF @@ -35524,7 +35641,7 @@ WJ WJ WJ WJ -WJ +sc WJ WJ xY @@ -35588,7 +35705,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -35654,7 +35771,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -35718,7 +35835,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -35750,7 +35867,7 @@ EF pO EF EF -sW +WB EF EF EF @@ -35782,7 +35899,7 @@ WJ WJ WJ WJ -xY +Hr WJ WJ WJ @@ -35846,7 +35963,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -35912,7 +36029,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -35976,7 +36093,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -36008,7 +36125,7 @@ nR EF mv EF -vv +wO EF tR EF @@ -36040,7 +36157,7 @@ xY xV Hm xY -WJ +sc WJ WJ WJ @@ -36104,7 +36221,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -36170,7 +36287,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -36234,7 +36351,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -36266,7 +36383,7 @@ EF EF EF EF -vv +wO EF tJ EF @@ -36298,7 +36415,7 @@ WO WO xV xV -xY +Hr TO TO TO @@ -36362,7 +36479,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -36428,7 +36545,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -36492,7 +36609,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -36524,7 +36641,7 @@ EF jA jA jA -vv +wO EF EF EF @@ -36556,7 +36673,7 @@ WO Kr TO TO -TO +Wb TO TO TO @@ -36620,7 +36737,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -36686,7 +36803,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -36750,7 +36867,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -36814,7 +36931,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -36878,7 +36995,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -36944,7 +37061,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -37008,7 +37125,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -37040,7 +37157,7 @@ le qf ra jA -tb +WF jA EF EF @@ -37072,7 +37189,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -37136,7 +37253,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -37202,7 +37319,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -37266,7 +37383,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -37298,7 +37415,7 @@ ou le le dS -tj +Xw le EF EF @@ -37330,7 +37447,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -37362,7 +37479,7 @@ WJ Uv Cz Cz -yf +tb TO TO TO @@ -37394,7 +37511,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -37460,7 +37577,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -37524,7 +37641,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -37588,7 +37705,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -37652,7 +37769,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -37718,7 +37835,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -37782,7 +37899,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -37814,7 +37931,7 @@ le xY xY xY -pl +sc WJ le EF @@ -37846,7 +37963,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -37910,7 +38027,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -37976,7 +38093,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -38040,7 +38157,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -38072,7 +38189,7 @@ le WJ hB nY -rn +Hr WJ le EF @@ -38104,7 +38221,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -38168,7 +38285,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -38234,7 +38351,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -38298,7 +38415,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -38362,7 +38479,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -38426,7 +38543,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -38492,7 +38609,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -38524,8 +38641,7 @@ WO WO WO La -pl -TO +sc TO TO TO @@ -38557,6 +38673,7 @@ TO TO TO TO +Wb TO TO TO @@ -38620,7 +38737,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -38684,7 +38801,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -38750,7 +38867,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -38782,8 +38899,7 @@ WO WO WO La -xO -TO +dD TO TO TO @@ -38815,6 +38931,7 @@ TO TO TO TO +Wb TO TO TO @@ -38878,7 +38995,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -38942,7 +39059,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -39008,7 +39125,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -39040,8 +39157,7 @@ WO WO WO La -dd -TO +sW TO TO TO @@ -39073,6 +39189,7 @@ TO TO TO TO +Wb TO TO TO @@ -39136,7 +39253,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -39200,7 +39317,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -39266,7 +39383,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -39298,7 +39415,7 @@ WO WO WO La -xO +dD Cz TO TO @@ -39330,7 +39447,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -39394,7 +39511,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -39458,7 +39575,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -39524,6 +39641,7 @@ WO WO WO WO +jM WO WO WO @@ -39555,8 +39673,7 @@ WO WO WO WO -WO -xO +dD La La TO @@ -39588,7 +39705,7 @@ TO TO TO TO -TO +Wb TO TO WJ @@ -39652,7 +39769,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -39716,7 +39833,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -39782,7 +39899,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -39846,7 +39963,7 @@ TO TO TO TO -TO +Wb TO TO Cz @@ -39910,7 +40027,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -39974,7 +40091,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -40040,7 +40157,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -40104,7 +40221,7 @@ TO TO TO TO -TO +Wb TO TO Cz @@ -40168,7 +40285,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -40232,6 +40349,7 @@ WO WO WO WO +jM WO WO WO @@ -40259,9 +40377,8 @@ WO WO WO WO -WO -WO -WO +hR +uW bj aE "} @@ -40298,7 +40415,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -40362,7 +40479,7 @@ TO TO TO TO -TO +Wb TO TO Cz @@ -40426,7 +40543,7 @@ WJ hz WJ TO -TO +Wb TO TO TO @@ -40490,6 +40607,7 @@ WO WO WO WO +jM WO WO WO @@ -40509,17 +40627,16 @@ WO WO WO WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO +DM +uW +uW +uW +uW +RF +fy +uW +OQ +BU bj aE "} @@ -40556,7 +40673,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -40620,7 +40737,7 @@ TO TO TO Rh -Cz +tb Cz Te WJ @@ -40684,7 +40801,7 @@ WO WO WO WO -WO +jM WO WO Sr @@ -40748,6 +40865,7 @@ WO WO WO WO +jM WO WO WO @@ -40767,17 +40885,16 @@ WO WO WO WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO +ti +GN +GN +GN +GN +GN +GN +GN +em +GN bj aE "} @@ -40814,7 +40931,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -40878,7 +40995,7 @@ Rh Rh Rh Rh -Rh +iu Cz Cz WJ @@ -40942,7 +41059,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -41006,6 +41123,7 @@ WO WO WO WO +jM WO WO WO @@ -41025,17 +41143,16 @@ WO WO WO WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO +ti +GN +BY +uq +vS +GN +Wi +eP +Oj +GN bj aE "} @@ -41072,7 +41189,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -41136,7 +41253,7 @@ Rh Rh Rh Rn -Rh +iu RZ Cz Cz @@ -41200,7 +41317,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -41264,6 +41381,7 @@ WO WO WO WO +jM WO WO WO @@ -41283,17 +41401,16 @@ WO WO WO WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO +ti +GN +Rl +Mb +mG +Yu +LU +Wv +LU +GN bj aE "} @@ -41330,6 +41447,7 @@ WO WO WO WO +jM WO WO WO @@ -41361,8 +41479,7 @@ WO WO WO WO -WO -xO +dD La Sr TO @@ -41394,7 +41511,7 @@ Rh Rh Rh Cz -Rh +iu Rh Cz Cz @@ -41458,7 +41575,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -41490,7 +41607,7 @@ TO TO TO TO -VT +qT WJ La WO @@ -41522,6 +41639,7 @@ WO WO WO WO +jM WO WO WO @@ -41541,17 +41659,16 @@ WO WO WO WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO +ti +GN +GN +GN +GN +GN +LU +Wv +LU +GN bj aE "} @@ -41588,6 +41705,7 @@ WO WO WO WO +jM WO WO WO @@ -41619,8 +41737,7 @@ WO WO WO WO -WO -xO +dD WJ TO TO @@ -41652,7 +41769,7 @@ Rh Rh Rh Rh -Rh +iu HP Cz WJ @@ -41716,7 +41833,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -41780,6 +41897,7 @@ WO WO WO WO +jM WO WO WO @@ -41799,17 +41917,16 @@ WO WO WO WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO +Bo +GN +BG +LU +Sd +yJ +KF +Wv +ck +GN bj aE "} @@ -41846,7 +41963,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -41878,7 +41995,7 @@ WO WO WO La -dd +sW TO TO TO @@ -41910,7 +42027,7 @@ Rh Rh Rh Rh -Rh +iu TO Cz WJ @@ -41974,7 +42091,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -42038,6 +42155,7 @@ WO WO WO WO +jM WO WO WO @@ -42057,17 +42175,16 @@ WO WO WO WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO +ti +GN +sk +LU +Sd +kg +KF +Wv +LU +GN bj aE "} @@ -42104,7 +42221,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -42168,7 +42285,7 @@ Rh Rh Rh TO -TO +Wb TO TO WJ @@ -42232,7 +42349,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -42296,6 +42413,7 @@ WO WO WO WO +jM WO WO WO @@ -42315,17 +42433,16 @@ WO WO WO WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO +ti +GN +kJ +kJ +LU +HI +LU +Wv +LU +GN bj aE "} @@ -42362,7 +42479,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -42426,7 +42543,7 @@ pa TO TO TO -TO +Wb TO hz WJ @@ -42490,7 +42607,7 @@ TO TO TO TO -WO +jM WO WO WO @@ -42554,6 +42671,7 @@ WO WO WO WO +jM WO WO WO @@ -42573,17 +42691,16 @@ WO WO WO WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO +ti +GN +XJ +wb +qK +lP +Ii +Se +LU +GN bj aE "} @@ -42620,7 +42737,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -42684,7 +42801,7 @@ TO TO TO TO -TO +Wb TO WJ WJ @@ -42748,7 +42865,7 @@ TO TO TO TO -TO +Wb xV xV xV @@ -42812,6 +42929,7 @@ WO WO WO WO +jM WO WO WO @@ -42831,18 +42949,17 @@ WO WO WO WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj +XU +mP +mP +mP +mP +mP +mP +CZ +Ru +CT +CT aE "} (159,1,1) = {" @@ -42878,7 +42995,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -42942,7 +43059,7 @@ TO TO TO TO -TO +Wb WJ WJ WJ @@ -43006,7 +43123,7 @@ TO TO TO TO -TO +Wb TO xY xV @@ -43070,6 +43187,7 @@ WO WO WO WO +jM WO WO WO @@ -43089,276 +43207,275 @@ WO WO WO WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj +ti +Nq +JU +Ae +WH +xv +Mw +kB +hs +ie +CT aE "} (160,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO +bx +bV +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +dd +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Rh -Rh -Rh -Rh -Cz -HP -TO -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -TO -TO -TO -TO -TO -TO Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -xY -xY -xl -xY -jC -TO -TO -TO -TO -TO -TO -TO -TO -TO -xY -xV +Wb +Wb +rn +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +iu +iu +iu +iu +tb +uR +Wb +Wb +Wb +Wb +Wb +Wb +Wb +rn +sc +sc +sc +sc +sc +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +wO +wO +wO +Wb +Wb +Wb +Wb +Wb +Wb +rn +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Hr +Hr +Dh +Hr +ef +Wb +Wb +Wb +Wb +Wb +Wb +Wb +rn +Wb +Hr +LK MM -PV -WO -WO -WO -WO -WO -WO -WO -bw -DY -xY -xY -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO +hI +jM +jM +jM +jM +jM +jM +jM +sW +ZQ +Hr +Hr Wb -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Wb +rn +Wb +Wb +Wb +Wb +Wb +Wb +Wb +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +dd +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +zN +mP +jb +uJ +VD +hu +mP +Mr +lZ +in +CT aE "} (161,1,1) = {" @@ -43394,7 +43511,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -43458,7 +43575,7 @@ TO TO TO TO -TO +Wb WJ WJ WJ @@ -43522,7 +43639,7 @@ TO TO TO TO -TO +Wb TO xY xY @@ -43586,6 +43703,7 @@ WO WO WO WO +jM WO WO WO @@ -43605,18 +43723,17 @@ WO WO WO WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj +Bo +mP +nj +Zr +uJ +ka +mP +Yv +XX +Ym +CT aE "} (162,1,1) = {" @@ -43652,7 +43769,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -43716,7 +43833,7 @@ TO TO TO WJ -WJ +sc WJ WJ WJ @@ -43780,7 +43897,7 @@ TO TO TO TO -TO +Wb TO xY xV @@ -43844,6 +43961,7 @@ WO WO WO WO +jM WO WO WO @@ -43863,18 +43981,17 @@ WO WO WO WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj +ti +mP +Gg +uJ +uJ +Ai +mP +cC +XX +TC +CT aE "} (163,1,1) = {" @@ -43910,7 +44027,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -43974,7 +44091,7 @@ WJ WJ WJ WJ -WJ +sc WJ WJ WJ @@ -44038,7 +44155,7 @@ TO TO TO TO -TO +Wb TO xY Me @@ -44102,6 +44219,7 @@ WO WO WO WO +jM WO WO WO @@ -44121,18 +44239,17 @@ WO WO WO WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj +ti +Nq +uC +Kq +uJ +uJ +Ec +Rb +XX +ph +CT aE "} (164,1,1) = {" @@ -44168,7 +44285,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -44232,7 +44349,7 @@ Sr Sr Sr WJ -WJ +sc WJ WJ WJ @@ -44296,7 +44413,7 @@ TO TO TO TO -TO +Wb xY xY La @@ -44360,6 +44477,7 @@ WO WO WO WO +jM WO WO WO @@ -44379,18 +44497,17 @@ WO WO WO WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj +ti +mP +mP +mP +mP +mP +mP +CT +cn +CT +CT aE "} (165,1,1) = {" @@ -44426,7 +44543,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -44490,7 +44607,7 @@ WJ WJ WJ WJ -hz +xO TO TO TO @@ -44554,7 +44671,7 @@ TO TO TO TO -xY +Hr xY xV WO @@ -44586,7 +44703,7 @@ Cz Cz Sr WJ -xO +dD La WO WO @@ -44618,6 +44735,7 @@ WO WO WO WO +jM WO WO WO @@ -44637,17 +44755,16 @@ WO WO WO WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO +tI +cF +cF +MY +MY +tm +ST +DA +jc +jc bj aE "} @@ -44684,7 +44801,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -44748,7 +44865,7 @@ WJ WJ TO TO -TO +Wb TO TO TO @@ -44812,7 +44929,7 @@ TO TO TO TO -xY +Hr xY yn WO @@ -44844,7 +44961,7 @@ TO TO TO TO -pl +sc WJ Sr La @@ -44876,6 +44993,7 @@ WO WO WO WO +jM WO WO WO @@ -44898,14 +45016,13 @@ WO WO WO WO -WO -WO -WO -WO -WO -WO -WO -WO +xy +MY +MY +MY +jc +jc +jc bj aE "} @@ -44942,7 +45059,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -45006,7 +45123,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -45070,7 +45187,7 @@ TO TO TO WJ -WJ +sc xY xV Hm @@ -45134,6 +45251,7 @@ WO WO WO WO +jM WO WO WO @@ -45156,14 +45274,13 @@ WO WO WO WO -WO -WO -WO -WO -WO -WO -WO -WO +xy +MY +MY +MY +jc +jc +jc bj aE "} @@ -45200,7 +45317,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -45264,7 +45381,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -45328,7 +45445,7 @@ WJ WJ hy WJ -xY +Hr xY xY MB @@ -45392,6 +45509,7 @@ WO WO WO WO +jM WO WO WO @@ -45414,14 +45532,13 @@ WO WO WO WO -WO -WO -WO -WO -WO -WO -WO -WO +xy +MY +MY +MY +jc +jc +jc bj aE "} @@ -45458,7 +45575,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -45522,7 +45639,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -45586,7 +45703,7 @@ Is le WJ le -rj +oF xY jA xY @@ -45650,6 +45767,7 @@ WO WO WO WO +jM WO WO WO @@ -45672,14 +45790,13 @@ WO WO WO WO -WO -WO -WO -WO -WO -WO -WO -WO +RO +Ct +Ct +Ct +jc +jc +jc bj aE "} @@ -45716,7 +45833,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -45780,7 +45897,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -45844,7 +45961,7 @@ jA jA Kv le -le +AM le LB xV @@ -45908,6 +46025,7 @@ WO WO WO WO +jM WO WO WO @@ -45934,10 +46052,9 @@ WO WO WO WO -WO -WO -WO -WO +kO +jc +jc bj aE "} @@ -45974,7 +46091,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -46038,7 +46155,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -46102,7 +46219,7 @@ jA jA Hw le -qn +vy xY js xY @@ -46166,6 +46283,7 @@ WO WO WO WO +jM WO WO WO @@ -46192,10 +46310,9 @@ WO WO WO WO -WO -WO -WO -WO +kO +jc +jc bj aE "} @@ -46232,7 +46349,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -46296,7 +46413,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -46360,7 +46477,7 @@ LC le le xY -le +AM xY WJ xY @@ -46424,6 +46541,7 @@ WO WO WO WO +jM WO WO WO @@ -46450,10 +46568,9 @@ WO WO WO WO -WO -WO -WO -WO +kO +bY +GS bj aE "} @@ -46490,7 +46607,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -46554,7 +46671,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -46618,7 +46735,7 @@ le le WJ TO -TO +Wb TO TO TO @@ -46682,6 +46799,7 @@ WO WO WO WO +jM WO WO WO @@ -46708,10 +46826,9 @@ WO WO WO WO -WO -WO -WO -WO +kO +jc +bj bj aE "} @@ -46748,7 +46865,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -46812,7 +46929,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -46876,6 +46993,7 @@ TO TO TO TO +Wb TO TO TO @@ -46907,8 +47025,7 @@ TO TO TO TO -TO -yf +tb La WO WO @@ -46940,6 +47057,7 @@ WO WO WO WO +jM WO WO WO @@ -46966,10 +47084,9 @@ WO WO WO WO -WO -WO -WO -WO +kO +jc +bj bj aE "} @@ -47006,7 +47123,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -47070,7 +47187,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -47134,6 +47251,7 @@ TO TO TO TO +Wb TO TO TO @@ -47165,12 +47283,7 @@ TO TO TO TO -TO -pl -WO -WO -WO -WO +sc WO WO WO @@ -47202,6 +47315,7 @@ WO WO WO WO +jM WO WO WO @@ -47228,6 +47342,9 @@ WO WO WO WO +Nu +jc +bj bj aE "} @@ -47264,7 +47381,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -47328,7 +47445,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -47392,6 +47509,7 @@ TO TO TO TO +Wb TO TO TO @@ -47423,12 +47541,7 @@ TO TO TO TO -TO -xO -WO -WO -WO -WO +dD WO WO WO @@ -47460,6 +47573,7 @@ WO WO WO WO +jM WO WO WO @@ -47486,6 +47600,9 @@ WO WO WO WO +Nu +jc +bj bj aE "} @@ -47522,7 +47639,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -47586,7 +47703,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -47650,6 +47767,7 @@ TO TO TO TO +Wb TO TO TO @@ -47681,12 +47799,7 @@ TO TO TO TO -TO -WB -WO -WO -WO -WO +vv WO WO WO @@ -47718,6 +47831,7 @@ WO WO WO WO +jM WO WO WO @@ -47744,6 +47858,9 @@ WO WO WO WO +Nu +jc +bj bj aE "} @@ -47780,7 +47897,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -47844,7 +47961,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -47908,6 +48025,7 @@ TO TO TO TO +Wb TO TO TO @@ -47939,12 +48057,7 @@ TO TO TO TO -TO -WF -WO -WO -WO -WO +VJ WO WO WO @@ -47976,6 +48089,7 @@ WO WO WO WO +jM WO WO WO @@ -48002,6 +48116,9 @@ WO WO WO WO +aK +ye +bj bj aE "} @@ -48038,7 +48155,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -48102,7 +48219,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -48166,6 +48283,7 @@ TO TO TO TO +Wb TO TO TO @@ -48197,12 +48315,7 @@ TO TO TO TO -TO -pl -WO -WO -WO -WO +sc WO WO WO @@ -48234,6 +48347,7 @@ WO WO WO WO +jM WO WO WO @@ -48260,6 +48374,9 @@ WO WO WO WO +aK +ye +bj bj aE "} @@ -48296,7 +48413,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -48360,7 +48477,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -48424,6 +48541,7 @@ TO TO TO TO +Wb TO TO TO @@ -48455,8 +48573,7 @@ TO TO TO TO -TO -yf +tb Cz WO WO @@ -48488,6 +48605,7 @@ WO WO WO WO +jM WO WO WO @@ -48514,10 +48632,9 @@ WO WO WO WO -WO -WO -WO -WO +cv +bf +bj bj aE "} @@ -48554,7 +48671,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -48618,7 +48735,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -48682,7 +48799,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -48746,6 +48863,7 @@ WO WO WO WO +jM WO WO WO @@ -48774,8 +48892,7 @@ WO WO WO WO -WO -WO +bj bj aE "} @@ -48812,7 +48929,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -48876,7 +48993,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -48940,7 +49057,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -49004,6 +49121,7 @@ WO WO WO WO +jM WO WO WO @@ -49032,8 +49150,7 @@ WO WO WO WO -WO -WO +bj bj aE "} @@ -49070,7 +49187,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -49134,7 +49251,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -49198,7 +49315,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -49262,6 +49379,7 @@ WO WO WO WO +jM WO WO WO @@ -49290,8 +49408,7 @@ WO WO WO WO -WO -WO +bj bj aE "} @@ -49328,7 +49445,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -49392,7 +49509,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -49456,7 +49573,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -49520,6 +49637,7 @@ WO WO WO WO +jM WO WO WO @@ -49548,8 +49666,7 @@ WO WO WO WO -WO -WO +bj bj aE "} @@ -49586,7 +49703,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -49650,7 +49767,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -49714,7 +49831,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -49778,6 +49895,7 @@ WO WO WO WO +jM WO WO WO @@ -49806,8 +49924,7 @@ WO WO WO WO -WO -WO +bj bj aE "} @@ -49844,7 +49961,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -49908,7 +50025,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -49972,7 +50089,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -50036,7 +50153,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -50102,7 +50219,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -50166,7 +50283,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -50230,7 +50347,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -50294,7 +50411,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -50360,6 +50477,7 @@ WO WO WO WO +jM WO WO WO @@ -50391,8 +50509,7 @@ WO WO WO WO -WO -xO +dD La Sr TO @@ -50424,7 +50541,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -50488,7 +50605,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -50552,7 +50669,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -50618,6 +50735,7 @@ WO WO WO WO +jM WO WO WO @@ -50649,8 +50767,7 @@ WO WO WO WO -WO -xO +dD WJ TO TO @@ -50682,7 +50799,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -50746,7 +50863,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -50810,7 +50927,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -50876,7 +50993,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -50908,7 +51025,7 @@ WO WO La La -xO +dD TO TO TO @@ -50940,7 +51057,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -51004,7 +51121,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -51068,7 +51185,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -51134,7 +51251,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -51166,7 +51283,7 @@ La La La bw -yf +tb TO TO TO @@ -51198,7 +51315,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -51262,7 +51379,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -51326,7 +51443,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -51360,8 +51477,8 @@ bj aE "} (192,1,1) = {" -CS -uR +bx +bV jM jM jM @@ -51392,6 +51509,7 @@ jM jM jM jM +dd jM jM jM @@ -51420,13 +51538,11 @@ jM jM jM jM -jM -xO -xO -xO -yf -yf -Wb +dD +dD +dD +tj +tb Wb Wb Wb @@ -51437,11 +51553,11 @@ Wb Wb Wb Wb -yf -yf -yf -pl Wb +tb +tb +tb +sc Wb Wb Wb @@ -51457,6 +51573,7 @@ Wb Wb Wb Wb +rn Wb Wb Wb @@ -51488,6 +51605,7 @@ jM Wb Wb Wb +rn Wb Wb Wb @@ -51519,6 +51637,7 @@ Wb Wb Wb Wb +rn Wb Wb Wb @@ -51542,10 +51661,6 @@ Wb Wb Wb Wb -Wb -Wb -jM -jM jM jM jM @@ -51554,6 +51669,7 @@ jM jM jM jM +dd jM jM jM @@ -51585,6 +51701,7 @@ jM jM jM jM +dd jM jM jM @@ -51614,8 +51731,8 @@ jM jM jM jM -uR -CS +bV +bx "} (193,1,1) = {" aE @@ -51650,6 +51767,7 @@ WO WO WO WO +jM WO WO WO @@ -51681,8 +51799,7 @@ WO WO WO WO -WO -xO +dD La La La @@ -51714,7 +51831,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -51778,7 +51895,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -51842,7 +51959,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -51908,7 +52025,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -51972,7 +52089,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -52036,7 +52153,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -52100,7 +52217,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -52166,7 +52283,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -52230,7 +52347,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -52294,7 +52411,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -52358,7 +52475,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -52424,7 +52541,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -52488,7 +52605,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -52552,7 +52669,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -52616,7 +52733,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -52682,7 +52799,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -52746,7 +52863,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -52810,7 +52927,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -52874,7 +52991,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -52940,7 +53057,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -53004,7 +53121,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -53068,7 +53185,7 @@ TO TO WO WO -WO +jM WO WO WO @@ -53132,7 +53249,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -53198,7 +53315,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -53262,7 +53379,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -53326,7 +53443,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -53390,7 +53507,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -53456,7 +53573,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -53520,7 +53637,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -53584,7 +53701,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -53648,7 +53765,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -53714,7 +53831,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -53778,7 +53895,7 @@ TO TO TO TO -TO +Wb TO TO TO @@ -53842,7 +53959,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -53906,7 +54023,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -53972,7 +54089,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -54036,7 +54153,7 @@ TO TO TO TO -WO +jM WO TO TO @@ -54100,7 +54217,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -54164,7 +54281,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -54230,7 +54347,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -54294,7 +54411,7 @@ WO WO WO WO -WO +jM WO WO TO @@ -54358,7 +54475,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -54422,7 +54539,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -54488,7 +54605,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -54552,7 +54669,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -54616,7 +54733,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -54680,7 +54797,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -54746,7 +54863,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -54810,7 +54927,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -54874,7 +54991,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -54938,7 +55055,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -55004,7 +55121,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -55068,7 +55185,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -55132,7 +55249,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -55196,7 +55313,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -55262,7 +55379,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -55326,7 +55443,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -55390,7 +55507,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -55454,7 +55571,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -55520,7 +55637,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -55584,7 +55701,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -55648,7 +55765,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -55712,7 +55829,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -55778,7 +55895,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -55842,7 +55959,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -55906,7 +56023,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -55970,7 +56087,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -56036,7 +56153,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -56100,7 +56217,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -56164,7 +56281,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -56228,7 +56345,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -56294,7 +56411,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -56358,7 +56475,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -56422,7 +56539,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -56486,7 +56603,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -56552,7 +56669,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -56616,7 +56733,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -56680,7 +56797,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -56744,7 +56861,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -56810,7 +56927,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -56874,7 +56991,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -56938,7 +57055,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -57002,7 +57119,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -57068,7 +57185,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -57132,7 +57249,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -57196,7 +57313,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -57260,7 +57377,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -57326,7 +57443,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -57390,7 +57507,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -57454,7 +57571,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -57518,7 +57635,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -57584,7 +57701,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -57648,7 +57765,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -57712,7 +57829,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -57776,7 +57893,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -57842,7 +57959,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -57906,7 +58023,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -57970,7 +58087,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -58034,7 +58151,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -58100,7 +58217,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -58164,7 +58281,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -58228,7 +58345,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -58292,7 +58409,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -58358,7 +58475,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -58422,7 +58539,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -58486,7 +58603,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -58550,7 +58667,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -58616,7 +58733,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -58680,7 +58797,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -58744,7 +58861,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -58808,7 +58925,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -58874,7 +58991,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -58938,7 +59055,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -59002,7 +59119,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -59066,7 +59183,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -59132,7 +59249,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -59196,7 +59313,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -59260,7 +59377,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -59324,7 +59441,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -59390,7 +59507,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -59454,7 +59571,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -59518,7 +59635,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -59582,7 +59699,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -59616,262 +59733,262 @@ bj aE "} (224,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO +bx +bV jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +dd +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +dd +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +dd +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +dd +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +dd +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +dd +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +dd +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +jM +bV +bx "} (225,1,1) = {" aE @@ -59906,7 +60023,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -59970,7 +60087,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -60034,7 +60151,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -60098,7 +60215,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -60164,7 +60281,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -60228,7 +60345,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -60292,7 +60409,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -60356,7 +60473,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -60422,7 +60539,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -60486,7 +60603,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -60550,7 +60667,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -60614,7 +60731,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -60680,7 +60797,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -60744,7 +60861,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -60808,7 +60925,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -60872,7 +60989,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -60938,7 +61055,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -61002,7 +61119,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -61066,7 +61183,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -61130,7 +61247,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -61196,7 +61313,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -61260,7 +61377,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -61324,7 +61441,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -61388,7 +61505,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -61454,7 +61571,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -61518,7 +61635,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -61582,7 +61699,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -61646,7 +61763,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -61712,7 +61829,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -61776,7 +61893,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -61840,7 +61957,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -61904,7 +62021,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -61970,7 +62087,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -62034,7 +62151,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -62098,7 +62215,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -62162,7 +62279,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -62228,7 +62345,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -62292,7 +62409,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -62356,7 +62473,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -62420,7 +62537,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -62486,7 +62603,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -62550,7 +62667,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -62614,7 +62731,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -62678,7 +62795,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -62744,7 +62861,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -62808,7 +62925,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -62872,7 +62989,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -62936,7 +63053,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -63002,7 +63119,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -63066,7 +63183,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -63130,7 +63247,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -63194,7 +63311,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -63260,7 +63377,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -63324,7 +63441,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -63388,7 +63505,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -63452,7 +63569,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -63518,7 +63635,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -63582,7 +63699,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -63646,7 +63763,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -63710,7 +63827,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -63776,7 +63893,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -63840,7 +63957,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -63904,7 +64021,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -63968,7 +64085,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -64034,7 +64151,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -64098,7 +64215,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -64162,7 +64279,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -64226,7 +64343,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -64292,7 +64409,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -64356,7 +64473,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -64420,7 +64537,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -64484,7 +64601,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -64550,7 +64667,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -64614,7 +64731,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -64678,7 +64795,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -64742,7 +64859,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -64808,7 +64925,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -64872,7 +64989,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -64936,7 +65053,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -65000,7 +65117,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -65066,7 +65183,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -65130,7 +65247,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -65194,7 +65311,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -65258,7 +65375,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -65324,7 +65441,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -65388,7 +65505,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -65452,7 +65569,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -65516,7 +65633,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -65582,7 +65699,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -65646,7 +65763,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -65710,7 +65827,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -65774,7 +65891,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -65840,7 +65957,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -65904,7 +66021,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -65968,7 +66085,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -66032,7 +66149,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -66098,7 +66215,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -66162,7 +66279,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -66226,7 +66343,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -66290,7 +66407,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -66356,7 +66473,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -66420,7 +66537,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -66484,7 +66601,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -66548,7 +66665,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -66614,7 +66731,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -66678,7 +66795,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -66742,7 +66859,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -66806,7 +66923,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -66872,7 +66989,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -66936,7 +67053,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -67000,7 +67117,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -67064,7 +67181,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -67130,7 +67247,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -67194,7 +67311,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -67258,7 +67375,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -67322,7 +67439,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -67388,7 +67505,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -67452,7 +67569,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -67516,7 +67633,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -67580,7 +67697,7 @@ WO WO WO WO -WO +jM WO WO WO @@ -67646,6 +67763,7 @@ bj bj bj bj +bV bj bj bj @@ -67677,8 +67795,8 @@ bj bj bj bj +bV bj -uR bj bj bj @@ -67709,6 +67827,7 @@ bj bj bj bj +bV bj bj bj @@ -67740,9 +67859,9 @@ bj bj bj bj +bV bj bj -uR bj bj bj @@ -67772,6 +67891,7 @@ bj bj bj bj +bV bj bj bj @@ -67803,11 +67923,7 @@ bj bj bj bj -bj -bj -bj -uR -bj +bV bj bj bj @@ -67839,6 +67955,7 @@ bj bj bj bj +bV bj bj bj @@ -67904,6 +68021,7 @@ aE aE aE aE +bx aE aE aE @@ -67935,8 +68053,8 @@ aE aE aE aE +bx aE -CS aE aE aE @@ -67967,6 +68085,7 @@ aE aE aE aE +bx aE aE aE @@ -67998,9 +68117,9 @@ aE aE aE aE +bx aE aE -CS aE aE aE @@ -68030,6 +68149,7 @@ aE aE aE aE +bx aE aE aE @@ -68061,11 +68181,7 @@ aE aE aE aE -aE -aE -aE -CS -aE +bx aE aE aE @@ -68097,6 +68213,7 @@ aE aE aE aE +bx aE aE aE diff --git a/maps/southern_cross/southern_cross-5.dmm b/maps/southern_cross/southern_cross-5.dmm index 70bfc1494d..f1b0bde60f 100644 --- a/maps/southern_cross/southern_cross-5.dmm +++ b/maps/southern_cross/southern_cross-5.dmm @@ -1,93952 +1,2731 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/effect/overmap/visitable/planet/Sif, -/turf/simulated/mineral/sif, -/area/surface/outside/plains/mountains) -"ab" = ( -/obj/effect/zone_divider, -/turf/simulated/wall/solidrock, -/area/surface/outside/plains/mountains) -"ac" = ( -/obj/effect/map_effect/portal/master/side_a/plains_to_caves, -/turf/simulated/wall/solidrock, -/area/surface/outside/plains/mountains) -"ad" = ( -/obj/effect/map_effect/portal/line/side_a, -/turf/simulated/wall/solidrock, -/area/surface/outside/plains/mountains) -"ae" = ( -/obj/effect/map_effect/portal/line/side_a, -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/exterior) -"af" = ( -/obj/effect/map_effect/portal/line/side_a, -/obj/effect/map_effect/perma_light/concentrated, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2" - }, -/area/surface/outpost/mining_main/exterior) -"ag" = ( -/obj/effect/map_effect/portal/master/side_a/plains_to_caves/river, -/turf/simulated/wall/solidrock, -/area/surface/outside/plains/mountains) -"ah" = ( -/obj/effect/map_effect/portal/line/side_a, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/outside/plains/mountains) -"ai" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/outside/plains/mountains) -"aj" = ( -/turf/simulated/mineral/ignore_mapgen/sif, -/area/surface/outside/plains/mountains) -"ak" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/exterior) -"al" = ( -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2" - }, -/area/surface/outpost/mining_main/exterior) -"am" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/ignore_mapgen/sif, -/area/surface/outside/plains/mountains) -"an" = ( -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/outside/plains/mountains) -"ao" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"ap" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2" - }, -/area/surface/outpost/mining_main/exterior) -"aq" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2" - }, -/area/surface/outpost/mining_main/exterior) -"ar" = ( -/turf/simulated/wall, -/area/surface/outpost/mining_main/exterior) -"as" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/ender{ - icon_state = "1-2"; - id = "surface_cave" - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/path/plains) -"at" = ( -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2" - }, -/area/surface/outside/path/plains) -"au" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "mining_north" - }, -/obj/machinery/mineral/input, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outpost/mining_main/exterior) -"av" = ( -/obj/machinery/mineral/unloading_machine, -/obj/structure/plasticflaps/mining, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/exterior) -"aw" = ( -/obj/machinery/conveyor{ - id = "mining_north" - }, -/obj/machinery/mineral/output, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/exterior) -"ax" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/outpost) -"ay" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/path/plains) -"az" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/conveyor_switch/oneway{ - id = "mining_north"; - name = "mining conveyor" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/mining_main/exterior) -"aA" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/exterior) -"aB" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/water, -/area/surface/outside/river/indalsalven) -"aC" = ( -/obj/machinery/conveyor{ - id = "mining_north" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/exterior) -"aD" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 9 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"aE" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/zone_divider, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"aF" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 4 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"aG" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 4 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"aH" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 10 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 5 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"aI" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/path/plains) -"aJ" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/path/plains) -"aK" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/mining_main/exterior) -"aL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall, -/area/surface/outpost/mining_main/exterior) -"aN" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/exterior) -"aO" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"aP" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 1 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/zone_divider, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"aQ" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"aR" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 10 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"aS" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"aT" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/path/plains) -"aU" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"aV" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/zone_divider, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"aW" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/path/plains) -"aX" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"aY" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 10 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/zone_divider, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"ba" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"bb" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 1 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"bc" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"bd" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"be" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"bf" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 1 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"bg" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 1 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"bh" = ( -/turf/simulated/floor/water, -/area/surface/outside/plains/mountains) -"bi" = ( -/turf/simulated/floor/outdoors/rocks/sif/planetuse, -/area/surface/outside/plains/mountains) -"bj" = ( -/obj/structure/fence/corner{ - dir = 9 - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/outpost) -"bk" = ( -/obj/structure/fence{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/outpost) -"bl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"bm" = ( -/obj/structure/fence{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 1 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"bn" = ( -/obj/structure/fence{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 1 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"bo" = ( -/obj/structure/fence/end{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"bp" = ( -/obj/structure/fence/end{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"bq" = ( -/obj/structure/fence/corner{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/outpost) -"br" = ( -/obj/structure/fence, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/outpost) -"bs" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 1 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"bt" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 6 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/zone_divider, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"bv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 9 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"bw" = ( -/turf/simulated/floor/water/shoreline/corner, -/area/surface/outside/ocean) -"bx" = ( -/turf/simulated/floor/water, -/area/surface/outside/ocean) -"by" = ( -/turf/simulated/floor/water/shoreline/corner{ - dir = 1 - }, -/area/surface/outside/ocean) -"bA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 1 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"bB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 1 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/obj/effect/zone_divider, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"bC" = ( -/turf/simulated/floor/water/shoreline{ - dir = 8 - }, -/area/surface/outside/ocean) -"bD" = ( -/turf/simulated/floor/water/shoreline{ - dir = 4 - }, -/area/surface/outside/ocean) -"bE" = ( -/turf/simulated/floor/water/shoreline, -/area/surface/outside/ocean) -"bF" = ( -/turf/unsimulated/wall/planetary/sif, -/area/surface/outside/ocean) -"bG" = ( -/obj/structure/fence/cut/large, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/outpost) -"bH" = ( -/turf/simulated/wall/r_wall{ - cached_rad_resistance = 150 - }, -/area/surface/outpost/engineering/auxiliary_storage) -"bI" = ( -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 1 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outpost/engineering/auxiliary_storage) -"bJ" = ( -/obj/structure/sign/warning/radioactive, -/turf/simulated/wall/r_wall{ - cached_rad_resistance = 150 - }, -/area/surface/outpost/engineering/auxiliary_storage) -"bK" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outside/plains/outpost) -"bL" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 8 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating, -/area/surface/outside/plains/outpost) -"bM" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 8 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outside/plains/outpost) -"bN" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 10 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/surface/outside/plains/outpost) -"bO" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/engineering/atmos_room) -"bP" = ( -/obj/structure/sign/warning/radioactive, -/turf/simulated/wall/r_wall, -/area/surface/outpost/engineering/atmos_room) -"bQ" = ( -/obj/item/weapon/banner/nt, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"bR" = ( -/turf/simulated/floor/water/shoreline{ - dir = 6 - }, -/area/surface/outside/ocean) -"bS" = ( -/obj/effect/engine_setup/pump_max, -/obj/machinery/atmospherics/binary/pump/high_power, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"bT" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"bU" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"bV" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"bW" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"bY" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"bZ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"ca" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"cb" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating, -/area/surface/outside/plains/outpost) -"cc" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating, -/area/surface/outside/plains/outpost) -"cd" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 4 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating, -/area/surface/outside/plains/outpost) -"ce" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating, -/area/surface/outside/plains/outpost) -"cf" = ( -/obj/structure/closet/emcloset, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Mining Outpost Power 2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"cg" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"ch" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"ci" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/uxstorage) -"cj" = ( -/turf/simulated/floor/water/shoreline{ - dir = 10 - }, -/area/surface/outside/ocean) -"ck" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"cl" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"cm" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"co" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"cp" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"cq" = ( -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"cr" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"cs" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 1 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating, -/area/surface/outside/plains/outpost) -"ct" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating, -/area/surface/outside/plains/outpost) -"cu" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 10 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating, -/area/surface/outside/plains/outpost) -"cv" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"cw" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"cx" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"cy" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 8; - start_pressure = 4559.63 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"cz" = ( -/obj/structure/ore_box, -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"cA" = ( -/obj/structure/ore_box, -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"cB" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main) -"cC" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main) -"cD" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/refinery) -"cF" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"cG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/refinery) -"cH" = ( -/turf/simulated/floor/water/deep, -/area/surface/outside/ocean) -"cI" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/surface/outside/plains/normal; - base_turf = /turf/simulated/floor/outdoors/snow/sif/planetuse; - landmark_tag = "outpost_nw"; - name = "Northwest Outpost Perimiter" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/normal) -"cK" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"cL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"cM" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"cN" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"cO" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"cP" = ( -/obj/machinery/atmospherics/binary/pump, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"cR" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"cS" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/power/thermoregulator, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"cT" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 8 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating, -/area/surface/outside/plains/outpost) -"cU" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 4 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating, -/area/surface/outside/plains/outpost) -"cV" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"cW" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"cX" = ( -/obj/structure/ore_box, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"cY" = ( -/obj/structure/ore_box, -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"cZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"da" = ( -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"db" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/mining_main) -"dd" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/item/weapon/cell/high, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/mining_main) -"de" = ( -/obj/machinery/conveyor{ - id = "mining_internal" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"df" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"dg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/refinery) -"dh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"di" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"dj" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"dk" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/mining_main/refinery) -"dl" = ( -/obj/machinery/button/remote/blast_door{ - id = "garage1"; - name = "Garage Shutter Control"; - pixel_x = 22; - req_one_access = list(48,43) - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/main/airlock/right_two) -"dm" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/right_two) -"dn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/surface/outpost/security/maa) -"do" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/search_and_rescue) -"dp" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/search_and_rescue) -"dq" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/gateway) -"dr" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/exploration/containment) -"ds" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/exploration/containment) -"du" = ( -/obj/machinery/atmospherics/binary/circulator{ - anchored = 1; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"dv" = ( -/obj/machinery/power/generator{ - anchored = 1; - dir = 8 - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"dw" = ( -/obj/machinery/atmospherics/binary/circulator{ - anchored = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"dx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"dy" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"dz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"dA" = ( -/obj/machinery/alarm{ - dir = 8; - frequency = 1441; - pixel_x = 22 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"dB" = ( -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"dC" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/grille, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outpost/engineering/atmos_room) -"dD" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"dE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"dF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"dG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/mob/living/simple_mob/animal/passive/mouse/mining, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"dH" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main/uxstorage) -"dI" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"dJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/machinery/computer/guestpass{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"dL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"dM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"dN" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 5 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = 22 - }, -/obj/item/weapon/pickaxe, -/obj/item/device/gps/mining, -/obj/item/clothing/head/hardhat/orange, -/obj/machinery/vending/wallmed1{ - pixel_x = 25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"dO" = ( -/turf/simulated/wall, -/area/surface/outpost/mining_main/refinery) -"dP" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/mineral/input, -/obj/structure/sign/warning/moving_parts{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main/refinery) -"dQ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"dR" = ( -/obj/machinery/mineral/unloading_machine, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"dS" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "mining_internal" - }, -/obj/machinery/mineral/output, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"dT" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "mining_internal" - }, -/obj/structure/plasticflaps/mining, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"dU" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "mining_internal" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"dV" = ( -/turf/simulated/shuttle/wall/voidcraft, -/area/surface/outpost/wall) -"dW" = ( -/obj/machinery/mineral/output, -/obj/machinery/conveyor{ - id = "mining_internal" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"dY" = ( -/obj/machinery/mineral/unloading_machine{ - icon_state = "unloader-corner" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"dZ" = ( -/obj/machinery/mineral/input, -/obj/structure/plasticflaps/mining, -/obj/machinery/conveyor{ - dir = 8; - id = "mining_external" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"ea" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_external" - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outpost/mining_main/refinery) -"eb" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"ec" = ( -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/right_two) -"ed" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "garage1"; - name = "Garage Shutters" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/airlock/right_two) -"ee" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/remote/blast_door{ - id = "garage1"; - name = "Garage Shutter Control"; - pixel_x = -6; - pixel_y = 22 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_two) -"ef" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_two) -"eg" = ( -/obj/structure/table/rack, -/obj/item/weapon/material/fishing_net, -/obj/item/weapon/material/fishing_net, -/obj/item/weapon/material/fishing_net, -/obj/item/weapon/material/fishing_net, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"ei" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_two) -"ej" = ( -/obj/machinery/sleep_console{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/search_and_rescue) -"ek" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/search_and_rescue) -"el" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/roller{ - pixel_x = 8; - pixel_y = 1 - }, -/obj/item/roller{ - pixel_x = 8; - pixel_y = 9 - }, -/obj/item/roller{ - pixel_x = -8; - pixel_y = 1 - }, -/obj/item/roller{ - pixel_x = -8; - pixel_y = 9 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"em" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -5; - pixel_y = -5 - }, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -5; - pixel_y = -5 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"en" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/weapon/storage/box/bodybags, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 7; - pixel_y = 1 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"eo" = ( -/obj/machinery/atmospherics/unary/cryo_cell{ - layer = 3.3 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/search_and_rescue) -"ep" = ( -/obj/machinery/atmospherics/unary/freezer{ - icon_state = "freezer" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/search_and_rescue) -"eq" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gateway) -"er" = ( -/obj/structure/stasis_cage, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/exploration/containment) -"es" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"et" = ( -/obj/item/device/universal_translator, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"eu" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/item/glass_jar, -/obj/structure/table/reinforced, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"ev" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"ew" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"ex" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"ey" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"ez" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"eA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"eC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"eD" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 23; - pixel_y = 12 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"eE" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/security/smes) -"eF" = ( -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outpost/engineering/atmos_room) -"eG" = ( -/obj/machinery/atmospherics/pipe/tank/phoron{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"eH" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 5; - tag_north = 2; - tag_south = 1; - tag_west = 6 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"eI" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"eJ" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"eK" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/corner/brown/full, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"eL" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"eM" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"eN" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 8 - }, -/obj/machinery/camera/network/mining{ - c_tag = "PO - Mining Storage"; - dir = 1 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"eO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Mining Storage"; - req_one_access = list(48) - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main/uxstorage) -"eP" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"eQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"eR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"eS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"eT" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/item/weapon/packageWrap, -/obj/item/weapon/packageWrap, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 5 - }, -/obj/machinery/button/remote/blast_door{ - id = "production1"; - name = "Production Shutters"; - pixel_x = 22; - req_one_access = list(48) - }, -/obj/item/weapon/hand_labeler, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"eU" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 8 - }, -/obj/machinery/button/remote/blast_door{ - id = "production1"; - name = "Production Shutters"; - pixel_x = -20; - pixel_y = -10; - req_one_access = list(48) - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/mining_main/refinery) -"eV" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"eW" = ( -/obj/machinery/conveyor{ - id = "mining_internal" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"eX" = ( -/obj/machinery/conveyor_switch{ - id = "mining_external" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"eZ" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"fa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/vehicle/train/engine/quadbike{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_two) -"fb" = ( -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_two) -"fc" = ( -/obj/effect/zone_divider, -/turf/simulated/wall/solidrock, -/area/surface/outpost/wall) -"fd" = ( -/obj/structure/table/steel, -/obj/structure/closet/secure_closet/medical_wall/pills{ - pixel_y = 32 - }, -/obj/item/weapon/storage/pill_bottle/spaceacillin, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = 12 - }, -/obj/random/medical/pillbottle, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/search_and_rescue) -"fe" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"ff" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"fg" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"fh" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"fi" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/westleft{ - name = "Medical Supplies"; - req_access = null; - req_one_access = list(5,43) - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"fj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"fk" = ( -/obj/machinery/iv_drip, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"fm" = ( -/obj/machinery/telecomms/relay/preset/southerncross/skylands, -/turf/simulated/floor/tiled/techmaint, -/area/surface/outpost/main/tcomm) -"fn" = ( -/turf/simulated/wall, -/area/surface/outpost/main/gateway) -"fo" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 9 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/main/gateway) -"fp" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/main/gateway) -"fq" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 5 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/main/gateway) -"fr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"fs" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"ft" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"fu" = ( -/obj/effect/floor_decal/borderfloor/full, -/obj/effect/floor_decal/industrial/danger/full, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/shieldwallgen{ - anchored = 1; - req_access = list(1,43); - state = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"fv" = ( -/obj/structure/fence/end, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"fw" = ( -/obj/machinery/light/small{ - brightness_color = "#DA0205"; - brightness_power = 1; - brightness_range = 5; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"fx" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"fy" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"fz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"fA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"fB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 6; - d2 = 8; - icon_state = "6-8" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"fC" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"fD" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"fE" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"fF" = ( -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"fG" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"fH" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"fI" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 7; - tag_north = 2; - tag_south = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"fJ" = ( -/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"fK" = ( -/turf/simulated/wall, -/area/surface/outpost/mining_main/uxstorage) -"fL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"fM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"fN" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main) -"fO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"fP" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"fQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "production1"; - name = "Production Shutters" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/mining_main/refinery) -"fR" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/refinery) -"fS" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/refinery) -"fT" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main/refinery) -"fU" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main/refinery) -"fV" = ( -/obj/machinery/mineral/input, -/obj/machinery/conveyor{ - id = "mining_internal" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"fW" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"fX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_two) -"fY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/network/main_outpost{ - c_tag = "ATV Garage 1"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_two) -"fZ" = ( -/obj/machinery/vending/medical{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Search and Rescue Port" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/search_and_rescue) -"ga" = ( -/obj/structure/table/bench/standard, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/search_and_rescue) -"gb" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"gc" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"gd" = ( -/obj/effect/landmark/start{ - name = "Search and Rescue" - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"ge" = ( -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"gf" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/computer/crew{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"gg" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/structure/closet/secure_closet/medical_wall{ - name = "O- Blood Locker"; - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/item/weapon/reagent_containers/blood/OPlus, -/obj/item/weapon/reagent_containers/blood/OPlus, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"gh" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Gateway"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/main/gateway) -"gi" = ( -/obj/machinery/cryopod/robot/door/gateway, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/main/gateway) -"gj" = ( -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/main/gateway) -"gk" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/main/gateway) -"gl" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/purple/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/corner/purple/bordercorner2, -/obj/structure/table/rack, -/obj/item/weapon/weldingtool, -/obj/item/weapon/weldingtool, -/obj/item/clothing/head/welding, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"gn" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple/bordercorner{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"go" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"gp" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"gq" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"gr" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/exploration/containment) -"gs" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/exploration/containment) -"gt" = ( -/turf/simulated/floor/reinforced, -/area/surface/outpost/main/exploration/containment) -"gu" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/main/exploration/containment) -"gv" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 2; - tag_north = 5; - tag_west = 1; - use_power = 0 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"gw" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "ENG - Outpost Auxiliary Room"; - dir = 10; - name = "Engineering_Outpost"; - network = list("Engineering") - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"gx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/black, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"gy" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/heat_exchanger{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"gz" = ( -/obj/machinery/atmospherics/unary/heat_exchanger{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"gA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 6; - d2 = 9; - icon_state = "6-9" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"gB" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"gC" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"gD" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"gE" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outpost/engineering/atmos_room) -"gF" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/obj/machinery/meter, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"gG" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Air Tank Bypass Pump" - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"gI" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"gJ" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/emergencystorage) -"gL" = ( -/obj/machinery/disposal, -/obj/machinery/light_construct{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"gM" = ( -/obj/effect/landmark/event_spawn/dronepod_landing, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/normal) -"gN" = ( -/obj/effect/landmark/event_spawn/dronepod_landing, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/normal) -"gO" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/lights/mixed, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/emergencystorage) -"gP" = ( -/turf/simulated/wall, -/area/surface/outpost/mining_main/emergencystorage) -"gQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 10 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"gR" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"gS" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/bordercorner{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"gT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"gU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"gV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"gW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "production1"; - name = "Production Shutters" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/mining_main/refinery) -"gY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/refinery) -"gZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/refinery) -"ha" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/refinery) -"hb" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/camera/network/mining{ - c_tag = "PO - Mining Production Room"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/refinery) -"hc" = ( -/obj/machinery/mineral/processing_unit_console, -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/refinery) -"hd" = ( -/obj/machinery/mineral/processing_unit, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"he" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/symbol/gu{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"hf" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/main/airlock/right_two) -"hg" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/search_and_rescue) -"hh" = ( -/obj/structure/closet/secure_closet/sar, -/obj/item/weapon/storage/pill_bottle/spaceacillin, -/obj/item/roller/adv, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/search_and_rescue) -"hi" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall/r_wall, -/area/surface/outpost/security/smes) -"hj" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"hk" = ( -/obj/structure/table/glass, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/item/weapon/backup_implanter{ - pixel_y = -6 - }, -/obj/item/weapon/backup_implanter{ - pixel_y = 6 - }, -/obj/item/weapon/backup_implanter{ - pixel_y = 12 - }, -/obj/item/weapon/backup_implanter, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"hl" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"hm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"hn" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/table/glass, -/obj/item/clothing/accessory/stethoscope, -/obj/item/device/defib_kit/loaded, -/obj/item/device/defib_kit/compact/loaded, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"ho" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"hp" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/search_and_rescue) -"hq" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/main/gateway) -"hr" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/effect/landmark{ - name = "JoinLateGateway" - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/main/gateway) -"hs" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/main/gateway) -"ht" = ( -/obj/structure/closet/secure_closet{ - name = "hunting locker"; - req_one_access = list(1,43) - }, -/obj/item/weapon/gun/energy/netgun, -/obj/item/weapon/beartrap/hunting, -/obj/item/weapon/material/knife/tacknife/survival, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/item/clothing/shoes/boots/jungle, -/obj/effect/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Containment Pen"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"hu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"hv" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"hw" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"hx" = ( -/obj/effect/floor_decal/borderfloor/cee{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger/cee{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor/westright{ - name = "Containment Pen"; - req_one_access = list(43,1) - }, -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Containment Pen"; - req_one_access = list(43,1) - }, -/obj/machinery/door/blast/regular/open{ - id = "pen"; - name = "Containment Lockdown Blast Doors" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"hy" = ( -/turf/simulated/wall/r_wall{ - cached_rad_resistance = 150 - }, -/area/surface/outpost/engineering/reactor_smes) -"hz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/wingrille_spawn/reinforced_phoron, -/obj/machinery/door/blast/radproof{ - id = "EngineReactor"; - rad_resistance = 150 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"hA" = ( -/obj/structure/sign/warning/radioactive, -/turf/simulated/wall/r_wall{ - cached_rad_resistance = 150 - }, -/area/surface/outpost/engineering/reactor_smes) -"hB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/wingrille_spawn/reinforced_phoron, -/obj/machinery/door/blast/radproof{ - id = "EngineReactor"; - rad_resistance = 150 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"hC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Reactor Auxiliary Room"; - req_one_access = list(11) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/yellow{ - d1 = 9; - d2 = 10; - icon_state = "9-10" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"hF" = ( -/turf/simulated/wall/r_wall{ - cached_rad_resistance = 150 - }, -/area/surface/outpost/engineering/storage) -"hG" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outpost/engineering/atmos_room) -"hH" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"hI" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"hJ" = ( -/obj/machinery/atmospherics/binary/pump/on, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"hK" = ( -/obj/machinery/pipedispenser, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"hL" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/emergencystorage) -"hM" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/emergencystorage) -"hN" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Emergency Storage" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/mining_main/emergencystorage) -"hO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"hP" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"hQ" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"hR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"hT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"hU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"hV" = ( -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "production1"; - name = "Production Shutters" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/mining_main/refinery) -"hW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/refinery) -"hX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/refinery) -"hY" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central4, -/obj/machinery/conveyor_switch/oneway{ - id = "mining_internal"; - name = "mining conveyor" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/refinery) -"hZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals1, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/refinery) -"ia" = ( -/obj/machinery/conveyor{ - id = "mining_internal" - }, -/obj/machinery/mineral/output, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"ic" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"id" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"ie" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"if" = ( -/obj/effect/landmark/start{ - name = "Search and Rescue" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"ig" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/westleft{ - name = "Medical Supplies"; - req_access = null; - req_one_access = list(5,43) - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"ih" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"ii" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Search and Rescue Starboard"; - dir = 8 - }, -/obj/structure/window/reinforced{ - health = 1e+006; - req_access = list(5) - }, -/obj/structure/table/rack, -/obj/item/weapon/storage/belt/medical/emt, -/obj/item/weapon/storage/belt/medical/emt, -/obj/item/weapon/storage/belt/medical/emt, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor/southleft{ - dir = 8; - name = "EMT Supplies"; - req_access = list(5); - req_one_access = list(5,43) - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"ij" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gateway) -"ik" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/gateway) -"il" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/gateway) -"io" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/gateway) -"ip" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/outpost) -"iq" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/obj/machinery/computer/cryopod/gateway{ - pixel_y = 30 - }, -/obj/machinery/newscaster{ - pixel_x = 29 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/gateway) -"ir" = ( -/obj/structure/closet/secure_closet{ - name = "hunting locker"; - req_one_access = list(1,43) - }, -/obj/item/weapon/gun/energy/netgun, -/obj/item/weapon/beartrap/hunting, -/obj/item/weapon/material/knife/tacknife/survival, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/item/clothing/shoes/boots/jungle, -/obj/effect/floor_decal/corner/purple/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"is" = ( -/obj/effect/floor_decal/borderfloor/cee, -/obj/effect/floor_decal/industrial/danger/cee, -/obj/machinery/door/window/brigdoor/westleft{ - name = "Containment Pen"; - req_access = newlist(); - req_one_access = list(43,1) - }, -/obj/machinery/door/window/brigdoor/eastright{ - name = "Containment Pen"; - req_access = newlist(); - req_one_access = list(43,1) - }, -/obj/machinery/door/blast/regular/open{ - id = "pen"; - name = "Containment Lockdown Blast Doors" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"it" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/mountains) -"iu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - frequency = 1438; - id = "rust_cooling_in"; - name = "Coolant Injector"; - pixel_y = 1; - power_rating = 30000; - use_power = 1; - volume_rate = 700 - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"iv" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"iw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/engine{ - dir = 1; - external_pressure_bound = 100; - external_pressure_bound_default = 0; - frequency = 1438; - icon_state = "map_vent_in"; - id_tag = "rust_cooling_out"; - initialize_directions = 1; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"ix" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 5; - d2 = 6; - icon_state = "5-6" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"iy" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"iz" = ( -/obj/structure/closet/crate{ - name = "Tritium Storage" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/item/weapon/fuel_assembly/tritium, -/obj/item/weapon/fuel_assembly/tritium, -/obj/item/weapon/fuel_assembly/tritium, -/obj/machinery/light_switch{ - pixel_x = -11; - pixel_y = 21 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/storage) -"iA" = ( -/obj/machinery/fusion_fuel_compressor, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/camera/emp_proof{ - c_tag = "ENG - Outpost Fuel Storage"; - dir = 6; - name = "Engineering_Outpost"; - network = list("Engineering") - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/storage) -"iB" = ( -/obj/structure/closet/crate{ - name = "Deuterium Storage" - }, -/obj/item/weapon/fuel_assembly/deuterium, -/obj/item/weapon/fuel_assembly/deuterium, -/obj/item/weapon/fuel_assembly/deuterium, -/obj/item/weapon/fuel_assembly/deuterium, -/obj/item/weapon/fuel_assembly/deuterium, -/obj/item/weapon/fuel_assembly/deuterium, -/obj/item/weapon/fuel_assembly/deuterium, -/obj/item/weapon/fuel_assembly/deuterium, -/obj/item/weapon/fuel_assembly/deuterium, -/obj/item/weapon/fuel_assembly/deuterium, -/obj/item/weapon/fuel_assembly/deuterium, -/obj/item/weapon/fuel_assembly/deuterium, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/storage) -"iC" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outpost/engineering/atmos_room) -"iD" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"iE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"iF" = ( -/obj/machinery/pipedispenser/disposal, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"iG" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/obj/item/clothing/glasses/meson, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/emergencystorage) -"iH" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/emergencystorage) -"iI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 10 - }, -/obj/structure/closet/crate, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"iJ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/structure/closet/crate, -/obj/machinery/camera/network/mining{ - c_tag = "PO - Mining Stocking"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"iK" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/structure/table/steel, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/item/weapon/extinguisher/mini, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"iL" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/structure/table/steel, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/item/weapon/storage/toolbox/mechanical, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"iN" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/machinery/mineral/equipment_vendor{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"iO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"iP" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"iQ" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"iR" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/mining_main/refinery) -"iS" = ( -/obj/machinery/mineral/stacking_unit_console, -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/refinery) -"iT" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/ore_box, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"iU" = ( -/obj/structure/closet/secure_closet/sar, -/obj/item/weapon/storage/pill_bottle/spaceacillin, -/obj/item/roller/adv, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/search_and_rescue) -"iV" = ( -/obj/structure/table/bench/standard, -/obj/item/device/radio/intercom/department/medbay{ - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/search_and_rescue) -"iW" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"iX" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 9 - }, -/obj/structure/table/glass, -/obj/machinery/recharger, -/obj/item/weapon/tool/screwdriver, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"iY" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"iZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"ja" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/effect/floor_decal/borderfloorwhite/corner2, -/obj/effect/floor_decal/corner/paleblue/bordercorner2, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/closet/l3closet/scientist, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"jb" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/table/glass, -/obj/item/weapon/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/weapon/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/weapon/storage/firstaid/fire{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/weapon/storage/firstaid/fire{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/weapon/storage/firstaid/o2{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/weapon/storage/firstaid/o2{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/weapon/storage/firstaid/adv{ - pixel_x = -5; - pixel_y = -5 - }, -/obj/item/weapon/storage/firstaid/adv{ - pixel_x = -5; - pixel_y = -5 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"jc" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 6 - }, -/obj/item/weapon/tool/wrench, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"jd" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gateway) -"je" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gateway) -"jf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gateway) -"jg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gateway) -"jh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gateway) -"ji" = ( -/obj/structure/closet/wardrobe/xenos, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gateway) -"jj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/recharger, -/obj/effect/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/item/weapon/tool/wrench, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"jk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"jm" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"jn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "pen"; - pixel_x = 22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"jo" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"jp" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"jq" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"jr" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/power/hydromagnetic_trap, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"js" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"jt" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"ju" = ( -/obj/effect/wingrille_spawn/reinforced_phoron, -/obj/machinery/door/blast/radproof{ - id = "EngineReactor"; - rad_resistance = 150 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/engineering/reactor_smes) -"jv" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/fusion_fuel_injector/mapped{ - dir = 8; - id_tag = "Reactor Fuel Injectors" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"jw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 9; - icon_state = "2-9" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"jx" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Fuel Storage Room"; - req_one_access = list(11) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/storage) -"jy" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/storage) -"jz" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/storage) -"jA" = ( -/obj/structure/catwalk, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/storage) -"jB" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outpost/engineering/atmos_room) -"jC" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"jD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"jE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"jF" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"jH" = ( -/obj/machinery/cablelayer, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"jI" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/tools) -"jJ" = ( -/turf/simulated/wall, -/area/surface/outpost/mining_main/tools) -"jK" = ( -/turf/simulated/wall, -/area/surface/outpost/mining_main) -"jL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/machinery/door/firedoor/multi_tile/glass, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Production Area"; - req_one_access = list(48) - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main) -"jM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main) -"jN" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"jP" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main) -"jQ" = ( -/turf/simulated/wall, -/area/surface/outpost/mining_main/cave) -"jR" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main/refinery) -"jS" = ( -/obj/structure/plasticflaps/mining, -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"jT" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"jV" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/obj/machinery/mineral/output, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"jW" = ( -/obj/machinery/mineral/stacking_machine, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"jY" = ( -/obj/machinery/mineral/input, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"jZ" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/storage) -"ka" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/storage) -"kb" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/industrial/warning/dust/corner, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"kc" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"kd" = ( -/obj/effect/landmark{ - name = "bluespacerift" - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/path/plains) -"ke" = ( -/obj/structure/showcase/sign{ - desc = "This appears to be a sign warning people that it is dangerous outside. Further reading suggests being properly equipped or acquiring an umbrella."; - name = "WARNING: HAIL STORMS" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"kf" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_two) -"kg" = ( -/turf/simulated/wall, -/area/surface/outpost/main/search_and_rescue) -"kh" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/search_and_rescue) -"ki" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Search and Rescue"; - req_one_access = null - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/machinery/door/firedoor/multi_tile/glass, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/search_and_rescue) -"kj" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/search_and_rescue) -"kk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 10 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gateway) -"kl" = ( -/obj/effect/mist, -/turf/simulated/floor/water/pool, -/area/surface/outpost/civilian/sauna) -"km" = ( -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/security) -"kn" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gateway) -"ko" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gateway) -"kp" = ( -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/bordercorner2, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gateway) -"kq" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gateway) -"kr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/white/bordercorner2, -/obj/structure/closet/emcloset, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gateway) -"ks" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/purple/bordercorner2{ - dir = 9 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"kt" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"ku" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"kv" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"kw" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/right_three) -"kx" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"ky" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_three) -"kz" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/fusion_core/mapped{ - id_tag = "Outpost Fusion Core" - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"kA" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"kB" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"kC" = ( -/obj/effect/wingrille_spawn/reinforced_phoron, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/blast/radproof{ - id = "EngineReactor"; - rad_resistance = 150 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/engineering/reactor_smes) -"kD" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/fusion_fuel_injector/mapped{ - dir = 8; - id_tag = "Reactor Fuel Injectors" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"kE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"kF" = ( -/turf/simulated/wall/r_wall{ - cached_rad_resistance = 150 - }, -/area/surface/outpost/engineering/atmos_room) -"kG" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"kH" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"kI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"kJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"kK" = ( -/turf/unsimulated/wall/planetary/sif, -/area/surface/outside/plains/mountains) -"kL" = ( -/obj/machinery/power/port_gen/pacman, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Mining Outpost Power 2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"kN" = ( -/obj/structure/closet/crate, -/obj/item/stack/material/phoron{ - amount = 25 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"kO" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/belt/utility/full, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"kP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"kR" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 5 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"kS" = ( -/obj/item/stack/flag/green{ - pixel_x = -4 - }, -/obj/item/stack/flag/red, -/obj/item/stack/flag/yellow{ - pixel_x = 4 - }, -/obj/structure/table/rack, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"kT" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"kU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"kV" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/obj/machinery/camera/network/security{ - c_tag = "SO - Airlock Access"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"kX" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 4 - }, -/obj/item/weapon/storage/box/nifsofts_mining, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"kY" = ( -/turf/simulated/wall, -/area/surface/outpost/mining_main/storage) -"kZ" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"la" = ( -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main/storage) -"lb" = ( -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"ld" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/mining_main/storage) -"le" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"lf" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/right_two) -"lg" = ( -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"lh" = ( -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/airlock/right_two) -"li" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/tool/crowbar/red, -/obj/item/device/flashlight, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/right_two) -"lj" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/item/clothing/mask/gas, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/right_two) -"lk" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/item/clothing/mask/gas, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/right_two) -"ll" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/item/weapon/tank/emergency/oxygen/double, -/obj/item/weapon/tank/emergency/oxygen/double, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Airlock 2" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/right_two) -"lm" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/corridor/right_upper) -"lo" = ( -/obj/structure/table/steel, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/item/device/multitool, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/corridor/right_upper) -"lp" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"lq" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"lr" = ( -/obj/structure/closet/crate/secure/gear{ - name = "explorer crate"; - req_access = list(43) - }, -/obj/item/weapon/storage/belt/utility/full, -/obj/item/weapon/storage/belt/utility/full, -/obj/effect/floor_decal/industrial/outline, -/obj/item/clothing/head/welding, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/corridor/right_upper) -"ls" = ( -/obj/structure/closet/crate/secure/gear{ - name = "explorer crate"; - req_access = list(43) - }, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/weapon/storage/firstaid/regular, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/corridor/right_upper) -"lt" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/corridor/right_upper) -"lu" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass{ - name = "Long Range Teleporter Access" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/gateway) -"lv" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gateway) -"lw" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass{ - name = "Long Range Teleporter Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/gateway) -"ly" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/multi_tile/metal{ - name = "Fauna Containment"; - req_one_access = list(1,43) - }, -/obj/machinery/door/firedoor/multi_tile/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/exploration/containment) -"lz" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"lA" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/exploration/containment) -"lB" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/device/radio{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Airlock 3" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/right_three) -"lC" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/right_three) -"lD" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/right_three) -"lE" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/tool/crowbar/red, -/obj/item/device/flashlight, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/right_three) -"lF" = ( -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/airlock/right_three) -"lI" = ( -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"lJ" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/right_three) -"lK" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"lL" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/power/hydromagnetic_trap, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"lM" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"lN" = ( -/obj/machinery/fusion_fuel_injector/mapped{ - dir = 8; - id_tag = "Reactor Fuel Injectors" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"lO" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"lP" = ( -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"lQ" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "sec1_airlock_control"; - name = "Internal Access Button"; - pixel_x = 5; - pixel_y = 26; - req_one_access = list(1) - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "sec1_airlock_interior"; - locked = 1; - name = "Security Outpost Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/security) -"lR" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"lS" = ( -/obj/structure/sign/warning/radioactive, -/turf/simulated/wall/r_wall, -/area/surface/outpost/engineering/reactor_smes) -"lT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/atmos_room) -"lU" = ( -/obj/structure/closet/radiation, -/obj/item/clothing/head/radiation, -/obj/item/clothing/head/radiation, -/obj/item/clothing/suit/radiation, -/obj/item/clothing/suit/radiation, -/obj/item/device/geiger, -/obj/item/device/geiger, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/atmos_room) -"lV" = ( -/obj/structure/table/steel, -/obj/random/tool, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"lW" = ( -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"lX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"lY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 10 - }, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = -10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"lZ" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"ma" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"mb" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"mc" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/tools) -"md" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"me" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"mf" = ( -/obj/machinery/computer/guestpass{ - pixel_y = 28 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "sec1_airlock_control"; - pixel_x = 26; - pixel_y = 26; - req_one_access = list(1); - tag_exterior_door = "sec1_airlock_exterior"; - tag_interior_door = "sec1_airlock_interior" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"mg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"mh" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/bordercorner{ - dir = 4 - }, -/obj/machinery/recharger, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"mi" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/item/weapon/storage/toolbox/mechanical, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"mj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/machinery/suit_cycler/mining, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"mk" = ( -/obj/structure/table/rack/shelf, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/item/device/gps/mining{ - pixel_x = -5 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/item/device/gps/mining{ - pixel_x = 5 - }, -/obj/item/device/gps/mining{ - pixel_x = -5 - }, -/obj/item/device/gps/mining{ - pixel_x = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"mm" = ( -/obj/structure/table/rack/shelf, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/item/weapon/gun/energy/locked/phasegun/rifle{ - pixel_y = 3 - }, -/obj/item/weapon/gun/energy/locked/phasegun/rifle{ - pixel_y = -4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/machinery/camera/network/mining{ - c_tag = "PO - Mining Hallway 1" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"mn" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/item/weapon/mining_scanner, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/head/helmet/space/void/mining, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"mo" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/item/weapon/mining_scanner, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/head/helmet/space/void/mining, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"mq" = ( -/obj/structure/table/rack, -/obj/item/weapon/shovel, -/obj/item/weapon/tool/wrench, -/obj/item/weapon/pickaxe, -/obj/item/weapon/tool/crowbar, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"ms" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/storage) -"mt" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"mu" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/obj/machinery/camera/network/mining{ - c_tag = "PO - Airlock Access 1"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"mv" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/storage) -"mw" = ( -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/mining_main/storage) -"my" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_two) -"mz" = ( -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Airlock Access 2"; - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"mC" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"mD" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_two) -"mE" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"mF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"mG" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"mH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"mI" = ( -/obj/machinery/door/firedoor/multi_tile/glass, -/obj/machinery/door/airlock/multi_tile/metal{ - name = "Sauna" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/civilian/sauna) -"mJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"mK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"mL" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"mM" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"mN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"mP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atm{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"mQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"mR" = ( -/obj/machinery/telecomms/relay/preset/southerncross/wild, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/surface/outpost/main/tcomm) -"mS" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"mT" = ( -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction/yjunction, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"mU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"mV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"mW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"mX" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"mY" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"mZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 4 - }, -/obj/machinery/computer/guestpass{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"na" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"nb" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_three) -"nc" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"nd" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"ne" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"ng" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"nh" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"nj" = ( -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Airlock Access 3"; - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"nk" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_three) -"nl" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/right_three) -"nm" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"nn" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"no" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/air_sensor{ - frequency = 1438; - id_tag = "rustengine_sensor"; - output = 63 - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"np" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/emp_proof{ - c_tag = "ENG - Outpost Reactor Room East"; - dir = 4; - name = "Reactor_Room"; - network = list("Engine") - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"nq" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"nr" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"ns" = ( -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Outpost Reactor Power"; - name_tag = "Outpost Reactor Power" - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"nt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Reactor Room Internal Access"; - req_one_access = list(11) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled/techfloor/grid, -/area/surface/outpost/engineering/reactor_smes) -"nu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/atmos_room) -"nv" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/atmos_room) -"nw" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Reactor Room External Access"; - req_one_access = list(11) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled/techfloor/grid, -/area/surface/outpost/engineering/atmos_room) -"nx" = ( -/obj/structure/catwalk, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"ny" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"nz" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"nA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"nB" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/terminal, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"nC" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"nE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"nG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering{ - name = "Atmos Room"; - req_one_access = list(12) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/mining_main/tools) -"nH" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"nI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"nJ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"nM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main/tools) -"nN" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"nO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"nQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"nR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"nS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"nT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"nU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"nV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"nW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "mining1_airlock_control"; - pixel_x = 26; - pixel_y = -26; - req_one_access = list(48); - tag_exterior_door = "mining1_airlock_exterior"; - tag_interior_door = "mining1_airlock_interior" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"nX" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "mining1_airlock_control"; - name = "Internal Access Button"; - pixel_x = 5; - pixel_y = -26; - req_one_access = list(48) - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "mining1_airlock_interior"; - locked = 1; - name = "Mining Outpost Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/mining_main/storage) -"nY" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"nZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"oa" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "mining1_airlock_control"; - name = "External Access Button"; - pixel_y = -26; - req_one_access = list(48) - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "mining1_airlock_exterior"; - locked = 1; - name = "Mining Outpost External" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/mining_main/storage) -"ob" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main1_airlock_exterior"; - locked = 1; - name = "Main Outpost External" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "main1_airlock_control"; - name = "External Access Button"; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/right_two) -"oc" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"od" = ( -/obj/structure/table/glass, -/obj/item/device/paicard, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"oe" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"of" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "main1_airlock_control"; - name = "Internal Access Button"; - pixel_x = -6; - pixel_y = -26 - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main1_airlock_interior"; - locked = 1; - name = "Main Outpost Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/right_two) -"og" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "main1_airlock_control"; - pixel_x = -26; - pixel_y = -26; - tag_exterior_door = "main1_airlock_exterior"; - tag_interior_door = "main1_airlock_interior" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"oh" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"oi" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"ol" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"om" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_external/public{ - name = "Airlock Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/airlock/right_two) -"on" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/white/bordercorner, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"oo" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Hallway 6"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"oq" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"or" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"os" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"ot" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/white/bordercorner2, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"ou" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = -26 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"ov" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"ow" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"ox" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"oy" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"oC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/plaque, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/corridor/right_upper) -"oD" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/white/bordercorner, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"oF" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"oH" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"oI" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Hallway 5"; - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"oJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_external/public{ - name = "Airlock Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/airlock/right_three) -"oK" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"oL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"oM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"oN" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "main5_airlock_control"; - pixel_x = 26; - pixel_y = -26; - tag_exterior_door = "main5_airlock_exterior"; - tag_interior_door = "main5_airlock_interior" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"oO" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "main5_airlock_control"; - name = "Internal Access Button"; - pixel_x = 5; - pixel_y = -26 - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main5_airlock_interior"; - locked = 1; - name = "Main Outpost Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/right_three) -"oP" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"oQ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"oR" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main5_airlock_exterior"; - locked = 1; - name = "Main Outpost External" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "main5_airlock_control"; - name = "External Access Button"; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/right_three) -"oS" = ( -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/right_three) -"oT" = ( -/obj/machinery/door/airlock/hatch{ - icon_state = "door_locked"; - id_tag = "engine_access_hatch"; - locked = 1; - name = "Reactor Core"; - rad_resistance = 150; - req_access = list(11) - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/engineering/reactor_smes) -"oU" = ( -/obj/effect/wingrille_spawn/reinforced_phoron, -/obj/machinery/door/blast/radproof{ - dir = 4; - id = "EngineReactor"; - rad_resistance = 150 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/engineering/reactor_smes) -"oV" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"oW" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall/r_wall{ - cached_rad_resistance = 150 - }, -/area/surface/outpost/engineering/reactor_smes) -"oY" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Outpost SMES Room"; - req_one_access = list(11) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/surface/outpost/engineering/reactor_smes) -"oZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/atmos_room) -"pa" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/atmos_room) -"pb" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/stack/material/lead{ - amount = 30 - }, -/obj/fiftyspawner/plastic, -/obj/fiftyspawner/plasteel, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/item/stack/material/copper{ - amount = 25 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"pc" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/normal) -"pd" = ( -/obj/structure/table/rack/shelf/steel, -/obj/fiftyspawner/phoronglass, -/obj/fiftyspawner/rglass, -/obj/fiftyspawner/rods, -/obj/fiftyspawner/steel, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Mining Outpost Power 1"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"pe" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"pf" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/structure/disposalpipe/segment, -/obj/random/powercell, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"pg" = ( -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/smes/buildable/outpost_substation{ - RCon_tag = "Outpost - Mining"; - charge = 5e+006; - input_attempt = 1; - input_level = 150000; - output_level = 150000 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"ph" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/closet/toolcloset, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"pi" = ( -/obj/structure/table/steel, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = -22 - }, -/obj/structure/cable/blue, -/obj/item/weapon/storage/toolbox/electrical, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"pj" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/tools) -"pk" = ( -/obj/structure/table/steel, -/obj/random/tool, -/obj/random/tool, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"pl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"pm" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"pn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Tool Storage"; - req_one_access = list(48) - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main/tools) -"po" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"pp" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"pr" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"ps" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"pt" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/security) -"pu" = ( -/turf/simulated/shuttle/wall/voidcraft, -/area/surface/outside/plains/mountains) -"pw" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"px" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"py" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"pz" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/storage) -"pA" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/mining_main/storage) -"pB" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/right_two) -"pC" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_two) -"pD" = ( -/turf/simulated/wall, -/area/surface/outpost/main/exploration) -"pE" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/exploration) -"pF" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Exploration Prep"; - req_access = null; - req_one_access = list(43,67) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/machinery/door/firedoor/multi_tile/glass, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/exploration) -"pG" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/exploration) -"pH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"pI" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"pJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"pK" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/white/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"pL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 6 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"pM" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"pN" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/table/glass, -/obj/machinery/light, -/obj/item/device/communicator, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"pO" = ( -/obj/item/weapon/banner/nt, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall) -"pP" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"pQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"pR" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/teleporter) -"pS" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_three) -"pT" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/right_three) -"pU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"pV" = ( -/obj/machinery/fusion_fuel_injector/mapped{ - dir = 1; - id_tag = "Reactor Fuel Injectors" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"pW" = ( -/obj/machinery/power/emitter/gyrotron/anchored{ - dir = 1; - id = "Reactor Gyrotron"; - id_tag = "Reactor Gyrotron" - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"pX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"pY" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"qa" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"qb" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/reactor_smes) -"qc" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Outpost Parallel - Main 2"; - charge = 2e+007; - cur_coils = 4; - input_attempt = 1; - input_level = 750000; - output_level = 100 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"qd" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/heavyduty{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"qe" = ( -/obj/structure/table/steel, -/obj/item/weapon/tool/wrench, -/obj/item/weapon/tool/crowbar, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 10 - }, -/obj/machinery/light, -/obj/machinery/camera/network/mining{ - c_tag = "PO - Tool Storage"; - dir = 4 - }, -/obj/item/device/multitool, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"qf" = ( -/obj/machinery/washing_machine, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"qg" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "mining2_airlock_control"; - pixel_x = -26; - pixel_y = -26; - req_one_access = list(48,10); - tag_exterior_door = "mining2_airlock_exterior"; - tag_interior_door = "mining2_airlock_interior" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"qh" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 8 - }, -/obj/machinery/camera/network/mining{ - c_tag = "PO - Mining Hallway 2"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"qi" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"qj" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"qk" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"ql" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"qm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 10 - }, -/obj/structure/table/rack, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"qn" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"qo" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"qq" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/structure/window/basic, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/item/weapon/mining_scanner, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/head/helmet/space/void/mining, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"qr" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/structure/window/basic, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/item/weapon/mining_scanner, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/head/helmet/space/void/mining, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"qs" = ( -/obj/structure/table/rack, -/obj/item/weapon/shovel, -/obj/item/weapon/tool/wrench, -/obj/item/weapon/pickaxe, -/obj/item/weapon/tool/crowbar, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 6 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"qt" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"qu" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"qv" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"qw" = ( -/obj/item/weapon/banner/virgov, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall) -"qx" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"qy" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"qz" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"qA" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"qC" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"qD" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"qE" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/exploration) -"qF" = ( -/obj/structure/closet/secure_closet/explorer, -/obj/item/weapon/pickaxe, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/device/cataloguer, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"qG" = ( -/obj/structure/table/bench/standard, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"qH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 9 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"qI" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"qJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"qK" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"qL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"qM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"qO" = ( -/obj/machinery/mineral/equipment_vendor/survey, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"qP" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = newlist(); - req_one_access = list(43,67) - }, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/item/weapon/gun/energy/locked/frontier, -/obj/item/weapon/gun/energy/locked/frontier, -/obj/item/weapon/gun/energy/locked/frontier, -/obj/item/weapon/gun/energy/locked/frontier, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"qQ" = ( -/obj/structure/closet/secure_closet/guncabinet/phase{ - name = "phase weapon cabinet"; - req_access = newlist(); - req_one_access = list(43,67) - }, -/obj/item/clothing/accessory/holster/hip, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Exploration Prep"; - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"qR" = ( -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/structure/flora/pottedplant, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"qS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"qT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"qU" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"qV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"qW" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/corridor/right_upper) -"qY" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 9 - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/obj/item/weapon/storage/toolbox/mechanical, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/teleporter) -"qZ" = ( -/obj/structure/table/standard, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/random_multi/single_item/hand_tele, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/teleporter) -"rb" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/tcomm) -"rc" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/sauna) -"rd" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera/network/telecom{ - c_tag = "Tcoms - Main Outpost"; - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/surface/outpost/main/tcomm) -"re" = ( -/obj/machinery/telecomms/relay/preset/southerncross/planet, -/turf/simulated/floor/tiled/techmaint, -/area/surface/outpost/main/tcomm) -"rf" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -21; - pixel_y = -11 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"rg" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"rh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"ri" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"rj" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"rk" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"rl" = ( -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"rm" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"rn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/visible/supply, -/obj/machinery/atmospherics/pipe/manifold4w/visible/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"ro" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Outpost SMES Room"; - req_one_access = list(11) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/surface/outpost/engineering/reactor_smes) -"rp" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/reactor_smes) -"rq" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - dir = 4; - icon_state = "2-4" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/item/clothing/gloves/yellow, -/obj/item/device/multitool{ - pixel_x = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/reactor_smes) -"rr" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/heavyduty{ - d2 = 2; - dir = 4; - icon_state = "0-4" - }, -/obj/effect/wingrille_spawn/reinforced_phoron, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"rs" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/engineering/atmos_room) -"rt" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/engineering/atmos_room) -"rv" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/engineering/atmos_room) -"rw" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/water/pool, -/area/surface/outpost/civilian/pool) -"rx" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "mining2_airlock_control"; - name = "Internal Access Button"; - pixel_x = -26; - pixel_y = -6; - req_one_access = list(48,10) - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "mining2_airlock_interior"; - locked = 1; - name = "Mining Outpost Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/mining_main/tools) -"ry" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"rz" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/indalsalven) -"rA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"rB" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"rC" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"rD" = ( -/obj/structure/closet/secure_closet/explorer, -/obj/item/clothing/mask/gas/half, -/obj/item/device/cataloguer, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"rE" = ( -/obj/structure/table/bench/standard, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"rF" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"rG" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/start{ - name = "Explorer" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"rH" = ( -/obj/structure/bed/chair, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/landmark/start{ - name = "Explorer" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"rI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"rJ" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"rK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"rL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"rM" = ( -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/structure/bed/chair, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"rN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"rO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"rP" = ( -/obj/machinery/vending/cola{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"rQ" = ( -/obj/machinery/computer/teleporter{ - dir = 2 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/surface/outpost/main/teleporter) -"rR" = ( -/obj/machinery/teleport/station, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/surface/outpost/main/teleporter) -"rS" = ( -/obj/machinery/teleport/hub, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/surface/outpost/main/teleporter) -"rT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/teleporter) -"rU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/teleporter) -"rV" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/highsecurity{ - name = "Telecommunication Hub"; - req_one_access = list(61) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/tcomm) -"rW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/surface/outpost/main/tcomm) -"rX" = ( -/obj/machinery/telecomms/relay/preset/southerncross/cave, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/surface/outpost/main/tcomm) -"rY" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "ENG - Outpost Reactor Room South"; - dir = 4; - name = "Reactor_Room"; - network = list("Engine") - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"rZ" = ( -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"sa" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"sb" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"sc" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/camera/emp_proof{ - c_tag = "ENG - Outpost SMES Room"; - dir = 10; - name = "Engineering_Outpost"; - network = list("Engineering") - }, -/obj/machinery/light_switch{ - pixel_x = -21; - pixel_y = -11 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/reactor_smes) -"sd" = ( -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Outpost Parallel - Main 1"; - charge = 2e+007; - cur_coils = 4; - input_attempt = 1; - input_level = 750000; - output_level = 750000 - }, -/obj/structure/cable, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"se" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/tools) -"sf" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"sg" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"sh" = ( -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main/tools) -"si" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/tools) -"sk" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"sl" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"sm" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"sn" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/landing_north) -"so" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/landing_north) -"sp" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/landing_north) -"sq" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/overlay/snow/floor/edges, -/obj/effect/overlay/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"sr" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"ss" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"st" = ( -/obj/structure/closet/secure_closet/explorer, -/obj/item/clothing/accessory/holster/hip, -/obj/item/device/cataloguer, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"su" = ( -/obj/structure/table/bench/wooden, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"sv" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"sw" = ( -/obj/structure/table/steel, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/recharger, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"sx" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/surface/outside/plains/normal; - base_turf = /turf/simulated/floor/outdoors/grass/sif/planetuse; - landmark_tag = "outpost_s"; - name = "South of Outpost" - }, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/plains/normal) -"sy" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"sz" = ( -/obj/effect/landmark/start{ - name = "Explorer" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"sA" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"sB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"sE" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/rocks/sif/planetuse, -/area/surface/outside/plains/normal) -"sF" = ( -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/structure/table/glass, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"sG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"sH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"sI" = ( -/obj/machinery/vending/snack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"sJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/teleporter) -"sK" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/porta_turret/industrial/teleport_defense, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/teleporter) -"sL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/teleporter) -"sM" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall) -"sP" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/teleporter) -"sQ" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/orange{ - dir = 9 - }, -/obj/effect/floor_decal/corner/orange{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"sR" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/teleporter) -"sS" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/tcomm) -"sT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/surface/outpost/main/tcomm) -"sU" = ( -/turf/simulated/floor/tiled/techmaint, -/area/surface/outpost/main/tcomm) -"sV" = ( -/obj/effect/wingrille_spawn/reinforced_phoron, -/obj/machinery/door/blast/radproof{ - rad_resistance = 150 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"sW" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Reactor Room Internal Access"; - req_one_access = list(11) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/surface/outpost/engineering/reactor_smes) -"sX" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"sY" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"sZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/obj/machinery/camera/network/mining{ - c_tag = "PO - Airlock Access 2"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"ta" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"tb" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/landing_north) -"tc" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main4_airlock_exterior"; - locked = 1; - name = "Landing North External" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/landing_north) -"td" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "main4_airlock_control"; - name = "External Access Button" - }, -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/landing_north) -"te" = ( -/obj/structure/catwalk, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/security/smes) -"tf" = ( -/obj/machinery/vending/fishing{ - dir = 8 - }, -/obj/effect/floor_decal/corner/orange{ - dir = 6 - }, -/obj/effect/floor_decal/corner/orange{ - dir = 9 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"tg" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/exploration) -"th" = ( -/obj/structure/closet/secure_closet/explorer, -/obj/item/device/binoculars, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/item/device/cataloguer, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"ti" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/backup_kit{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/weapon/storage/box/cdeathalarm_kit, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"tj" = ( -/obj/structure/table/steel, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"tk" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"tl" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/purple/bordercorner, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"tm" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/purple/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"tn" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"to" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"tp" = ( -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"tq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"tr" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"ts" = ( -/obj/machinery/vending/coffee{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"tu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/teleporter) -"tv" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/teleporter) -"tw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/device/radio/beacon, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/teleporter) -"tx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/teleporter) -"ty" = ( -/obj/structure/dispenser{ - phorontanks = 0 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/teleporter) -"tz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"tA" = ( -/obj/machinery/computer/gyrotron_control{ - id_tag = "Reactor Gyrotron" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 9 - }, -/obj/machinery/button/remote/blast_door/radproof{ - id = "EngineReactor"; - name = "Reactor Blast Doors"; - pixel_x = -25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/reactor_smes) -"tB" = ( -/obj/machinery/computer/fusion_fuel_control{ - id_tag = "Reactor Fuel Injectors" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/reactor_smes) -"tC" = ( -/obj/machinery/computer/fusion_core_control{ - id_tag = "Outpost Fusion Core" - }, -/obj/machinery/camera/emp_proof{ - c_tag = "ENG - Outpost Reactor Monitoring"; - name = "Engineering_Outpost"; - network = list("Engineering") - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/reactor_smes) -"tD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/machinery/computer/general_air_control/supermatter_core{ - input_tag = "rust_cooling_in"; - name = "Engine Cooling Control"; - output_tag = "rust_cooling_out"; - sensors = list("rustengine_sensor" = "Engine Temperature") - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/reactor_smes) -"tE" = ( -/obj/machinery/button/remote/blast_door/radproof{ - name = "Engine Monitoring Room Blast Doors"; - pixel_x = 23 - }, -/obj/machinery/computer/security/engineering, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/reactor_smes) -"tG" = ( -/turf/simulated/wall/r_wall{ - cached_rad_resistance = 150 - }, -/area/surface/outpost/engineering/monitoring) -"tH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/monitoring) -"tK" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/monitoring) -"tL" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"tM" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "mining2_airlock_exterior"; - locked = 1; - name = "Mining Outpost External" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "mining2_airlock_control"; - name = "External Access Button"; - pixel_x = -26; - req_one_access = list(48,10) - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/mining_main/tools) -"tN" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/tools) -"tO" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/landing_north) -"tP" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"tQ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 10 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Landing North Airlock Access" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"tR" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/landing_north) -"tS" = ( -/obj/structure/closet/lasertag/blue, -/obj/item/stack/flag/blue, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"tT" = ( -/obj/structure/table/steel, -/obj/structure/closet/hydrant{ - pixel_y = -32 - }, -/obj/item/clothing/glasses/meson, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = -10 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"tU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"tV" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"tX" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"tY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"tZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"ua" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"ub" = ( -/obj/structure/table/rack/shelf, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/item/weapon/tank/oxygen{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/item/weapon/tank/oxygen{ - pixel_x = 1; - pixel_y = -5 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"uc" = ( -/obj/structure/table/rack/shelf, -/obj/item/weapon/storage/backpack/parachute{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/weapon/storage/backpack/parachute{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/weapon/storage/backpack/parachute{ - pixel_x = -6; - pixel_y = -6 - }, -/obj/item/weapon/storage/backpack/parachute{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"ud" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"ue" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"uf" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"ug" = ( -/obj/machinery/vending/nifsoft_shop{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"uh" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 10 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Teleporter"; - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/teleporter) -"ui" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 9 - }, -/obj/machinery/suit_storage_unit/standard_unit, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/teleporter) -"uj" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/teleporter) -"uk" = ( -/obj/structure/fence/end{ - dir = 1 - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/outpost) -"ul" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced_phoron, -/obj/machinery/door/blast/radproof{ - dir = 4; - rad_resistance = 150 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/monitoring) -"um" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"un" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"uo" = ( -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/plains/normal) -"up" = ( -/obj/structure/table/rack, -/obj/item/weapon/material/fishing_rod/modern/cheap, -/obj/item/weapon/material/fishing_rod/modern/cheap, -/obj/item/weapon/material/fishing_rod/modern/cheap, -/obj/item/weapon/material/fishing_rod/modern/cheap, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"uq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"ur" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"us" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"ut" = ( -/obj/effect/wingrille_spawn/reinforced_phoron, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/radproof{ - dir = 4; - rad_resistance = 150 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/monitoring) -"uu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/monitoring) -"uv" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/camera/emp_proof{ - c_tag = "ENG - Outpost Reactor Room Access"; - dir = 10; - name = "Engineering_Outpost"; - network = list("Engineering") - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/monitoring) -"uw" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"ux" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"uy" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/mining_main/tools) -"uz" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/mining_main/tools) -"uA" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/mining_main/tools) -"uB" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"uC" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central6, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/airlock/landing_north) -"uD" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"uE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 10 - }, -/obj/machinery/light, -/obj/structure/closet/secure_closet/pilot, -/obj/item/device/cataloguer/compact, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"uF" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/purple/border, -/obj/structure/closet/secure_closet/pilot, -/obj/item/device/cataloguer/compact, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"uG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 6 - }, -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"uH" = ( -/turf/simulated/wall, -/area/surface/outpost/main/gen_room/smes_right) -"uI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"uJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"uK" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/highsecurity{ - name = "Teleporter Access"; - req_access = newlist(); - req_one_access = list(17) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/teleporter) -"uL" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/machinery/lapvend, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"uO" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall/r_wall{ - cached_rad_resistance = 150 - }, -/area/surface/outpost/engineering/monitoring) -"uP" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/machinery/light, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"uQ" = ( -/obj/machinery/computer/timeclock/premade/east, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"uR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/microwave{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"uS" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/steel_reinforced, -/obj/item/weapon/storage/box/donkpockets, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"uT" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/light_switch{ - pixel_x = -21; - pixel_y = -21 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"uU" = ( -/obj/machinery/light, -/obj/item/weapon/book/manual/rust_engine, -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"uV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"uW" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Reactor Room External Access"; - req_one_access = list(11) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/surface/outpost/engineering/monitoring) -"uX" = ( -/obj/structure/sign/warning/radioactive, -/turf/simulated/wall/r_wall{ - cached_rad_resistance = 150 - }, -/area/surface/outpost/engineering/monitoring) -"uY" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/engineering/monitoring) -"va" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/monitoring) -"vb" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/engineering/monitoring) -"vc" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/obj/structure/catwalk, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/path/plains) -"vd" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"ve" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"vf" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"vg" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/light, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/airlock/landing_north) -"vh" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"vi" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/main/exploration) -"vj" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/gen_room/smes_right) -"vl" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/random/powercell, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "SUBS - Right Wing"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_right) -"vm" = ( -/obj/structure/table/steel, -/obj/random/junk, -/obj/random/action_figure, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_right) -"vn" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_right) -"vo" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 10 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Hallway 3"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"vp" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"vq" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"vr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/hidden{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"vs" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"vt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"vu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/symbol/da{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"vv" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"vw" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 4 - }, -/obj/machinery/turretid/stun{ - check_records = 0; - control_area = "\improper Main Outpost Teleporter"; - name = "Main Outpost Teleporter turret control"; - pixel_y = 24; - req_access = list(19) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"vx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"vy" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"vz" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor/right_upper) -"vA" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/glass_engineering{ - name = "Reactor Monitoring Room" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/engineering/monitoring) -"vB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"vC" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"vD" = ( -/obj/structure/closet/radiation, -/obj/item/clothing/head/radiation, -/obj/item/clothing/head/radiation, -/obj/item/clothing/suit/radiation, -/obj/item/clothing/suit/radiation, -/obj/item/device/geiger, -/obj/item/device/geiger, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"vE" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"vF" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/machinery/camera/emp_proof{ - c_tag = "ENG - Outpost Airlock"; - dir = 9; - name = "Engineering_Outpost"; - network = list("Engineering") - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"vG" = ( -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/engineering/monitoring) -"vH" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main4_airlock_interior"; - locked = 1; - name = "Landing North Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/landing_north) -"vI" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "main4_airlock_control"; - pixel_x = -5; - tag_exterior_door = "main4_airlock_exterior"; - tag_interior_door = "main4_airlock_interior" - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "main4_airlock_control"; - name = "Internal Access Button"; - pixel_x = 5 - }, -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/landing_north) -"vJ" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/overlay/snow/floor/edges, -/obj/effect/zone_divider, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"vK" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/gen_room/smes_right) -"vL" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_right) -"vM" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"vN" = ( -/obj/structure/catwalk, -/obj/machinery/power/terminal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_right) -"vO" = ( -/obj/structure/catwalk, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_right) -"vP" = ( -/obj/structure/catwalk, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_right) -"vQ" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"vR" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering{ - name = "SMES Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/gen_room/smes_right) -"vS" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"vT" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"vU" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/white/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"vV" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/door/firedoor/glass/hidden{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"vW" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"vX" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"vY" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/white/bordercorner2, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"vZ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Hallway 4"; - dir = 1; - name = "MO Right Wing - Hallway Three" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"wa" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"wb" = ( -/obj/structure/closet/radiation, -/obj/item/clothing/head/radiation, -/obj/item/clothing/head/radiation, -/obj/item/clothing/suit/radiation, -/obj/item/clothing/suit/radiation, -/obj/item/device/geiger, -/obj/item/device/geiger, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"wc" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"wd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"we" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"wf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"wg" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"wh" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/corner/orange{ - dir = 9 - }, -/obj/effect/floor_decal/corner/orange{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"wj" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "ENG_Outpost_airlock_control"; - pixel_x = 26; - pixel_y = 26; - tag_exterior_door = "ENG_Outpost_airlock_exterior"; - tag_interior_door = "ENG_Outpost_airlock_interior" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"wl" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "ENG_Outpost_airlock_control"; - name = "Internal Access Button"; - pixel_x = 5; - pixel_y = 26; - req_one_access = list(10) - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "ENG_Outpost_airlock_interior"; - locked = 1; - name = "Engineering Outpost Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/engineering/monitoring) -"wm" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"wn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"wo" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "ENG_Outpost_airlock_control"; - name = "External Access Button"; - pixel_y = 26; - req_one_access = list(10) - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "ENG_Outpost_airlock_exterior"; - locked = 1; - name = "Engineering Outpost External" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/engineering/monitoring) -"wp" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_north) -"wq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"wr" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"wt" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"wu" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"wv" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"ww" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"wx" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/item/weapon/tool/crowbar/red, -/obj/item/device/flashlight, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Landing North Airlock" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_north) -"wy" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/gen_room/smes_right) -"wz" = ( -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/smes/buildable/outpost_substation{ - RCon_tag = "Outpost - Right Wing"; - charge = 5e+006; - input_attempt = 1; - input_level = 150000; - output_level = 150000 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_right) -"wB" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_right) -"wC" = ( -/obj/structure/table/steel, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/weapon/storage/toolbox/electrical, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_right) -"wD" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall, -/area/surface/outpost/main/gen_room/smes_right) -"wE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"wF" = ( -/turf/simulated/wall, -/area/surface/outpost/main/emergency_storage/one) -"wH" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Emergency Storage" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/emergency_storage/one) -"wK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"wL" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/engineering/smes) -"wM" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Outpost Substation"; - req_access = list(11) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/engineering/smes) -"wN" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall/r_wall, -/area/surface/outpost/engineering/smes) -"wO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/closet/toolcloset, -/obj/item/weapon/storage/belt, -/obj/item/weapon/storage/belt, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"wP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"wQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/steel_reinforced, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/effect/floor_decal/borderfloor/corner, -/obj/item/weapon/extinguisher/mini, -/obj/effect/floor_decal/corner/yellow/bordercorner, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"wR" = ( -/obj/structure/catwalk, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/security/smes) -"wS" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"wT" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/engineering/monitoring) -"wU" = ( -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"wW" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/shoes/boots/winter, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_north) -"wX" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"wY" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"wZ" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"xa" = ( -/turf/simulated/mineral/sif, -/area/surface/outside/plains/mountains) -"xb" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"xc" = ( -/obj/structure/table/rack, -/obj/item/stack/cable_coil/silver, -/obj/item/stack/cable_coil/silver, -/obj/item/stack/cable_coil/silver, -/obj/item/stack/cable_coil/silver, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/orange/border, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"xd" = ( -/obj/structure/table/standard, -/obj/item/stack/material/steel{ - amount = 10 - }, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"xe" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/shoes/boots/winter, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_north) -"xf" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/gen_room/smes_right) -"xg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass/hidden, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"xh" = ( -/obj/machinery/door/firedoor/glass/hidden{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"xi" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"xj" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/surface/outpost/main/emergency_storage/one) -"xk" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/emergency_storage/one) -"xl" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/emergency_storage/one) -"xo" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"xp" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/table/glass, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/item/weapon/material/ashtray/plastic, -/obj/random/cigarettes, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"xq" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/machinery/vending/cigarette{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"xr" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/catwalk, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/camera/emp_proof{ - c_tag = "SUBS - Eng Outpost"; - dir = 4; - name = "Engineering_Outpost"; - network = list("Engineering Outpost") - }, -/obj/machinery/light_switch{ - pixel_x = -11; - pixel_y = 21 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/smes) -"xs" = ( -/obj/structure/catwalk, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/smes) -"xt" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/closet/secure_closet/engineering_welding, -/obj/random/maintenance/engineering, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"xu" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/random/maintenance/engineering, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"xv" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/monitoring) -"xw" = ( -/obj/structure/snowman/borg, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"xx" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "sauna_tint2" - }, -/obj/structure/window/reinforced/polarized{ - id = "sauna_tint2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/sauna) -"xz" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/window/basic, -/obj/item/clothing/mask/gas, -/obj/item/clothing/shoes/boots/winter, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_north) -"xA" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/fishing) -"xC" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"xD" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"xF" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/structure/window/basic, -/obj/item/clothing/mask/gas, -/obj/item/clothing/shoes/boots/winter, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_north) -"xG" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/showers) -"xH" = ( -/obj/machinery/computer/secure_data, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"xI" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - dir = 4; - pixel_x = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"xJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"xK" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/water, -/area/surface/outside/river/indalsalven) -"xL" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - dir = 8; - pixel_x = -5 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"xM" = ( -/turf/simulated/wall, -/area/surface/outpost/main/showers) -"xN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"xO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"xP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"xQ" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/lights/mixed, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/surface/outpost/main/emergency_storage/one) -"xR" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/emergency_storage/one) -"xS" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/surface/outpost/main/emergency_storage/one) -"xT" = ( -/turf/simulated/wall, -/area/surface/outpost/main/gym) -"xU" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/gym) -"xV" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/random/powercell, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/smes) -"xW" = ( -/obj/machinery/power/smes/buildable/outpost_substation{ - RCon_tag = "Outpost - Engineering Outpost"; - charge = 5e+006; - input_attempt = 1; - input_level = 150000; - output_level = 150000 - }, -/obj/structure/cable/blue, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/smes) -"xX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/machinery/light{ - dir = 8 - }, -/obj/random/maintenance/engineering, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"xY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/camera/emp_proof{ - c_tag = "ENG - Outpost Foyeur"; - dir = 10; - name = "Engineering Outpost"; - network = list("Engineering") - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/machinery/light_switch{ - pixel_x = -21; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"xZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/closet/secure_closet/engineering_personal, -/obj/machinery/light{ - dir = 4 - }, -/obj/random/maintenance/engineering, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"ya" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"yb" = ( -/obj/structure/table/bench/wooden, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"yc" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/left_one) -"yd" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/left_one) -"ye" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"yf" = ( -/obj/structure/snowman/spider, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"yg" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_north) -"yh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"yi" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"yj" = ( -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"yk" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"yl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"ym" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/weapon/melee/umbrella{ - color = "#7c0d0d" - }, -/obj/item/weapon/melee/umbrella{ - color = "#7c0d0d" - }, -/obj/item/weapon/melee/umbrella{ - color = "#7c0d0d" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_north) -"yn" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"yo" = ( -/obj/item/weapon/bikehorn/rubberducky, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"yp" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"yq" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Showers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/showers) -"yr" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"ys" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"yt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/computer/timeclock/premade/east, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"yu" = ( -/obj/structure/boxingrope{ - dir = 1 - }, -/obj/structure/boxingrope{ - dir = 8 - }, -/obj/structure/boxingrope{ - dir = 9 - }, -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"yv" = ( -/obj/structure/boxingrope{ - dir = 1 - }, -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"yw" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/boxingrope{ - dir = 1 - }, -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"yx" = ( -/obj/structure/boxingrope{ - dir = 1 - }, -/obj/structure/boxingrope{ - dir = 4 - }, -/obj/structure/boxingrope{ - dir = 6 - }, -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"yy" = ( -/obj/item/weapon/banner/nt, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/plains/normal) -"yz" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/heavyduty{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/smes) -"yA" = ( -/obj/structure/sign/warning/radioactive, -/turf/simulated/wall/r_wall, -/area/surface/outpost/engineering/monitoring) -"yB" = ( -/turf/simulated/floor/outdoors/snow, -/area/surface/outside/plains/outpost) -"yD" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/left_one) -"yE" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/left_one) -"yF" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main6_airlock_exterior"; - locked = 1; - name = "Main Outpost External" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "main6_airlock_control"; - name = "External Access Button"; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/left_one) -"yG" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"yH" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/landing_north) -"yI" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall) -"yJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external/public{ - name = "Airlock Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/airlock/landing_north) -"yK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external/public{ - name = "Airlock Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/airlock/landing_north) -"yL" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/plains/normal) -"yM" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"yN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"yO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"yP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"yQ" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/regular, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"yS" = ( -/obj/structure/table/standard, -/obj/machinery/recharger, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"yT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"yU" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"yV" = ( -/obj/item/weapon/stool/padded, -/obj/structure/boxingrope{ - dir = 8 - }, -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"yW" = ( -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"yX" = ( -/obj/structure/boxingrope{ - dir = 4 - }, -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"yY" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/engineering/smes) -"yZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"za" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/engineering/smes) -"zb" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"zc" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/left_one) -"zd" = ( -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"zf" = ( -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Airlock Access 1" - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"zg" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"zh" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/left_one) -"zi" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/corridor) -"zj" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/vending/giftvendor, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"zk" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"zm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"zn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Central Hall" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"zo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"zp" = ( -/turf/simulated/shuttle/wall/voidcraft, -/area/surface/outside/lake/romsele) -"zq" = ( -/obj/machinery/alarm{ - dir = 8; - frequency = 1441; - pixel_x = 22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"zr" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Showers" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/showers) -"zs" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"zt" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"zu" = ( -/obj/effect/landmark/event_spawn/dronepod_landing, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/plains/normal) -"zv" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"zw" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/gym) -"zx" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water, -/area/surface/outside/river/faxalven) -"zy" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"zz" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"zA" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"zB" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/railing, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"zC" = ( -/obj/structure/boxingrope{ - dir = 8 - }, -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"zD" = ( -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/airlock/left_one) -"zF" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"zH" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"zI" = ( -/obj/structure/table/bench/steel, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/path/plains) -"zJ" = ( -/obj/structure/table/steel, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/path/plains) -"zK" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"zL" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"zM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"zN" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"zO" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"zP" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"zQ" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/vending/wallmed1{ - name = "Emergency NanoMed"; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"zR" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/turf/simulated/floor/water/deep/pool, -/area/surface/outpost/civilian/pool) -"zS" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/landing_south) -"zT" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"zU" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/security) -"zV" = ( -/obj/structure/table/standard, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/random/soap, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"zW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"zX" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"zY" = ( -/obj/structure/fence/corner{ - dir = 10 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"zZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Aa" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Gym" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/gym) -"Ab" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"Ac" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"Ad" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"Ae" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"Af" = ( -/obj/effect/floor_decal/stairs{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/gym) -"Ag" = ( -/turf/simulated/wall, -/area/surface/outside/path/plains) -"Ah" = ( -/obj/structure/boxingropeenter{ - dir = 8 - }, -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"Ai" = ( -/obj/item/weapon/stool/padded, -/obj/structure/boxingrope{ - dir = 4 - }, -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"Aj" = ( -/obj/structure/sign/warning/caution{ - desc = "This appears to be a sign warning people that the other side is dangerous. It also says that NanoTrasen cannot guarantee your safety beyond this point."; - name = "\improper WARNING: NO ACCESS" - }, -/turf/simulated/shuttle/wall/voidcraft/hard_corner, -/area/surface/outpost/wall) -"Ak" = ( -/obj/structure/fence/cut/medium, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"Al" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/left_one) -"Am" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water, -/area/surface/outside/river/indalsalven) -"An" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"Ap" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "main6_airlock_control"; - name = "Internal Access Button"; - pixel_x = 26; - pixel_y = 5 - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main6_airlock_interior"; - locked = 1; - name = "Main Outpost Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/left_one) -"Ar" = ( -/obj/structure/snowman{ - name = "Frosty" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"As" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor) -"Au" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Av" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Aw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Ax" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor) -"Ay" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor) -"Az" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"AA" = ( -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"AB" = ( -/obj/structure/table/bench/marble, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"AC" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"AD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Hallway 2"; - dir = 4; - name = "security camera" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"AF" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"AG" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gym) -"AH" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"AI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"AJ" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"AK" = ( -/obj/machinery/vending/fitness{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"AL" = ( -/obj/structure/boxingrope{ - dir = 8 - }, -/obj/structure/boxingrope, -/obj/structure/boxingrope{ - dir = 9; - layer = 4.1 - }, -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"AM" = ( -/obj/structure/boxingrope{ - layer = 4.1 - }, -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"AN" = ( -/obj/structure/boxingrope{ - dir = 4 - }, -/obj/structure/boxingrope, -/obj/structure/boxingrope{ - dir = 6; - layer = 4.1 - }, -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"AO" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/tool/crowbar/red, -/obj/item/device/flashlight, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/left_one) -"AP" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"AQ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "main6_airlock_control"; - pixel_x = 26; - pixel_y = 26; - tag_exterior_door = "main6_airlock_exterior"; - tag_interior_door = "main6_airlock_interior" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"AR" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"AS" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor) -"AT" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"AU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"AV" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"AW" = ( -/obj/machinery/light, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall) -"AX" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"AY" = ( -/obj/structure/table/bench/marble, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"AZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"Ba" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"Bc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Bd" = ( -/obj/structure/railing, -/turf/simulated/floor/water, -/area/surface/outside/river/indalsalven) -"Be" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Bf" = ( -/obj/structure/flora/pottedplant/stoutbush, -/obj/machinery/camera/network/security{ - c_tag = "SO - Security Checkpoint"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"Bg" = ( -/obj/structure/table/bench/steel, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"Bh" = ( -/obj/effect/floor_decal/borderfloor/corner, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"Bj" = ( -/obj/effect/floor_decal/borderfloor, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"Bk" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"Bl" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/black{ - dir = 5 - }, -/obj/structure/reagent_dispensers/water_cooler/full, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"Bn" = ( -/obj/effect/floor_decal/borderfloor, -/obj/structure/table/standard, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/gloves/boxing, -/obj/effect/floor_decal/corner/black{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"Bo" = ( -/obj/effect/floor_decal/borderfloor, -/obj/structure/table/standard, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/gloves/boxing/blue, -/obj/effect/floor_decal/corner/black{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"Bp" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/fitness/punching_bag/clown, -/obj/effect/floor_decal/corner/black{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"Bq" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/fitness/punching_bag/clown, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"Br" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/left_one) -"Bs" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"Bt" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"Bu" = ( -/obj/machinery/power/port_gen/pacman, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"Bv" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Bw" = ( -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Teleporter"; - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"By" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Bz" = ( -/obj/machinery/hyperpad/centre{ - map_pad_id = "pad_1_away"; - map_pad_link_id = "pad_1_station" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"BA" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"BB" = ( -/obj/structure/table/bench/marble, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"BC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"BD" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"BE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"BF" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/holofloor/wood, -/area/surface/outpost/main/gym) -"BG" = ( -/turf/simulated/floor/holofloor/wood, -/area/surface/outpost/main/gym) -"BI" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gym) -"BJ" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/window/basic, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/left_one) -"BK" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"BM" = ( -/obj/effect/floor_decal/stairs{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/civilian/sauna) -"BN" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"BO" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"BP" = ( -/obj/structure/table/bench/standard, -/turf/simulated/floor/plating, -/area/surface/outpost/security/maa) -"BQ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"BR" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"BS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"BT" = ( -/obj/structure/closet, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"BU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"BV" = ( -/obj/structure/table/bench/marble, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"BW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"BX" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Locker Room" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/showers) -"BY" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"BZ" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/water, -/area/surface/outside/river/faxalven) -"Ca" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Cc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"Cd" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"Ce" = ( -/obj/structure/fitness/weightlifter, -/turf/simulated/floor/holofloor/wood, -/area/surface/outpost/main/gym) -"Cf" = ( -/obj/machinery/fitness/heavy/lifter, -/turf/simulated/floor/holofloor/wood, -/area/surface/outpost/main/gym) -"Cg" = ( -/obj/structure/fitness/punchingbag, -/turf/simulated/floor/holofloor/wood, -/area/surface/outpost/main/gym) -"Ch" = ( -/obj/effect/zone_divider, -/turf/simulated/shuttle/wall/voidcraft, -/area/surface/outpost/wall) -"Ci" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/dorms/dorm_5) -"Cj" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/dorms/dorm_3) -"Ck" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/dorms/dorm_1) -"Cl" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Airlock 1"; - dir = 4 - }, -/obj/item/weapon/melee/umbrella{ - color = "#7c0d0d" - }, -/obj/item/weapon/melee/umbrella{ - color = "#7c0d0d" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/left_one) -"Cm" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"Cn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"Co" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/orange/bordercorner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"Cp" = ( -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Cq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Cr" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Cs" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Ct" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Cu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Cv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Cw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Cx" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Cy" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/corridor/right_lower) -"Cz" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor/right_lower) -"CA" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"CB" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"CC" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"CD" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"CE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"CF" = ( -/obj/structure/table/standard, -/obj/item/weapon/towel{ - color = "#3fc0ea"; - name = "light blue towel"; - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/weapon/towel{ - color = "#3fc0ea"; - name = "light blue towel"; - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/weapon/towel{ - color = "#3fc0ea"; - name = "light blue towel"; - pixel_x = 2; - pixel_y = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{ - pixel_x = -4; - pixel_y = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"CG" = ( -/obj/structure/table/standard, -/obj/item/weapon/soap/nanotrasen, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_5) -"CH" = ( -/obj/structure/toilet, -/obj/structure/window/basic{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_5) -"CI" = ( -/obj/machinery/shower, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_5) -"CJ" = ( -/turf/simulated/wall, -/area/surface/outpost/main/dorms/dorm_5) -"CK" = ( -/obj/structure/table/standard, -/obj/item/weapon/soap, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_3) -"CL" = ( -/obj/structure/toilet, -/obj/structure/window/basic{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_3) -"CM" = ( -/obj/machinery/shower, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_3) -"CO" = ( -/turf/simulated/wall, -/area/surface/outpost/main/dorms/dorm_3) -"CP" = ( -/obj/structure/table/standard, -/obj/item/weapon/soap/deluxe, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_1) -"CQ" = ( -/obj/structure/toilet, -/obj/structure/window/basic{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_1) -"CR" = ( -/obj/machinery/shower, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_1) -"CS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external/public{ - name = "Airlock Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/airlock/left_one) -"CT" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor/left_lower) -"CU" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/corridor/left_lower) -"CV" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor) -"CW" = ( -/turf/simulated/wall, -/area/surface/outpost/main/corridor) -"CX" = ( -/obj/machinery/door/airlock/glass, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"CY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"CZ" = ( -/obj/machinery/door/airlock/glass, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Da" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor) -"De" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/machinery/door/firedoor/multi_tile/glass, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Df" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Dg" = ( -/obj/structure/closet/firecloset, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Dh" = ( -/obj/item/clothing/suit/caution, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"Di" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Locker Room" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/showers) -"Dj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Dk" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"Dl" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/holofloor/wood, -/area/surface/outpost/main/gym) -"Dm" = ( -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Gym"; - dir = 1 - }, -/turf/simulated/floor/holofloor/wood, -/area/surface/outpost/main/gym) -"Dn" = ( -/obj/machinery/light, -/turf/simulated/floor/holofloor/wood, -/area/surface/outpost/main/gym) -"Do" = ( -/obj/machinery/scale, -/turf/simulated/floor/holofloor/wood, -/area/surface/outpost/main/gym) -"Dp" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/indalsalven) -"Dq" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/zone_divider, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"Dr" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_5) -"Ds" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_5) -"Dt" = ( -/obj/item/weapon/towel{ - color = "#00FFFF"; - name = "cyan towel"; - pixel_x = 2; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_5) -"Du" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_3) -"Dv" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_3) -"Dw" = ( -/obj/item/weapon/towel{ - color = "#90ee90"; - name = "green towel" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_3) -"Dx" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_1) -"Dy" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_1) -"Dz" = ( -/obj/item/weapon/towel{ - color = "#FF8C00"; - name = "orange towel" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_1) -"DA" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/obj/item/device/gps/security, -/obj/item/device/gps/security, -/obj/item/device/gps/security, -/obj/item/device/gps/security, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"DB" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/indalsalven) -"DC" = ( -/turf/simulated/wall, -/area/surface/outpost/main/dorms/dorm_1) -"DD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 9 - }, -/obj/machinery/computer/timeclock/premade/north, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"DE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"DF" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"DG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"DH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"DI" = ( -/obj/structure/table/bench/wooden, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"DJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"DL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"DM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"DN" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external/public{ - name = "Outpost Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/corridor/left_lower) -"DO" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"DP" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"DR" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"DS" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"DT" = ( -/obj/machinery/atm{ - pixel_y = 30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"DU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"DV" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"DW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"DY" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/black{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"Ea" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Eb" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Ec" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/camera/network/civilian{ - c_tag = "CO - Pool 2"; - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Ed" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Ee" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Ef" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Eg" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Eh" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Ei" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 1 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Teleporter Hallway" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Ej" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Ek" = ( -/obj/machinery/atm{ - pixel_y = 30 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"El" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Em" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 1 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Ep" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external/public{ - name = "Outpost Access" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Eq" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Er" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Es" = ( -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall) -"Et" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Eu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Ev" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Ew" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/security) -"Ex" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloor, -/obj/item/weapon/material/ashtray/plastic, -/obj/machinery/recharger, -/obj/effect/floor_decal/corner/red/border, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"Ey" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/security) -"Ez" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"EA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Hallway 1" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"EB" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"EC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"ED" = ( -/turf/simulated/wall, -/area/surface/outpost/main/restroom) -"EE" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/restroom) -"EF" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"EG" = ( -/turf/simulated/wall, -/area/surface/outpost/main/bar) -"EH" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/bar) -"EI" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/obj/effect/zone_divider, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"EJ" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"EK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/dorms/dorm_5) -"EL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/dorms/dorm_3) -"EN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/dorms/dorm_1) -"EO" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"EP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"EQ" = ( -/turf/simulated/floor/water/deep, -/area/surface/outside/lake/romsele) -"ER" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"ES" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"ET" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"EU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"EV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"EW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"EX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"EY" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"EZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Fa" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor/left_lower) -"Fb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Fc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Fd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Fe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Fg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Fh" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Fi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Fj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Fk" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Fl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Fm" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"Fn" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering{ - name = "SMES Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/security/smes) -"Fo" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Fp" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Fr" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Fs" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Ft" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Fv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Fw" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Fx" = ( -/turf/simulated/wall/solidrock, -/area/surface/outpost/wall) -"Fy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Fz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"FA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"FB" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/restroom) -"FC" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/restroom) -"FD" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/restroom) -"FF" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/fishing) -"FG" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/restroom) -"FH" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_alc, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"FI" = ( -/obj/structure/table/marble, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"FJ" = ( -/obj/machinery/vending/boozeomat, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"FK" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/item/frame/extinguisher_cabinet, -/obj/item/weapon/extinguisher, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"FL" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/structure/coatrack, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_5) -"FM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/blue, -/area/surface/outpost/main/dorms/dorm_5) -"FN" = ( -/obj/machinery/atm{ - pixel_y = 30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"FO" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/bluedouble, -/turf/simulated/floor/carpet/blue, -/area/surface/outpost/main/dorms/dorm_5) -"FP" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/structure/flora/pottedplant/bamboo, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_3) -"FQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/turcarpet, -/area/surface/outpost/main/dorms/dorm_3) -"FR" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/greendouble, -/turf/simulated/floor/carpet/turcarpet, -/area/surface/outpost/main/dorms/dorm_3) -"FT" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/structure/dogbed, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_1) -"FU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/oracarpet, -/area/surface/outpost/main/dorms/dorm_1) -"FV" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/orangedouble, -/turf/simulated/floor/carpet/oracarpet, -/area/surface/outpost/main/dorms/dorm_1) -"FW" = ( -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/vending/coffee{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"FX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"FY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"FZ" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/white/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Ga" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Gb" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Gc" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Gd" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Ge" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Gg" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Gh" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Gi" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/white/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Gj" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Hallway 1"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Gl" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Gm" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/bordercorner, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Gn" = ( -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Go" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Gq" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Hallway 1"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Gr" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Gs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Gt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/white/bordercorner, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Gu" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Gv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Gw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Hallway 1"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Gx" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Gy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Gz" = ( -/obj/machinery/door/airlock/glass, -/obj/machinery/door/firedoor/border_only, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"GA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"GB" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"GC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Central Hall"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"GD" = ( -/obj/structure/table/glass, -/obj/item/clothing/shoes/swimmingfins, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"GE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"GF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"GG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"GH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"GI" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"GJ" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"GK" = ( -/obj/machinery/door/airlock/glass, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"GL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"GN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"GO" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"GP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"GR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"GS" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"GU" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"GV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Teleporter Hallway"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"GW" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"GX" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"GZ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Ha" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Hb" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Hc" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Hd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"He" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Hf" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/restroom) -"Hg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Hi" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/restroom) -"Hj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/restroom) -"Hk" = ( -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"Hl" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/zone_divider, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"Hm" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_5) -"Hn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/blue, -/area/surface/outpost/main/dorms/dorm_5) -"Ho" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green, -/obj/machinery/light_switch{ - pixel_x = 22 - }, -/turf/simulated/floor/carpet/blue, -/area/surface/outpost/main/dorms/dorm_5) -"Hp" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_3) -"Hq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/turcarpet, -/area/surface/outpost/main/dorms/dorm_3) -"Hr" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green, -/obj/machinery/light_switch{ - pixel_x = 22 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/surface/outpost/main/dorms/dorm_3) -"Hs" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_1) -"Ht" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/oracarpet, -/area/surface/outpost/main/dorms/dorm_1) -"Hu" = ( -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, -/area/surface/outside/plains/normal) -"Hv" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green, -/obj/machinery/light_switch{ - pixel_x = 22 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/surface/outpost/main/dorms/dorm_1) -"Hw" = ( -/obj/machinery/vending/nifsoft_shop{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Hx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Hy" = ( -/turf/simulated/wall, -/area/surface/outpost/main/corridor/left_lower) -"Hz" = ( -/turf/simulated/wall, -/area/surface/outpost/main/laundry) -"HA" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/laundry) -"HB" = ( -/obj/structure/table/steel, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/blue, -/obj/item/weapon/storage/toolbox/electrical, -/turf/simulated/floor/plating, -/area/surface/outpost/security/smes) -"HC" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Laundry" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/machinery/door/firedoor/multi_tile/glass, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/laundry) -"HD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/laundry) -"HE" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/laundry) -"HF" = ( -/obj/structure/closet/firecloset, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"HG" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"HH" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"HI" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/gen_room) -"HJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/engineering{ - name = "SMES Access" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/gen_room) -"HK" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/gen_room) -"HL" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor) -"HM" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor) -"HN" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/janitor) -"HO" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/orange/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"HP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_one_access = list(26) - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/janitor) -"HQ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor/right_lower) -"HR" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/bed/chair, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"HS" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/restroom) -"HT" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/restroom) -"HU" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/restroom) -"HV" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"HW" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/restroom) -"HX" = ( -/obj/structure/table/marble, -/obj/random/tech_supply, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"HY" = ( -/obj/structure/table/marble, -/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"HZ" = ( -/obj/structure/table/marble, -/obj/item/device/starcaster_news, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"Ia" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "dorm_tint5" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "dorm_tint5" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/dorms/dorm_5) -"Ib" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/item/device/flashlight/lamp, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/machinery/vending/wallmed1{ - name = "NanoMed Wall"; - pixel_y = -30 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"Ic" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/drinks/bottle/champagne, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_5) -"Id" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"Ie" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_5) -"If" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_5) -"Ig" = ( -/obj/structure/table/woodentable, -/obj/structure/flora/pottedplant/small, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_3) -"Ih" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_3) -"Ii" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_3) -"Ij" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/matches, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_1) -"Ik" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_1) -"Il" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_1) -"Im" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/symbol/lo{ - pixel_x = -32 - }, -/obj/structure/bed/chair, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"In" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Io" = ( -/obj/structure/railing, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/indalsalven) -"Ip" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Ir" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Is" = ( -/obj/machinery/vending/loadout/loadout_misc, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 9 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Laundry 1"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Iu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Iv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Iw" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Ix" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Iy" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/structure/closet, -/obj/effect/floor_decal/corner/white/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Iz" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor/left_lower) -"IA" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"IB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"IC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"ID" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"IE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"IG" = ( -/obj/structure/table/steel, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/weapon/storage/toolbox/electrical, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"IH" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"II" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"IJ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"IK" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"IM" = ( -/obj/structure/closet/l3closet/janitor, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/janitor) -"IP" = ( -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/janitor) -"IQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/janitor) -"IR" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple/bordercorner2{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 22; - pixel_y = -10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/janitor) -"IS" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "sec1_airlock_exterior"; - locked = 1; - name = "Security Outpost External" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "sec1_airlock_control"; - name = "External Access Button"; - pixel_y = 26; - req_one_access = list(1) - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/security) -"IT" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor/right_lower) -"IU" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/table/glass, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"IV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"IX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"IY" = ( -/obj/machinery/door/firedoor/glass, -/obj/item/tape/engineering, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/restroom) -"IZ" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"Ja" = ( -/obj/machinery/light_construct{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"Jb" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 5; - pixel_y = 2 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_5) -"Jc" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_5) -"Jd" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_5) -"Je" = ( -/obj/structure/table/woodentable, -/obj/item/toy/bouquet, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_3) -"Jf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_3) -"Jg" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_3) -"Jh" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/flame/candle/candelabra, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_1) -"Jj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_1) -"Jk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_1) -"Jl" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/table/glass, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/item/weapon/reagent_containers/food/drinks/britcup, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Jm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Jn" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Jo" = ( -/obj/machinery/vending/cola{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Jp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/machinery/vending/loadout/gadget, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Jq" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Jr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Js" = ( -/obj/structure/undies_wardrobe, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Ju" = ( -/obj/structure/table/steel, -/obj/random/junk, -/obj/random/tool, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "SUBS - Main Outpost"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"Jv" = ( -/obj/random/trash, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"Jw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"Jx" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/plains/normal) -"Jy" = ( -/turf/simulated/floor/water/pool, -/area/surface/outpost/civilian/pool) -"Jz" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"JA" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"JB" = ( -/obj/machinery/vending/foodasian{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"JC" = ( -/obj/structure/closet/jcloset, -/obj/item/weapon/soap/nanotrasen, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/janitor) -"JD" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/janitor) -"JE" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/janitor) -"JG" = ( -/obj/structure/mopbucket, -/obj/item/weapon/mop, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/janitor) -"JH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"JJ" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"JK" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor/right_lower) -"JN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"JO" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"JP" = ( -/obj/random/trash, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"JQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"JR" = ( -/obj/item/stack/material/wood, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"JS" = ( -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"JT" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/zone_divider, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"JV" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/obj/machinery/button/windowtint{ - id = "dorm_tint5"; - pixel_x = -22 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_5) -"JW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_5) -"JX" = ( -/obj/machinery/disposal, -/obj/machinery/button/remote/airlock{ - id = "dorm5"; - name = "Door Lock Control"; - pixel_y = -25; - specialfunctions = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_5) -"JY" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_3) -"JZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_3) -"Ka" = ( -/obj/machinery/disposal, -/obj/machinery/button/remote/airlock{ - id = "dorm3"; - name = "Door Lock Control"; - pixel_y = -25; - specialfunctions = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_3) -"Kb" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_1) -"Kc" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_1) -"Kd" = ( -/obj/machinery/disposal, -/obj/machinery/button/remote/airlock{ - id = "dorm1"; - name = "Door Lock Control"; - pixel_y = -25; - specialfunctions = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_1) -"Kf" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Kg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Kh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Ki" = ( -/obj/machinery/vending/snack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Hallway 2"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Kj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/weapon/storage/pill_bottle/dice_nerd, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Kl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"Km" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Kn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Ko" = ( -/obj/structure/sign/warning/caution{ - desc = "This appears to be a sign warning people that the other side is dangerous. It also says that NanoTrasen cannot guarantee your safety beyond this point."; - name = "\improper WARNING: NO ACCESS" - }, -/turf/simulated/shuttle/wall/voidcraft, -/area/surface/outpost/wall) -"Kp" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Kq" = ( -/obj/machinery/vending/loadout, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Kr" = ( -/obj/structure/table/steel, -/obj/random/junk, -/obj/random/maintenance/engineering, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"Ks" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/random/powercell, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"Kt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"Ku" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/security) -"Kv" = ( -/obj/structure/cable/blue, -/obj/machinery/power/smes/buildable/outpost_substation{ - RCon_tag = "Outpost - Shuttle Landing"; - charge = 5e+006; - input_attempt = 1; - input_level = 150000; - output_level = 150000 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"Kw" = ( -/obj/machinery/vending/fitness{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Kx" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"Ky" = ( -/obj/structure/janitorialcart, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/janitor) -"Kz" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/purple/border, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Custodial Closet"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/janitor) -"KB" = ( -/obj/effect/floor_decal/borderfloor, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/effect/floor_decal/corner/purple/border, -/obj/item/clothing/suit/caution, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/janitor) -"KC" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/janitor) -"KD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"KE" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"KF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/corridor/right_lower) -"KG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"KH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"KI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"KJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"KK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"KL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"KM" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"KN" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/gen_room/smes_left) -"KP" = ( -/turf/simulated/wall, -/area/surface/outpost/main/gen_room/smes_left) -"KQ" = ( -/turf/simulated/floor/water/deep, -/area/surface/outside/river/indalsalven) -"KR" = ( -/obj/machinery/door/airlock{ - id_tag = "dorm5"; - name = "Dorm 5" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/dorms/dorm_5) -"KS" = ( -/obj/machinery/door/airlock{ - id_tag = "dorm3"; - name = "Dorm 3" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/dorms/dorm_3) -"KT" = ( -/obj/machinery/door/airlock{ - id_tag = "dorm1"; - name = "Dorm 1" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/dorms/dorm_1) -"KU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"KV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"KW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"KX" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/white/bordercorner, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"KZ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/structure/flora/pottedplant, -/obj/effect/floor_decal/corner/white/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"La" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Lb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Lc" = ( -/obj/machinery/vending/loadout/accessory, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Ld" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Le" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/cable/heavyduty{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"Lg" = ( -/obj/machinery/vending/sol{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Lh" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Li" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Lj" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Lk" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Construction Area" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/corridor/right_lower) -"Ll" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"Lm" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"Ln" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"Lo" = ( -/obj/item/weapon/stock_parts/motor, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"Lp" = ( -/obj/structure/table, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"Lr" = ( -/obj/structure/flora/pottedplant/dead, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"Ls" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/gen_room/smes_left) -"Lt" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/random/powercell, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "SUBS - Left Wing"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_left) -"Lu" = ( -/obj/structure/table/steel, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/weapon/storage/toolbox/electrical, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_left) -"Lv" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Hallway 3"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Lw" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Lx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Ly" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"LA" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"LB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"LC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"LD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"LF" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/hidden{ - dir = 2 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"LG" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"LH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"LI" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"LJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass{ - name = "Laundry" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/laundry) -"LL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atm{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"LM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"LN" = ( -/obj/machinery/washing_machine, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"LO" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"LP" = ( -/turf/simulated/floor/water, -/area/surface/outside/lake/romsele) -"LQ" = ( -/obj/machinery/vending/loadout/clothing, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"LR" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = -10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"LS" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/gen_room) -"LT" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/gen_room) -"LU" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/gen_room) -"LV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"LW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"LX" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/right_one) -"LY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external/public{ - name = "Airlock Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/airlock/right_one) -"LZ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_one) -"Ma" = ( -/obj/structure/cable/blue, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - operating = 0; - pixel_x = -24 - }, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = -10 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"Mb" = ( -/obj/item/stack/material/wood, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"Mc" = ( -/obj/item/weapon/stool, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"Md" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/gen_room/smes_left) -"Me" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_left) -"Mf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/power/terminal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_left) -"Mg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_left) -"Mh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/engineering{ - name = "SMES Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/gen_room/smes_left) -"Mi" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Mj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Mk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Ml" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Mm" = ( -/obj/machinery/camera/network/civilian{ - c_tag = "CO - Sauna"; - dir = 1 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"Mn" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Mo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Mp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Mq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Mr" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Ms" = ( -/obj/structure/table/reinforced, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/item/device/gps/security, -/turf/simulated/floor/holofloor/tiled/dark, -/area/surface/outpost/security/maa) -"Mt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Mu" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/random/powercell, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "SUBS - Security Checkpoint" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/security/smes) -"Mv" = ( -/obj/machinery/door/firedoor/glass/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Mw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Mx" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"My" = ( -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Mz" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/security/maa) -"MA" = ( -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"MB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"MD" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"ME" = ( -/obj/machinery/vending/loadout/costume, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"MF" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"MG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"MH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Central Hall"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"MI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"MJ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - frequency = 1441; - pixel_x = 22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"MK" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/unary/heater/sauna{ - dir = 8; - icon_state = "heater_1"; - use_power = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/civilian/sauna) -"ML" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"MO" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"MP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Airlock 1"; - dir = 8 - }, -/obj/item/weapon/melee/umbrella{ - color = "#7c0d0d" - }, -/obj/item/weapon/melee/umbrella{ - color = "#7c0d0d" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/right_one) -"MQ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"MR" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/normal) -"MS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"MT" = ( -/obj/structure/fence, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"MV" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/gen_room/smes_left) -"MW" = ( -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/smes/buildable/outpost_substation{ - RCon_tag = "Outpost - Left Wing"; - charge = 5e+006; - input_attempt = 1; - input_level = 150000; - output_level = 150000 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_left) -"MX" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/item/weapon/handcuffs/fuzzy, -/obj/item/weapon/storage/toolbox/mechanical, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_left) -"MY" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall, -/area/surface/outpost/main/gen_room/smes_left) -"MZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"Na" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Nb" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/white/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Nc" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Nd" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Ne" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Nf" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/blue/bordercorner2, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Ng" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/light, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/vending/wallmed1{ - name = "NanoMed Wall"; - pixel_y = -30 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Nh" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Ni" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/white/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Nk" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/effect/floor_decal/corner/blue/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Nl" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/door/firedoor/glass/hidden{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"No" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Np" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Nq" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Nr" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/glass{ - name = "Laundry" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/laundry) -"Ns" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Nt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Nu" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/machinery/gear_painter, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Nv" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Nw" = ( -/obj/machinery/vending/loadout/overwear, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Nx" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/landing_south) -"Ny" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/landing_south) -"Nz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external/public{ - name = "Airlock Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/airlock/landing_south) -"NA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external/public{ - name = "Airlock Access" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/airlock/landing_south) -"NB" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"ND" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_one) -"NE" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"NG" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"NH" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/right_one) -"NI" = ( -/obj/machinery/disposal, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"NJ" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/mountains) -"NK" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/rocks/sif/planetuse, -/area/surface/outside/plains/mountains) -"NL" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water/shoreline{ - dir = 8 - }, -/area/surface/outside/ocean) -"NM" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water, -/area/surface/outside/ocean) -"NN" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep, -/area/surface/outside/ocean) -"NO" = ( -/obj/effect/zone_divider, -/turf/unsimulated/wall/planetary/sif, -/area/surface/outside/ocean) -"NP" = ( -/obj/machinery/door/airlock{ - id_tag = "dorm6"; - name = "Dorm 6" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/dorms/dorm_6) -"NQ" = ( -/turf/simulated/wall, -/area/surface/outpost/main/dorms/dorm_6) -"NR" = ( -/turf/simulated/wall, -/area/surface/outpost/main/dorms/dorm_4) -"NT" = ( -/obj/machinery/door/airlock{ - id_tag = "dorm4"; - name = "Dorm 4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/dorms/dorm_4) -"NU" = ( -/turf/simulated/wall, -/area/surface/outpost/main/dorms/dorm_2) -"NV" = ( -/obj/machinery/door/airlock{ - id_tag = "dorm2"; - name = "Dorm 2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/dorms/dorm_2) -"NW" = ( -/obj/structure/table/bench/wooden, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"NX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"NY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"NZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/random/action_figure, -/obj/item/weapon/coin/silver, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Oa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Ob" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Oc" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Od" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Oe" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_south) -"Of" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"Og" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"Oh" = ( -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"Oi" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"Oj" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/water/pool, -/area/surface/outpost/civilian/pool) -"Ok" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"Ol" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/weapon/melee/umbrella{ - color = "#7c0d0d" - }, -/obj/item/weapon/melee/umbrella{ - color = "#7c0d0d" - }, -/obj/item/weapon/melee/umbrella{ - color = "#7c0d0d" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_south) -"Om" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"Oo" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/water/deep/pool, -/area/surface/outpost/civilian/pool) -"Oq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"Or" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/structure/window/basic, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/right_one) -"Os" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/zone_divider, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"Ot" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/dorms/dorm_6) -"Ov" = ( -/obj/structure/bed/chair/comfy/black, -/obj/machinery/button/windowtint{ - id = "dorm_tint6"; - pixel_x = -22 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_6) -"Ow" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_6) -"Ox" = ( -/obj/structure/cable/blue, -/obj/machinery/power/smes/buildable/outpost_substation{ - RCon_tag = "Outpost - Security"; - charge = 5e+006; - input_attempt = 1; - input_level = 150000; - output_level = 150000 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/security/smes) -"Oy" = ( -/obj/machinery/disposal, -/obj/machinery/button/remote/airlock{ - id = "dorm6"; - name = "Door Lock Control"; - pixel_y = 25; - specialfunctions = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_6) -"Oz" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_4) -"OA" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_4) -"OB" = ( -/obj/machinery/disposal, -/obj/machinery/button/remote/airlock{ - id = "dorm4"; - name = "Door Lock Control"; - pixel_y = 25; - specialfunctions = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_4) -"OC" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_2) -"OD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"OE" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_2) -"OF" = ( -/obj/machinery/disposal, -/obj/machinery/button/remote/airlock{ - id = "dorm2"; - name = "Door Lock Control"; - pixel_y = 25; - specialfunctions = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_2) -"OG" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/bed/chair, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"OH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"OI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"OJ" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/item/weapon/storage/fancy/markers, -/obj/random/toy, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"OK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"OL" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"ON" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"OP" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"OQ" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/shoes/boots/winter, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_south) -"OR" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"OS" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"OT" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"OU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"OV" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/shoes/boots/winter, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_south) -"OW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"OX" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/landing_south) -"OY" = ( -/turf/simulated/floor/wood{ - outdoors = 1 - }, -/area/surface/outside/path/plains) -"OZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "main2_airlock_control"; - pixel_x = -26; - pixel_y = -26; - tag_exterior_door = "main2_airlock_exterior"; - tag_interior_door = "main2_airlock_interior" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"Pa" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"Pb" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/item/weapon/tool/crowbar/red, -/obj/item/device/flashlight, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/right_one) -"Pc" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "dorm_tint6" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "dorm_tint6" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/dorms/dorm_6) -"Pd" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/drinks/bottle/wine, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_6) -"Pe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_6) -"Pf" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_6) -"Pg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"Ph" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/drinks/h_chocolate, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_4) -"Pi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_4) -"Pj" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_4) -"Pk" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/deck/cards, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_2) -"Pl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_2) -"Pm" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_2) -"Pn" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/table/glass, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Po" = ( -/obj/structure/table/standard, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = -10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Pp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Pq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Pr" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 6 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Laundry 2"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Ps" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/window/basic, -/obj/item/clothing/mask/gas, -/obj/item/clothing/shoes/boots/winter, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_south) -"Pt" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/structure/window/basic, -/obj/item/clothing/mask/gas, -/obj/item/clothing/shoes/boots/winter, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_south) -"Pu" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "main2_airlock_control"; - name = "Internal Access Button"; - pixel_x = -26; - pixel_y = -6 - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main2_airlock_interior"; - locked = 1; - name = "Main Outpost Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/right_one) -"Pv" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/material/kitchen/utensil/fork/plastic{ - pixel_x = 7 - }, -/obj/item/weapon/reagent_containers/food/snacks/pastatomato, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_6) -"Px" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_6) -"Py" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_6) -"Pz" = ( -/obj/structure/table/woodentable, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/weapon/material/ashtray, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_4) -"PA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_4) -"PB" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_4) -"PD" = ( -/obj/structure/table/woodentable, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/weapon/lipstick/random, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_2) -"PE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_2) -"PF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_2) -"PG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"PH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/structure/table/standard, -/obj/machinery/photocopier/faxmachine{ - department = "Outpost Laundry" - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"PI" = ( -/obj/effect/floor_decal/borderfloor, -/obj/structure/closet/wardrobe/pjs, -/obj/effect/floor_decal/corner/white/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"PJ" = ( -/obj/structure/closet/wardrobe/black, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"PK" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"PL" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloor, -/obj/structure/bedsheetbin, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"PM" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/item/weapon/storage/laundry_basket, -/obj/effect/floor_decal/corner/white/border{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"PN" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_south) -"PO" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"PP" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"PQ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"PR" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - external_pressure_bound = 140; - external_pressure_bound_default = 140; - icon_state = "map_vent_out"; - pressure_checks = 0; - pressure_checks_default = 0; - use_power = 1 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"PS" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"PT" = ( -/obj/machinery/light_construct, -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/donut/empty, -/turf/simulated/floor/holofloor/tiled/dark, -/area/surface/outpost/security/maa) -"PU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"PV" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/item/weapon/tool/crowbar/red, -/obj/item/device/flashlight, -/obj/machinery/light, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Landing South Airlock"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_south) -"PW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"PX" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"PY" = ( -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/airlock/right_one) -"PZ" = ( -/obj/structure/fence/corner, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"Qa" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_one) -"Qb" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_6) -"Qc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet, -/area/surface/outpost/main/dorms/dorm_6) -"Qd" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green, -/obj/machinery/light_switch{ - pixel_x = 22 - }, -/turf/simulated/floor/carpet, -/area/surface/outpost/main/dorms/dorm_6) -"Qg" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_4) -"Qh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/surface/outpost/main/dorms/dorm_4) -"Qi" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green, -/obj/machinery/light_switch{ - pixel_x = 22 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/surface/outpost/main/dorms/dorm_4) -"Qj" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_2) -"Qk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/purcarpet, -/area/surface/outpost/main/dorms/dorm_2) -"Qm" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green, -/obj/machinery/light_switch{ - pixel_x = 22 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/surface/outpost/main/dorms/dorm_2) -"Qo" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/flora/pottedplant, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Qp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Hallway 4"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Qq" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main3_airlock_interior"; - locked = 1; - name = "Landing South Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/landing_south) -"Qr" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "main3_airlock_control"; - pixel_x = -5; - tag_exterior_door = "main3_airlock_exterior"; - tag_interior_door = "main3_airlock_interior" - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "main3_airlock_control"; - name = "Internal Access Button"; - pixel_x = 5 - }, -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/landing_south) -"Qs" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"Qt" = ( -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Airlock Access 1"; - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"Qu" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"Qw" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/obj/structure/coatrack, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_6) -"Qx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/carpet, -/area/surface/outpost/main/dorms/dorm_6) -"Qy" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/reddouble, -/turf/simulated/floor/carpet, -/area/surface/outpost/main/dorms/dorm_6) -"Qz" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/obj/structure/dogbed, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_4) -"QA" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water, -/area/surface/outside/lake/romsele) -"QB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/surface/outpost/main/dorms/dorm_4) -"QC" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/browndouble, -/turf/simulated/floor/carpet/bcarpet, -/area/surface/outpost/main/dorms/dorm_4) -"QD" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/obj/structure/flora/pottedplant/flower, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_2) -"QE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/carpet/purcarpet, -/area/surface/outpost/main/dorms/dorm_2) -"QF" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/purpledouble, -/turf/simulated/floor/carpet/purcarpet, -/area/surface/outpost/main/dorms/dorm_2) -"QG" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/machinery/lapvend{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"QH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/symbol/em{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"QI" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "sauna_tint2" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "sauna_tint2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/sauna) -"QJ" = ( -/obj/random/junk, -/obj/random/junk, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/surface/outpost/main/laundry) -"QK" = ( -/obj/random/junk, -/obj/random/junk, -/obj/random/contraband, -/turf/simulated/floor/plating, -/area/surface/outpost/main/laundry) -"QL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"QM" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{ - pixel_x = 5; - pixel_y = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/civilian/sauna) -"QN" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/airlock/landing_south) -"QQ" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main2_airlock_exterior"; - locked = 1; - name = "Main Outpost External" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "main2_airlock_control"; - name = "External Access Button"; - pixel_x = -26 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/right_one) -"QR" = ( -/obj/item/modular_computer/console/preset/security, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"QS" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_one) -"QT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/dorms/dorm_6) -"QU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/dorms/dorm_4) -"QV" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/dorms/dorm_4) -"QW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/dorms/dorm_2) -"QX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass/hidden, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"QY" = ( -/obj/machinery/door/firedoor/glass/hidden{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"QZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Ra" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/left_two) -"Rb" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/left_two) -"Rc" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central6, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/airlock/landing_south) -"Re" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/right_one) -"Rg" = ( -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/right_one) -"Rh" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/right_one) -"Ri" = ( -/obj/structure/fence{ - dir = 8 - }, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"Rj" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_6) -"Rl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_6) -"Rn" = ( -/obj/item/weapon/towel{ - color = "#FF6666"; - name = "light red towel" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_6) -"Ro" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_4) -"Rp" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 10 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/weapon/storage/box/wormcan/sickly{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/storage/box/wormcan/sickly{ - pixel_x = 3 - }, -/obj/machinery/camera/network/civilian{ - c_tag = "CO - Fishing 2"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"Rq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_4) -"Rr" = ( -/obj/item/weapon/towel{ - color = "#b5651d"; - name = "brown towel" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_4) -"Rs" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_2) -"Rt" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_2) -"Ru" = ( -/obj/item/weapon/towel{ - color = "#800080"; - name = "purple towel" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_2) -"Rv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Rw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Rx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Ry" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Airlock 2" - }, -/obj/item/weapon/melee/umbrella{ - color = "#7c0d0d" - }, -/obj/item/weapon/melee/umbrella{ - color = "#7c0d0d" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/left_two) -"Rz" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/item/weapon/tank/emergency/oxygen/double, -/obj/item/clothing/mask/gas, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/left_two) -"RA" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/item/weapon/tank/emergency/oxygen/double, -/obj/item/clothing/mask/gas, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/left_two) -"RB" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, -/area/surface/outside/plains/normal) -"RC" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/tool/crowbar/red, -/obj/item/device/flashlight, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/left_two) -"RD" = ( -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/airlock/left_two) -"RF" = ( -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"RG" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/left_two) -"RI" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Landing South Airlock Access"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"RJ" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/civilian/fishing) -"RK" = ( -/obj/effect/decal/remains/ribcage, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt, -/area/surface/outside/plains/outpost) -"RL" = ( -/obj/structure/table/standard, -/obj/item/weapon/soap/syndie, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_6) -"RM" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_6) -"RN" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_6) -"RO" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/obj/random/soap, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_4) -"RP" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_4) -"RQ" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_4) -"RR" = ( -/obj/structure/table/standard, -/obj/item/weapon/soap/deluxe, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_2) -"RS" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_2) -"RT" = ( -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"RU" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_2) -"RV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"RW" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"RX" = ( -/obj/item/weapon/reagent_containers/glass/bucket/wood, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = 22 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"RY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"RZ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/left_two) -"Sa" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"Sb" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"Sd" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"Se" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"Sf" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"Sg" = ( -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Airlock Access 2"; - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"Sh" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/left_two) -"Si" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/left_two) -"Sj" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main3_airlock_exterior"; - locked = 1; - name = "Landing South External" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/landing_south) -"Sk" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "main3_airlock_control"; - name = "External Access Button" - }, -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/landing_south) -"Sl" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/sauna) -"Sm" = ( -/turf/simulated/shuttle/wall/voidcraft/hard_corner, -/area/surface/outpost/wall) -"Sn" = ( -/turf/simulated/floor/outdoors/rocks/sif/planetuse, -/area/surface/outside/plains/normal) -"So" = ( -/obj/effect/zone_divider, -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/left_three) -"Sp" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/left_three) -"Sq" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Sr" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Ss" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external/public{ - name = "Airlock Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/airlock/left_two) -"St" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"Su" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"Sw" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"Sx" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "main7_airlock_control"; - pixel_x = 26; - pixel_y = -26; - tag_exterior_door = "main7_airlock_exterior"; - tag_interior_door = "main7_airlock_interior" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"Sy" = ( -/obj/machinery/button/windowtint{ - id = "sauna_tint1"; - pixel_x = -5; - pixel_y = 22 - }, -/obj/machinery/button/windowtint{ - id = "sauna_tint2"; - pixel_x = 6; - pixel_y = 22 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"Sz" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "main7_airlock_control"; - name = "Internal Access Button"; - pixel_x = 6; - pixel_y = -26 - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main7_airlock_interior"; - locked = 1; - name = "Main Outpost Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/left_two) -"SA" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"SB" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/normal) -"SC" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"SD" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main7_airlock_exterior"; - locked = 1; - name = "Main Outpost External" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "main7_airlock_control"; - name = "External Access Button"; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/left_two) -"SE" = ( -/obj/structure/table/rack/shelf, -/turf/simulated/floor/holofloor/tiled/dark, -/area/surface/outpost/security/maa) -"SF" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "sauna_tint1" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/sauna) -"SG" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/landing_south) -"SH" = ( -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/landing_south) -"SI" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/main/airlock/right_one) -"SJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Airlock 3" - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/airlock/left_three) -"SK" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"SL" = ( -/turf/simulated/floor/holofloor/tiled/dark, -/area/surface/outpost/security/maa) -"SM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"SN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external/public{ - name = "Airlock Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/airlock/left_three) -"SP" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"SQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"SR" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"ST" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"SU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"SV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"SW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"SX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"SY" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/regular, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"SZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Ta" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Tb" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Tc" = ( -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/path/plains) -"Td" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Te" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Tf" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/emergency_storage/two) -"Tg" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"Th" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/left_two) -"Ti" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"Tj" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/civilian/smes) -"Tl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"Tm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "garage2"; - name = "Garage Shutters" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/airlock/right_one) -"Tn" = ( -/obj/structure/fence, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"To" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_one) -"Tp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/network/main_outpost{ - c_tag = "ATV Garage 2"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_one) -"Tq" = ( -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/plains/outpost) -"Tr" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/zone_divider, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/left_three) -"Ts" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"Tt" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"Tu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/device/radio{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/left_three) -"Tv" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/left_three) -"Tw" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Tx" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Ty" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 9 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Hallway 5"; - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Tz" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"TA" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"TB" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/white/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"TC" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"TE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"TF" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"TG" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"TH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"TI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"TJ" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/lights/mixed, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/emergency_storage/two) -"TK" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/surface/outpost/main/emergency_storage/two) -"TL" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/disposal, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/smes) -"TN" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/smes) -"TO" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/path/plains) -"TP" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/vending/cola, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/smes) -"TQ" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/smes) -"TR" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/table/bench/steel, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/smes) -"TS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/vehicle/train/engine/quadbike{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_one) -"TV" = ( -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_one) -"TW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"TX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"TZ" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/left_three) -"Ua" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/corridor/left_upper) -"Ub" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor/left_upper) -"Uc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/multi_tile/glass, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Construction Area" - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/corridor/left_upper) -"Ud" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/corridor/left_upper) -"Ue" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Uf" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Uh" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Emergency Storage" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/emergency_storage/two) -"Uj" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/sauna) -"Uk" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/emergency_storage/two) -"Ul" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/emergency_storage/two) -"Um" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/overlay/snow/floor, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/path/plains) -"Un" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/path/plains) -"Uo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/remote/blast_door{ - id = "garage2"; - name = "Garage Shutter Control"; - pixel_x = -6; - pixel_y = -22 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_one) -"Up" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/fishing) -"Uq" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloor, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"Ur" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_one) -"Us" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "main8_airlock_control"; - pixel_x = -26; - pixel_y = -26; - tag_exterior_door = "main8_airlock_exterior"; - tag_interior_door = "main8_airlock_interior" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"Ut" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"Uu" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/tool/crowbar/red, -/obj/item/device/flashlight, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/left_three) -"Uv" = ( -/obj/structure/table/steel, -/obj/random/tech_supply, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Uw" = ( -/obj/structure/table/steel, -/obj/random/tech_supply, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Ux" = ( -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Uy" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Uz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"UA" = ( -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"UB" = ( -/obj/structure/table, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"UC" = ( -/obj/structure/table/steel, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"UD" = ( -/obj/structure/table/steel, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"UE" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/construction_area) -"UF" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"UG" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"UH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"UI" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/emergency_storage/two) -"UJ" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/surface/outpost/main/emergency_storage/two) -"UK" = ( -/obj/machinery/button/remote/blast_door{ - id = "garage2"; - name = "Garage Shutter Control"; - pixel_x = 22 - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/main/airlock/right_one) -"UL" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "main8_airlock_control"; - name = "Internal Access Button"; - pixel_x = -26; - pixel_y = -6 - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main8_airlock_interior"; - locked = 1; - name = "Main Outpost Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/left_three) -"UN" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"UO" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - operating = 0; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = -10 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"UP" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"UQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"UR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"US" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"UT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"UU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"UV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"UX" = ( -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"UZ" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Va" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/machinery/vending/cigarette{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Vb" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/vending/fitness{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Vd" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Ve" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"Vf" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"Vg" = ( -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/airlock/left_three) -"Vh" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Vi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Vj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Vk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Vl" = ( -/obj/item/clothing/head/hardhat/orange, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Vm" = ( -/obj/item/weapon/stool, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Vn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Vo" = ( -/obj/structure/closet/toolcloset, -/obj/item/device/flashlight/maglight, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Vp" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"Vq" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"Vr" = ( -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Airlock Access 3"; - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"Vs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"Vt" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"Vu" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Vv" = ( -/obj/structure/closet/crate, -/obj/item/weapon/tool/crowbar/red, -/obj/item/frame/light, -/obj/item/weapon/storage/box/lights/mixed, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Vx" = ( -/obj/random/toolbox, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Vy" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Vz" = ( -/turf/simulated/floor/plating, -/area/surface/outpost/security/maa) -"VA" = ( -/obj/random/technology_scanner, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"VB" = ( -/obj/structure/table, -/obj/machinery/light_construct{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"VC" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"VD" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"VE" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/fishing) -"VF" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/fishing) -"VH" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"VI" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"VJ" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"VK" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/civilian/pool) -"VL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"VM" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/pool) -"VN" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/sauna) -"VO" = ( -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/sauna) -"VP" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/sauna) -"VQ" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main8_airlock_exterior"; - locked = 1; - name = "Main Outpost External" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "main8_airlock_control"; - name = "External Access Button"; - pixel_x = -26 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/left_three) -"VR" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/left_three) -"VS" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"VT" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"VU" = ( -/obj/machinery/vending/fishing{ - dir = 8 - }, -/obj/effect/floor_decal/corner/orange{ - dir = 6 - }, -/obj/effect/floor_decal/corner/orange{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"VV" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "civ1_airlock_exterior"; - locked = 1; - name = "Civilian Outpost External" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "civ1_airlock_control"; - name = "External Access Button"; - pixel_x = -26 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/civilian/fishing) -"VW" = ( -/turf/simulated/floor/water, -/area/surface/outside/river/indalsalven) -"VX" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"VY" = ( -/obj/structure/table/glass, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"VZ" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Wa" = ( -/obj/structure/table/glass, -/obj/item/weapon/inflatable_duck, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Wb" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/civilian/sauna) -"Wc" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/sauna) -"Wd" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "civ2_airlock_exterior"; - locked = 1; - name = "Civilian Outpost External" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "civ2_airlock_control"; - name = "External Access Button"; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/civilian/sauna) -"We" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/zone_divider, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/left_three) -"Wf" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/left_three) -"Wg" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/left_three) -"Wh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/techmaint, -/area/surface/outpost/main/tcomm) -"Wj" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/security/smes) -"Wk" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"Wl" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/fishing) -"Wn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"Wo" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 10 - }, -/obj/machinery/camera/network/civilian{ - c_tag = "CO - Airlock Access 1" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"Wp" = ( -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"Wq" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/fishing) -"Wr" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"Ws" = ( -/obj/structure/table/glass, -/obj/item/inflatable{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/inflatable{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/inflatable{ - pixel_x = -2; - pixel_y = -3 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Wt" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Wu" = ( -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Wv" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Ww" = ( -/obj/structure/table/glass, -/obj/item/clothing/mask/snorkel, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Wx" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/camera/network/civilian{ - c_tag = "CO - Pool 1"; - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Wy" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/sauna) -"Wz" = ( -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/sauna) -"WA" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 1 - }, -/obj/machinery/camera/network/civilian{ - c_tag = "CO - Airlock Access 2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/sauna) -"WB" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/sauna) -"WC" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/sauna) -"WD" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"WE" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/path/plains) -"WF" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/effect/overlay/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/smes) -"WG" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/smes) -"WH" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/smes) -"WI" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"WJ" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"WK" = ( -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/civilian/fishing) -"WL" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"WM" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"WN" = ( -/obj/structure/closet/athletic_mixed, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"WO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"WP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"WQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"WR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"WS" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"WT" = ( -/obj/machinery/space_heater, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"WU" = ( -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/civilian/sauna) -"WV" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/sauna) -"WW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/sauna) -"WX" = ( -/turf/simulated/floor/water/shoreline{ - dir = 9 - }, -/area/surface/outside/ocean) -"WY" = ( -/turf/simulated/floor/water/shoreline{ - dir = 1 - }, -/area/surface/outside/ocean) -"WZ" = ( -/turf/simulated/floor/water/shoreline{ - dir = 5 - }, -/area/surface/outside/ocean) -"Xa" = ( -/turf/simulated/wall/solidrock, -/area/surface/outside/river/indalsalven) -"Xb" = ( -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/normal) -"Xc" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/security/maa) -"Xd" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"Xe" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/heavyduty, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/smes) -"Xf" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "civ1_airlock_control"; - name = "Internal Access Button"; - pixel_x = -26; - pixel_y = 5 - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "civ1_airlock_interior"; - locked = 1; - name = "Civilian Outpost Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/civilian/fishing) -"Xg" = ( -/obj/structure/closet/athletic_mixed, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Xh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Xi" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/water/pool, -/area/surface/outpost/civilian/pool) -"Xj" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/security) -"Xl" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/water/deep/pool, -/area/surface/outpost/civilian/pool) -"Xm" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/turf/simulated/floor/water/deep/pool, -/area/surface/outpost/civilian/pool) -"Xn" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Xo" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/sauna) -"Xp" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "civ2_airlock_control"; - name = "Internal Access Button"; - pixel_x = 26; - pixel_y = 5 - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "civ2_airlock_interior"; - locked = 1; - name = "Civilian Outpost Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/civilian/sauna) -"Xr" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/civilian/emergency_storage) -"Xs" = ( -/turf/simulated/floor/water/shoreline/corner{ - dir = 4 - }, -/area/surface/outside/ocean) -"Xt" = ( -/turf/simulated/floor/water/shoreline/corner{ - dir = 8 - }, -/area/surface/outside/ocean) -"Xu" = ( -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"Xv" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"Xw" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"Xx" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/turf/simulated/floor/water/pool, -/area/surface/outpost/civilian/pool) -"Xy" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"Xz" = ( -/obj/structure/closet/secure_closet/guncabinet/phase{ - req_one_access = null - }, -/obj/item/clothing/accessory/holster/hip, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"XA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"XB" = ( -/turf/simulated/wall/dungeon{ - icon = 'icons/obj/doors/shuttledoors.dmi'; - icon_state = "door_locked"; - name = "Wall Gate" - }, -/area/surface/outpost/wall) -"XC" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"XE" = ( -/obj/structure/table/reinforced, -/obj/machinery/photocopier/faxmachine, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = 22 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"XF" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"XG" = ( -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/smes/buildable/outpost_substation{ - RCon_tag = "Outpost - Civilian"; - charge = 500000; - input_attempt = 1; - input_level = 150000; - output_level = 150000 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/smes) -"XH" = ( -/obj/structure/catwalk, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/smes) -"XI" = ( -/obj/structure/table/steel, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/weapon/storage/toolbox/electrical, -/obj/item/clothing/shoes/galoshes, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/smes) -"XJ" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall, -/area/surface/outpost/civilian/smes) -"XK" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "civ1_airlock_control"; - pixel_x = -26; - pixel_y = 26; - tag_exterior_door = "civ1_airlock_exterior"; - tag_interior_door = "civ1_airlock_interior" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"XL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/orange/bordercorner2{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"XM" = ( -/obj/machinery/floodlight, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"XN" = ( -/obj/structure/closet, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 1 - }, -/obj/item/clothing/gloves/duty, -/obj/item/clothing/gloves/duty, -/obj/item/clothing/under/serviceoveralls, -/obj/item/clothing/under/serviceoveralls, -/obj/item/clothing/accessory/storage/webbing, -/obj/item/clothing/accessory/storage/webbing, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"XO" = ( -/obj/structure/closet, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/orange/bordercorner2{ - dir = 5 - }, -/obj/item/weapon/storage/backpack/dufflebag, -/obj/item/clothing/shoes/boots/winter/climbing, -/obj/item/clothing/shoes/boots/winter/climbing, -/obj/machinery/camera/network/civilian{ - c_tag = "CO - Fishing 1"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"XP" = ( -/turf/simulated/wall, -/area/surface/outpost/civilian/fishing) -"XQ" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/device/starcaster_news, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"XR" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/pool) -"XS" = ( -/obj/structure/flora/pottedplant/fern, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"XT" = ( -/turf/simulated/wall, -/area/surface/outpost/civilian/pool) -"XU" = ( -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"XV" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/water/pool, -/area/surface/outpost/civilian/pool) -"XW" = ( -/turf/simulated/wall/solidrock, -/area/surface/outside/plains/mountains) -"XX" = ( -/turf/simulated/floor/water/deep/pool, -/area/surface/outpost/civilian/pool) -"XY" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/water/deep/pool, -/area/surface/outpost/civilian/pool) -"XZ" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = 22; - pixel_y = -10 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Ya" = ( -/obj/structure/flora/pottedplant/fern, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/sauna) -"Yb" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/weapon/dice/d20, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/sauna) -"Yd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"Ye" = ( -/turf/simulated/wall, -/area/surface/outpost/civilian/sauna) -"Yf" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"Yg" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/towel{ - color = "#FF6666"; - name = "light red towel" - }, -/obj/item/weapon/towel{ - color = "#FF6666"; - name = "light red towel"; - pixel_y = 3 - }, -/obj/item/weapon/towel{ - color = "#FF6666"; - name = "light red towel"; - pixel_y = 6 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"Yi" = ( -/obj/item/clothing/under/bathrobe, -/obj/item/clothing/under/bathrobe, -/obj/item/clothing/under/bathrobe, -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"Yj" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant/minitree, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"Yk" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "civ2_airlock_control"; - pixel_x = 26; - pixel_y = 26; - tag_exterior_door = "civ2_airlock_exterior"; - tag_interior_door = "civ2_airlock_interior" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"Yl" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Ym" = ( -/turf/simulated/wall, -/area/surface/outpost/civilian/emergency_storage) -"Yn" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/lights/mixed, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/emergency_storage) -"Yo" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/indalsalven) -"Yp" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"Yq" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/emergency_storage) -"Yr" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/emergency_storage) -"Yt" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/security/maa) -"Yv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/random/toolbox, -/turf/simulated/floor/plating, -/area/surface/outpost/security/maa) -"Yw" = ( -/obj/structure/table/bench/standard, -/obj/item/device/radio/intercom/department/security{ - dir = 1; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/security/maa) -"Yx" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water, -/area/surface/outside/river/indalsalven) -"Yy" = ( -/obj/structure/closet/lasertag/red, -/obj/item/stack/flag/red, -/obj/machinery/light, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"YA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"YB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"YC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - operating = 0; - pixel_y = 24 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = 22 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"YD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"YG" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"YH" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"YI" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"YJ" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/random/powercell, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/smes) -"YK" = ( -/obj/structure/catwalk, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/smes) -"YL" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "SUBS - Civilian"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/smes) -"YM" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - name = "SMES Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/civilian/smes) -"YN" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"YO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"YP" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/civilian/sauna) -"YQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/stairs{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/civilian/fishing) -"YR" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"YS" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/civilian/pool) -"YT" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"YV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"YW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"YX" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/item/weapon/beach_ball, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"YY" = ( -/obj/structure/fence{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"YZ" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Za" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/junction, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"Zb" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Zc" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Zd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Ze" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Zf" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/civilian/pool) -"Zg" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/sauna) -"Zh" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/sauna) -"Zi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/stairs{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/civilian/sauna) -"Zj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"Zk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"Zm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"Zn" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"Zo" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"Zp" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"Zq" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Emergency Storage" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/civilian/emergency_storage) -"Zr" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/emergency_storage) -"Zs" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/emergency_storage) -"Zt" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/emergency_storage) -"Zu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/security/maa) -"Zv" = ( -/obj/structure/table/bench/standard, -/obj/random/maintenance/engineering, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/security/maa) -"Zw" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"Zx" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/surface/outpost/security/maa) -"Zy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"Zz" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"ZA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"ZB" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Master at Arms" - }, -/obj/machinery/door/firedoor/glass, -/obj/item/tape/engineering, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/security/maa) -"ZC" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/heavyduty{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable, -/turf/simulated/floor/plating, -/area/surface/outpost/security/smes) -"ZD" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"ZE" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/civilian/sauna) -"ZF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"ZG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"ZI" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"ZJ" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/normal) -"ZK" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/security/maa) -"ZL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"ZM" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/security) -"ZN" = ( -/turf/simulated/wall, -/area/surface/outpost/civilian/smes) -"ZO" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/orange/bordercorner2{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"ZP" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"ZQ" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/orange/bordercorner, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"ZR" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/orange/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/orange/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"ZS" = ( -/obj/effect/floor_decal/stairs{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/civilian/fishing) -"ZT" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"ZU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Pool" - }, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/civilian/pool) -"ZV" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"ZW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"ZX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"ZY" = ( -/obj/effect/floor_decal/spline/plain, -/obj/machinery/hologram/holopad, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"ZZ" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) +"aa" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/one) +"ab" = (/obj/structure/table/steel,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/path/plains) +"ac" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) +"ad" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"ae" = (/turf/simulated/floor/plating,/area/surface/outpost/security/maa) +"af" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"ag" = (/obj/machinery/conveyor{id = "mining_internal"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) +"ah" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"ai" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO - Gym"; dir = 1},/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) +"aj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"al" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) +"am" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"an" = (/obj/structure/closet/secure_closet/guncabinet,/obj/effect/floor_decal/corner/red{dir = 6},/obj/effect/floor_decal/corner/red{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) +"ao" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) +"ap" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/industrial/danger/corner{dir = 8},/obj/machinery/computer/cryopod/gateway{pixel_y = 30},/obj/machinery/newscaster{pixel_x = 29},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) +"aq" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 4"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"ar" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/random/powercell,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/camera/network/engineering_outpost{c_tag = "SUBS - Left Wing"; dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) +"as" = (/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"at" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) +"au" = (/obj/structure/closet/hydrant{pixel_x = -32},/obj/item/clothing/glasses/meson,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/emergencystorage) +"av" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"aw" = (/obj/machinery/vending/sol{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"ax" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"ay" = (/obj/structure/closet/firecloset,/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"az" = (/obj/structure/table/bench/marble,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"aA" = (/obj/structure/table/woodentable,/obj/machinery/light{dir = 8},/obj/item/weapon/material/ashtray,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) +"aB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"aD" = (/obj/effect/mist,/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/sauna) +"aE" = (/obj/structure/fence/cut/large,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) +"aF" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"aG" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) +"aI" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"aJ" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"aK" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) +"aL" = (/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"aM" = (/obj/structure/catwalk,/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) +"aN" = (/obj/machinery/light_switch{dir = 8; pixel_x = 23; pixel_y = 12},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"aO" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/reinforced,/area/surface/outpost/main/exploration/containment) +"aP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) +"aQ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/exterior) +"aR" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"aS" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"aT" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/security) +"aV" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"aW" = (/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/pool) +"aX" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"aY" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"aZ" = (/obj/structure/closet/crate,/obj/item/weapon/tool/crowbar/red,/obj/item/frame/light,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"ba" = (/turf/simulated/wall/r_wall,/area/surface/outpost/civilian/emergency_storage) +"bb" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main5_airlock_control"; pixel_x = 26; pixel_y = -26; tag_exterior_door = "main5_airlock_exterior"; tag_interior_door = "main5_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) +"bc" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges,/obj/effect/zone_divider,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"bf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"bg" = (/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 8},/obj/item/weapon/mining_scanner,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/head/helmet/space/void/mining,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"bh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"bi" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"bj" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 4},/obj/machinery/conveyor_switch/oneway{id = "mining_north"; name = "mining conveyor"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/exterior) +"bk" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main8_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main8_airlock_control"; name = "External Access Button"; pixel_x = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_three) +"bl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/security) +"bm" = (/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"bn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"bo" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) +"bp" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/engineering{name = "Engineering Outpost Substation"; req_access = list(11)},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/engineering/smes) +"bq" = (/obj/structure/fence/post{dir = 8},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) +"br" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/orange/border{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"bs" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/window/reinforced{dir = 8},/obj/machinery/computer/crew{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"bt" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"bu" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/machinery/vending/cigarette{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"bv" = (/turf/simulated/shuttle/wall/voidcraft,/area/surface/outpost/wall) +"bw" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic{dir = 1},/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) +"bx" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/table/glass,/obj/machinery/status_display{pixel_y = -32},/obj/item/weapon/material/ashtray/plastic,/obj/random/cigarettes,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"by" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/corner/blue/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"bz" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) +"bB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"bD" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) +"bE" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/structure/table/steel,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/item/weapon/extinguisher/mini,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"bG" = (/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/left_three) +"bH" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/purple/border{dir = 9},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"bI" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) +"bK" = (/obj/item/device/universal_translator,/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"bL" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) +"bM" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) +"bN" = (/turf/simulated/wall,/area/surface/outpost/mining_main/storage) +"bO" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/dorms/dorm_1) +"bP" = (/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/surface/outside/plains/mountains) +"bQ" = (/obj/structure/boxingropeenter{dir = 8},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) +"bR" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"bS" = (/obj/structure/table/glass,/obj/item/device/paicard,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"bT" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) +"bV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/monitoring) +"bW" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor,/obj/structure/bedsheetbin,/obj/effect/floor_decal/corner/white/border,/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"bX" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/obj/structure/window/reinforced{dir = 8},/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"bY" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"bZ" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"ca" = (/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/monitoring) +"cb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"cc" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"cd" = (/obj/structure/boxingrope{layer = 4.1},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) +"ce" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"cf" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) +"cg" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"ch" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"ci" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"cj" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"ck" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/security) +"cl" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/machinery/gear_painter,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"cm" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"cn" = (/obj/structure/ore_box,/obj/effect/floor_decal/corner/brown{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) +"co" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/machinery/lapvend,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"cp" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"cq" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outpost/main/airlock/right_one) +"cr" = (/turf/simulated/wall,/area/surface/outpost/mining_main/emergencystorage) +"cs" = (/obj/structure/table/standard,/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/machinery/light{dir = 8},/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = -4; pixel_y = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"ct" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"cu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) +"cv" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"cw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) +"cx" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/orangedouble,/turf/simulated/floor/carpet/oracarpet,/area/surface/outpost/main/dorms/dorm_1) +"cy" = (/obj/effect/step_trigger/teleporter/bridge/south_to_north,/obj/structure/railing{dir = 1},/turf/simulated/floor/water,/area/surface/outside/river/indalsalven) +"cz" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor/carpet/turcarpet,/area/surface/outpost/main/dorms/dorm_3) +"cA" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"cB" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/two) +"cC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"cD" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) +"cE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/corridor/right_lower) +"cF" = (/obj/effect/zone_divider,/turf/simulated/floor/water/deep,/area/surface/outside/ocean) +"cG" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/heavyduty{d2 = 2; icon_state = "0-2"},/obj/structure/cable,/turf/simulated/floor/plating,/area/surface/outpost/security/smes) +"cI" = (/obj/machinery/button/remote/blast_door{id = "garage2"; name = "Garage Shutter Control"; pixel_x = 22},/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outpost/main/airlock/right_one) +"cJ" = (/obj/effect/zone_divider,/turf/simulated/mineral/ignore_mapgen/sif,/area/surface/outside/plains/mountains) +"cK" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "civ1_airlock_control"; pixel_x = -26; pixel_y = 26; tag_exterior_door = "civ1_airlock_exterior"; tag_interior_door = "civ1_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"cL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"cM" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"cN" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) +"cO" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/storage) +"cP" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"cQ" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"cR" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/cable/heavyduty{d2 = 2; icon_state = "0-2"},/obj/structure/cable,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) +"cS" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/random/toolbox,/turf/simulated/floor/plating,/area/surface/outpost/security/maa) +"cT" = (/turf/simulated/floor/water/deep/pool,/area/surface/outpost/civilian/pool) +"cU" = (/obj/machinery/mineral/equipment_vendor/survey,/obj/effect/floor_decal/corner/purple{dir = 5},/obj/effect/floor_decal/corner/purple{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) +"cW" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"cX" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/machinery/door/window/brigdoor/westleft{name = "Medical Supplies"; req_access = null; req_one_access = list(5,43)},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"cY" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Exploration Prep"; req_access = null; req_one_access = list(43,67)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/multi_tile/glass,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/exploration) +"cZ" = (/obj/structure/snowman{name = "Frosty"},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) +"da" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"db" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/orange/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/orange/bordercorner2{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"dc" = (/obj/structure/table/rack,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) +"dd" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/atmos_room) +"de" = (/obj/machinery/vending/medical{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/machinery/status_display{pixel_x = -32},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Search and Rescue Port"},/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) +"df" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) +"dg" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/brown/border{dir = 10},/obj/structure/table/rack,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 8},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"dh" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"dj" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"dk" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"dm" = (/obj/effect/floor_decal/corner/red{dir = 9},/obj/effect/floor_decal/corner/red{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) +"dn" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/white/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"do" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Hallway 4"; dir = 1; name = "MO Right Wing - Hallway Three"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"dp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet/purcarpet,/area/surface/outpost/main/dorms/dorm_2) +"dq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"dr" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"dt" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/blue,/obj/machinery/light_switch{pixel_x = -12; pixel_y = -22},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"du" = (/turf/simulated/wall,/area/surface/outpost/main/dorms/dorm_4) +"dv" = (/obj/structure/dispenser/oxygen,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) +"dw" = (/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/brown/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 4},/obj/item/weapon/storage/box/nifsofts_mining,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"dx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) +"dy" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/dorms/dorm_6) +"dA" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/greendouble,/turf/simulated/floor/carpet/turcarpet,/area/surface/outpost/main/dorms/dorm_3) +"dB" = (/obj/machinery/alarm{dir = 8; frequency = 1441; pixel_x = 22},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"dC" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "sauna_tint2"},/obj/structure/window/reinforced/polarized{dir = 4; id = "sauna_tint2"},/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) +"dE" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/power/smes/buildable{RCon_tag = "Outpost Parallel - Main 2"; charge = 2e+007; cur_coils = 4; input_attempt = 1; input_level = 750000; output_level = 100},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"dF" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) +"dG" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Laundry"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/laundry) +"dH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"dI" = (/obj/effect/overlay/snow/floor,/obj/structure/table/bench/steel,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) +"dJ" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) +"dK" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Showers"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/showers) +"dL" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"dM" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"dN" = (/obj/structure/table/rack,/obj/item/weapon/shovel,/obj/item/weapon/tool/wrench,/obj/item/weapon/pickaxe,/obj/item/weapon/tool/crowbar,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/brown/border{dir = 5},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"dO" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"dP" = (/turf/simulated/wall/r_wall,/area/surface/outpost/civilian/smes) +"dQ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/maintenance_hatch{name = "Reactor Room Internal Access"; req_one_access = list(11)},/turf/simulated/floor/tiled/techfloor/grid,/area/surface/outpost/engineering/reactor_smes) +"dR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) +"dS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"dT" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 8},/obj/machinery/meter,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"dU" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"dV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"dW" = (/obj/structure/table/standard,/obj/machinery/light{dir = 4},/obj/item/weapon/dice/d20,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) +"dX" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"dY" = (/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/reactor_smes) +"dZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/storage) +"ea" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"eb" = (/obj/structure/fence/corner{dir = 10},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) +"ec" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"ed" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/exploration) +"ef" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Hallway 6"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"eg" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/regular{pixel_x = -5; pixel_y = 5},/obj/item/weapon/storage/firstaid/regular{pixel_x = -5; pixel_y = 5},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = -5},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = -5},/obj/item/weapon/storage/firstaid/regular{pixel_x = -5; pixel_y = -5},/obj/item/weapon/storage/firstaid/regular{pixel_x = -5; pixel_y = -5},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"eh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Emergency Storage"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/emergency_storage/one) +"ej" = (/obj/machinery/vending/loadout/loadout_misc,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/white/border{dir = 9},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Laundry 1"; dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"ek" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"el" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/effect/overlay/snow/floor/edges{dir = 6},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"em" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"en" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/machinery/door/firedoor/glass/hidden{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"eo" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"ep" = (/obj/structure/table/bench/marble,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"eq" = (/obj/structure/table/glass,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"er" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"es" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"et" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/machinery/computer/guestpass{pixel_y = 28},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"eu" = (/turf/simulated/wall,/area/surface/outpost/mining_main/tools) +"ev" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/radproof{id = "EngineReactor"; rad_resistance = 150},/turf/simulated/floor/reinforced,/area/surface/outpost/engineering/reactor_smes) +"ew" = (/obj/machinery/space_heater,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"ex" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) +"ez" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"eB" = (/obj/machinery/conveyor{id = "mining_north"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/exterior) +"eC" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"eD" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/vending/giftvendor,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"eE" = (/obj/effect/floor_decal/techfloor/orange{dir = 9},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) +"eF" = (/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"eG" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) +"eH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"eI" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"eJ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"eK" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) +"eL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"eM" = (/obj/effect/map_effect/portal/line/side_a,/turf/simulated/wall/solidrock,/area/surface/outside/plains/mountains) +"eN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) +"eO" = (/obj/effect/floor_decal/industrial/loading{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/refinery) +"eP" = (/turf/simulated/wall,/area/surface/outpost/mining_main) +"eQ" = (/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"eR" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/surface/outpost/civilian/emergency_storage) +"eS" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/landing_north) +"eT" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/purple/bordercorner,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"eU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) +"eV" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/atmos_room) +"eW" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; operating = 0; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/light_switch{pixel_x = -22; pixel_y = -10},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"eX" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/emergencystorage) +"eY" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"fa" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 10},/obj/machinery/light_switch{pixel_x = -22; pixel_y = -10},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) +"fb" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_one) +"fc" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance_hatch{name = "Outpost SMES Room"; req_one_access = list(11)},/turf/simulated/floor/tiled/techfloor/grid,/area/surface/outpost/engineering/reactor_smes) +"fd" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"fe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"ff" = (/obj/effect/shuttle_landmark{base_area = /area/surface/outside/plains/normal; base_turf = /turf/simulated/floor/outdoors/snow/sif/planetuse; landmark_tag = "outpost_nw"; name = "Northwest Outpost Perimiter"},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/normal) +"fg" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/orange/border{dir = 10},/obj/machinery/light{dir = 8},/obj/item/weapon/storage/box/wormcan/sickly{pixel_x = -3; pixel_y = 3},/obj/item/weapon/storage/box/wormcan/sickly{pixel_x = 3},/obj/machinery/camera/network/civilian{c_tag = "CO - Fishing 2"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"fi" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"fj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"fk" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"fl" = (/obj/item/weapon/banner/virgov,/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) +"fm" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) +"fn" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) +"fo" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) +"fp" = (/turf/simulated/floor/water/shoreline,/area/surface/outside/ocean) +"fq" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Locker Room"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/showers) +"fr" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"fs" = (/obj/structure/table/glass,/obj/item/clothing/shoes/swimmingfins,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"ft" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"fu" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/monitoring) +"fv" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"fw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"fx" = (/turf/simulated/floor/tiled,/area/surface/outpost/security) +"fy" = (/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"fz" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"fA" = (/obj/structure/closet/hydrant{pixel_y = 32},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) +"fB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) +"fC" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"fD" = (/obj/machinery/mineral/input,/obj/structure/plasticflaps/mining,/obj/machinery/conveyor{dir = 8; id = "mining_external"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) +"fE" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/surface/outpost/mining_main/exterior) +"fF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"fG" = (/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"fH" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Airlock Access 3"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/turf/simulated/floor/tiled,/area/surface/outside/plains/outpost) +"fI" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Airlock"; dir = 9; name = "Engineering_Outpost"; network = list("Engineering")},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"fJ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning/dust{dir = 5},/obj/effect/floor_decal/industrial/warning/dust{dir = 10},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"fK" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) +"fL" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outpost/mining_main/exterior) +"fM" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"fN" = (/obj/effect/floor_decal/stairs{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/gym) +"fO" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/orange/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"fP" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "sec1_airlock_control"; name = "Internal Access Button"; pixel_x = 5; pixel_y = 26; req_one_access = list(1)},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "sec1_airlock_interior"; locked = 1; name = "Security Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/security) +"fQ" = (/turf/simulated/wall,/area/surface/outside/path/plains) +"fS" = (/obj/machinery/mineral/processing_unit,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) +"fT" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main3_airlock_control"; name = "External Access Button"},/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/landing_south) +"fU" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"fV" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) +"fY" = (/obj/structure/table/rack,/obj/item/weapon/shovel,/obj/item/weapon/tool/wrench,/obj/item/weapon/pickaxe,/obj/item/weapon/tool/crowbar,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/brown/border{dir = 6},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"fZ" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/effect/floor_decal/industrial/outline,/obj/machinery/portable_atmospherics/canister/empty,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"ga" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/exploration) +"gb" = (/turf/simulated/floor/reinforced,/area/surface/outpost/main/exploration/containment) +"gc" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"gd" = (/obj/machinery/light/small{dir = 1},/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"ge" = (/obj/item/clothing/suit/caution,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) +"gf" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) +"gg" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"gh" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 1},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) +"gj" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/search_and_rescue) +"gk" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/corridor/left_upper) +"gl" = (/obj/machinery/disposal,/obj/effect/floor_decal/corner/orange{dir = 9},/obj/effect/floor_decal/corner/orange{dir = 6},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"gm" = (/obj/machinery/conveyor{dir = 8; id = "mining_internal"},/obj/machinery/mineral/output,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) +"gn" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) +"go" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 1},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room) +"gp" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 28},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"gr" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) +"gs" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/structure/table/standard,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"gu" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) +"gw" = (/obj/machinery/fusion_fuel_compressor,/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Fuel Storage"; dir = 6; name = "Engineering_Outpost"; network = list("Engineering")},/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) +"gx" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/path/plains) +"gy" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; frequency = 1438; id = "rust_cooling_in"; name = "Coolant Injector"; pixel_y = 1; power_rating = 30000; use_power = 1; volume_rate = 700},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) +"gz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"gB" = (/obj/machinery/button/windowtint{id = "sauna_tint1"; pixel_x = -5; pixel_y = 22},/obj/machinery/button/windowtint{id = "sauna_tint2"; pixel_x = 6; pixel_y = 22},/obj/effect/floor_decal/spline/fancy/wood/corner{dir = 8},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"gC" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"gD" = (/turf/simulated/floor/water/shoreline{dir = 9},/area/surface/outside/ocean) +"gE" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"gG" = (/turf/unsimulated/wall/planetary/sif,/area/surface/outside/plains/mountains) +"gH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"gI" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/two) +"gJ" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"gK" = (/obj/structure/sign/electricshock,/turf/simulated/wall,/area/surface/outpost/main/gen_room/smes_left) +"gL" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"gM" = (/obj/structure/table/bench/steel,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"gN" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) +"gO" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"gP" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/orange/border{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"gQ" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"gR" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/atmos_room) +"gS" = (/obj/structure/closet/crate/freezer/rations,/obj/effect/floor_decal/industrial/outline,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/corridor/right_upper) +"gT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"gV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"gW" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"gX" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"gZ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"ha" = (/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) +"hb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"hc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_6) +"hd" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/purple/border{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"he" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/table/rack,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock 1"; dir = 4},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_one) +"hf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"hg" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"hh" = (/obj/structure/closet/secure_closet/guncabinet{req_access = newlist(); req_one_access = list(43,67)},/obj/effect/floor_decal/corner/purple{dir = 5},/obj/effect/floor_decal/corner/purple{dir = 10},/obj/item/weapon/gun/energy/locked/frontier,/obj/item/weapon/gun/energy/locked/frontier,/obj/item/weapon/gun/energy/locked/frontier,/obj/item/weapon/gun/energy/locked/frontier,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) +"hi" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) +"hk" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"hl" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main7_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main7_airlock_control"; name = "External Access Button"; pixel_y = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_two) +"hm" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/fitness/punching_bag/clown,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/corner/black{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"hn" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"ho" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"hq" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/tools) +"hr" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "civ2_airlock_control"; name = "Internal Access Button"; pixel_x = 26; pixel_y = 5},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "civ2_airlock_interior"; locked = 1; name = "Civilian Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/civilian/sauna) +"hs" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/machinery/camera/network/civilian{c_tag = "CO - Airlock Access 2"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) +"ht" = (/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"hu" = (/obj/machinery/disposal,/obj/machinery/light_construct{dir = 4},/obj/effect/floor_decal/corner/red{dir = 9},/obj/effect/floor_decal/corner/red{dir = 6},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) +"hv" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/path/plains) +"hw" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_three) +"hx" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/random/powercell,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) +"hy" = (/obj/structure/cable/blue,/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Shuttle Landing"; charge = 5e+006; input_attempt = 1; input_level = 150000; output_level = 150000},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) +"hA" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/machinery/camera/network/security{c_tag = "SO - Airlock Access"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"hB" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic{dir = 1},/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_one) +"hC" = (/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) +"hD" = (/obj/machinery/door/blast/shutters{dir = 8; id = "production1"; name = "Production Shutters"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/mining_main/refinery) +"hE" = (/obj/effect/landmark/event_spawn/dronepod_landing,/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) +"hF" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/black,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"hG" = (/obj/effect/step_trigger/teleporter/bridge/east_to_west,/obj/structure/railing{dir = 8},/turf/simulated/floor/water,/area/surface/outside/river/indalsalven) +"hH" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/overlay/snow/floor/edges{dir = 6},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"hI" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/exploration/containment) +"hJ" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"hK" = (/turf/simulated/floor/outdoors/snow,/area/surface/outside/plains/outpost) +"hL" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"hM" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"hN" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"hO" = (/turf/simulated/floor/water/shoreline{dir = 8},/area/surface/outside/ocean) +"hP" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"hQ" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/symbol/lo{pixel_x = -32},/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"hR" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"hS" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1,/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Tool Storage"; req_one_access = list(48)},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/tools) +"hT" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 10},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"hU" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic,/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) +"hV" = (/obj/structure/fence/corner{dir = 4},/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) +"hW" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_two) +"hX" = (/obj/structure/table/rack,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/window/basic{dir = 4},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic,/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_three) +"hZ" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"ib" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/emergency_storage/two) +"ic" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/left_three) +"id" = (/obj/effect/floor_decal/borderfloor,/obj/structure/closet/wardrobe/pjs,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"ie" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/right_lower) +"if" = (/turf/simulated/floor/water/deep,/area/surface/outside/river/indalsalven) +"ig" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/surface/outside/plains/outpost) +"ih" = (/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/brown/border{dir = 5},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/light{dir = 4},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/obj/item/weapon/pickaxe,/obj/item/device/gps/mining,/obj/item/clothing/head/hardhat/orange,/obj/machinery/vending/wallmed1{pixel_x = 25},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"ii" = (/obj/machinery/teleport/hub,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/teleporter) +"ij" = (/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/water/deep/pool,/area/surface/outpost/civilian/pool) +"il" = (/obj/structure/fence/corner,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/outpost) +"im" = (/obj/machinery/conveyor{dir = 4; id = "mining_internal"},/obj/machinery/mineral/output,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) +"in" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) +"io" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"ip" = (/obj/effect/shuttle_landmark{landmark_tag = "response_ship_planet"; name = "Sif Surface East"},/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/normal) +"iq" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room) +"ir" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"is" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"it" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/heavyduty{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"iu" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) +"iw" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"ix" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"iy" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"iz" = (/obj/machinery/light/small{dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"iA" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/tools) +"iC" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 6},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"iD" = (/obj/machinery/power/port_gen/pacman,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"iE" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/obj/machinery/light{dir = 8},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"iF" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/grass/sif/forest/planetuse,/area/surface/outside/plains/normal) +"iG" = (/obj/effect/overlay/snow/floor,/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/atmos_room) +"iH" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/industrial/warning/corner,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/reactor_smes) +"iI" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_three) +"iJ" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/mob/living/simple_mob/animal/passive/mouse/mining,/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) +"iK" = (/obj/structure/table/woodentable,/obj/structure/flora/pottedplant/small,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) +"iL" = (/obj/effect/overlay/snow/floor,/obj/structure/grille,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/atmos_room) +"iM" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/left_one) +"iN" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) +"iO" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Central Hall"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"iQ" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) +"iR" = (/obj/structure/bed/chair{dir = 1},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"iS" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"iT" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/air_sensor{frequency = 1438; id_tag = "rustengine_sensor"; output = 63},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) +"iU" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "ENG_Outpost_airlock_control"; pixel_x = 26; pixel_y = 26; tag_exterior_door = "ENG_Outpost_airlock_exterior"; tag_interior_door = "ENG_Outpost_airlock_interior"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"iV" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/right_lower) +"iW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"iX" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"iY" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"iZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) +"ja" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"jb" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"jc" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"jd" = (/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) +"je" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_engineering{name = "Reactor Monitoring Room"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/engineering/monitoring) +"jf" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"jg" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/security) +"ji" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/civilian/sauna) +"jj" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"jk" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) +"jl" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) +"jm" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"jn" = (/obj/item/stack/material/wood,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"jo" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"jp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"jq" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"jr" = (/obj/item/weapon/reagent_containers/glass/bucket/wood,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"js" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) +"jt" = (/obj/machinery/door/firedoor/glass/hidden{dir = 2},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"ju" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "mining2_airlock_exterior"; locked = 1; name = "Mining Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "mining2_airlock_control"; name = "External Access Button"; pixel_x = -26; req_one_access = list(48,10)},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/mining_main/tools) +"jv" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"jw" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 4},/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/item/clothing/mask/gas,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_two) +"jx" = (/obj/effect/floor_decal/industrial/outline/red,/obj/machinery/light,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/landing_north) +"jy" = (/obj/machinery/computer/guestpass{pixel_y = 28},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "sec1_airlock_control"; pixel_x = 26; pixel_y = 26; req_one_access = list(1); tag_exterior_door = "sec1_airlock_exterior"; tag_interior_door = "sec1_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"jz" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"jA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Teleporter Hallway"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"jD" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"jE" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_one) +"jF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"jG" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"jH" = (/obj/structure/sign/warning/caution{desc = "This appears to be a sign warning people that the other side is dangerous. It also says that NanoTrasen cannot guarantee your safety beyond this point."; name = "\improper WARNING: NO ACCESS"},/turf/simulated/shuttle/wall/voidcraft,/area/surface/outpost/wall) +"jI" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"jJ" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"jK" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/light_switch{pixel_x = -21; pixel_y = -11},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"jL" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"jM" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/box/donkpockets,/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"jN" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/landing_south) +"jO" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) +"jQ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"jR" = (/obj/machinery/vending/foodasian{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"jS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"jT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) +"jU" = (/obj/item/weapon/stock_parts/motor,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"jV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"jW" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"jX" = (/obj/effect/step_trigger/teleporter/bridge/north_to_south,/obj/structure/railing,/turf/simulated/floor/water,/area/surface/outside/river/indalsalven) +"jY" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"jZ" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/overlay/snow/floor/edges{dir = 9},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"ka" = (/obj/structure/closet/athletic_mixed,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"kb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/multi_tile/metal{name = "Fauna Containment"; req_one_access = list(1,43)},/obj/machinery/door/firedoor/multi_tile/glass,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/exploration/containment) +"kc" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"kd" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"ke" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"kf" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/white/border{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"kg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"kh" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/tiled,/area/surface/outpost/security) +"ki" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/exterior) +"kj" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/machinery/vending/cigarette{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"kk" = (/obj/effect/floor_decal/borderfloor,/obj/structure/table/standard,/obj/item/clothing/under/shorts/blue,/obj/item/clothing/gloves/boxing/blue,/obj/effect/floor_decal/corner/black{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"kl" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/bluedouble,/turf/simulated/floor/carpet/blue,/area/surface/outpost/main/dorms/dorm_5) +"km" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/light,/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_y = -30},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"kn" = (/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 4},/obj/item/weapon/mining_scanner,/obj/machinery/status_display{pixel_y = 32},/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/head/helmet/space/void/mining,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"ko" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/floor_decal/corner/purple/border{dir = 6},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) +"kp" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) +"kq" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/box/matches,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) +"ks" = (/obj/structure/closet/hydrant{pixel_x = -32},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/two) +"ku" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Teleporter Hallway"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"kv" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/landing_south) +"kw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"kx" = (/turf/simulated/wall,/area/surface/outpost/main/gen_room/smes_right) +"ky" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/path/plains) +"kz" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/industrial/danger/corner{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/teleporter) +"kA" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"kB" = (/obj/structure/table/bench/standard,/turf/simulated/floor/plating,/area/surface/outpost/security/maa) +"kC" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main7_airlock_control"; name = "Internal Access Button"; pixel_x = 6; pixel_y = -26},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main7_airlock_interior"; locked = 1; name = "Main Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_two) +"kD" = (/obj/structure/table/bench/marble,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"kE" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -26},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"kF" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"kG" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"kH" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/red/border{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) +"kI" = (/obj/structure/table/steel,/obj/random/junk,/obj/random/tool,/obj/machinery/camera/network/engineering_outpost{c_tag = "SUBS - Main Outpost"; dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) +"kJ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/black{dir = 5},/obj/structure/reagent_dispensers/water_cooler/full,/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"kK" = (/obj/machinery/sleep_console{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/search_and_rescue) +"kL" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/smes) +"kM" = (/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"kN" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"kO" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"kP" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room/smes_right) +"kQ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"kR" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"kS" = (/obj/machinery/conveyor{id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) +"kU" = (/obj/machinery/mineral/input,/obj/machinery/light/small{dir = 4},/obj/machinery/conveyor{dir = 8; id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) +"kV" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"kW" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/highsecurity{name = "Teleporter Access"; req_access = newlist(); req_one_access = list(17)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/teleporter) +"kX" = (/obj/machinery/light,/obj/machinery/atmospherics/unary/heater/sauna{dir = 8; icon_state = "heater_1"; use_power = 1},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/civilian/sauna) +"kY" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"kZ" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) +"la" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"lb" = (/obj/structure/toilet,/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_1) +"lc" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/monitoring) +"ld" = (/turf/simulated/wall,/area/surface/outpost/main/dorms/dorm_1) +"le" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"lf" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/regular,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/white/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"lg" = (/obj/machinery/power/generator{anchored = 1; dir = 8},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"lh" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/reinforced,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Airlock 3"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_three) +"li" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloor,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/effect/floor_decal/corner/red/border,/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/security) +"lj" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/mining_main) +"lk" = (/obj/item/weapon/stool/padded,/obj/machinery/camera/network/civilian{c_tag = "CO - Pool 2"; dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"ll" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"lm" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main8_airlock_control"; name = "Internal Access Button"; pixel_x = -26; pixel_y = -6},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main8_airlock_interior"; locked = 1; name = "Main Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_three) +"lo" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"lp" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) +"lq" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/gym) +"lr" = (/obj/machinery/vending/snack{dir = 8},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 2"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"ls" = (/obj/machinery/vending/loadout,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"lt" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) +"lu" = (/obj/item/clothing/head/hardhat/orange,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"lw" = (/obj/effect/landmark/event_spawn/dronepod_landing,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/normal) +"lx" = (/obj/structure/table/marble,/obj/item/device/starcaster_news,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"ly" = (/obj/structure/toilet{dir = 1},/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_6) +"lz" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/security/maa) +"lA" = (/turf/simulated/wall/dungeon{icon = 'icons/obj/doors/shuttledoors.dmi'; icon_state = "door_locked"; name = "Wall Gate"},/area/surface/outpost/wall) +"lB" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) +"lC" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/radproof{rad_resistance = 150},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"lD" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor/carpet/purcarpet,/area/surface/outpost/main/dorms/dorm_2) +"lE" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/red/border{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) +"lF" = (/obj/machinery/light{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"lG" = (/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) +"lI" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/border_only,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"lJ" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) +"lK" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"lL" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"lM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"lN" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"lO" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"lP" = (/turf/simulated/wall,/area/surface/outpost/mining_main/cave) +"lQ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) +"lR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"lS" = (/obj/machinery/door/firedoor/glass/hidden{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"lT" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 4},/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_three) +"lU" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"lV" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/camera/network/main_outpost{c_tag = "ATV Garage 2"; dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) +"lW" = (/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/atmos_room) +"lX" = (/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/power/smes/buildable{RCon_tag = "Outpost Parallel - Main 1"; charge = 2e+007; cur_coils = 4; input_attempt = 1; input_level = 750000; output_level = 750000},/obj/structure/cable,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"lY" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"lZ" = (/obj/effect/overlay/snow/floor,/obj/machinery/vending/cola,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) +"ma" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) +"mb" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"mc" = (/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/left_two) +"md" = (/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) +"mf" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"mh" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"mi" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"mj" = (/obj/effect/floor_decal/corner/brown{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/light,/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) +"mk" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) +"ml" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"mm" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"mn" = (/obj/structure/boxingrope{dir = 1},/obj/structure/boxingrope{dir = 4},/obj/structure/boxingrope{dir = 6},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) +"mo" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_1) +"mq" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"mr" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) +"ms" = (/obj/structure/ore_box,/obj/effect/floor_decal/corner/brown/full{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) +"mt" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) +"mu" = (/obj/item/weapon/bikehorn/rubberducky,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"mv" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/red/border{dir = 6},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/security) +"mw" = (/obj/machinery/door/firedoor/glass/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"mx" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/obj/machinery/light,/obj/structure/closet/secure_closet/pilot,/obj/item/device/cataloguer/compact,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"my" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) +"mz" = (/obj/structure/table/standard,/obj/item/weapon/soap/syndie,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_6) +"mA" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_5) +"mB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"mC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/purcarpet,/area/surface/outpost/main/dorms/dorm_2) +"mD" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) +"mE" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"mF" = (/obj/machinery/vending/fishing{dir = 8},/obj/effect/floor_decal/corner/orange{dir = 6},/obj/effect/floor_decal/corner/orange{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"mG" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"mH" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/white/border{dir = 6},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"mI" = (/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/tools) +"mJ" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/exploration/containment) +"mK" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/red/border{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) +"mL" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/table/glass,/obj/machinery/light,/obj/item/device/communicator,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"mM" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"mN" = (/obj/structure/table/rack,/obj/item/weapon/material/fishing_net,/obj/item/weapon/material/fishing_net,/obj/item/weapon/material/fishing_net,/obj/item/weapon/material/fishing_net,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"mO" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) +"mP" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"mQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) +"mR" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges{dir = 1},/obj/effect/zone_divider,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"mS" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "civ1_airlock_exterior"; locked = 1; name = "Civilian Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "civ1_airlock_control"; name = "External Access Button"; pixel_x = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/civilian/fishing) +"mT" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/light_switch{pixel_x = -22; pixel_y = -10},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"mU" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_2) +"mV" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) +"mW" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/porta_turret/industrial/teleport_defense,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/teleporter) +"mX" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"mY" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/catwalk,/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/camera/emp_proof{c_tag = "SUBS - Eng Outpost"; dir = 4; name = "Engineering_Outpost"; network = list("Engineering Outpost")},/obj/machinery/light_switch{pixel_x = -11; pixel_y = 21},/turf/simulated/floor/plating,/area/surface/outpost/engineering/smes) +"na" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"nc" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"nd" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) +"ne" = (/obj/effect/zone_divider,/turf/simulated/floor/water/shoreline{dir = 8},/area/surface/outside/ocean) +"nf" = (/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Auxiliary Room"; dir = 10; name = "Engineering_Outpost"; network = list("Engineering")},/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"ng" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"nh" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"ni" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"nj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"nk" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"nl" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) +"nm" = (/obj/structure/table/rack/shelf,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/item/weapon/gun/energy/locked/phasegun/rifle{pixel_y = 3},/obj/item/weapon/gun/energy/locked/phasegun/rifle{pixel_y = -4},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/machinery/camera/network/mining{c_tag = "PO - Mining Hallway 1"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"no" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"np" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/tools) +"nq" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outpost/main/airlock/right_two) +"nr" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"ns" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"nt" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"nu" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"nv" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"nw" = (/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) +"nx" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"ny" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/heavyduty{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) +"nz" = (/obj/effect/floor_decal/borderfloor/cee,/obj/effect/floor_decal/industrial/danger/cee,/obj/machinery/door/window/brigdoor/westleft{name = "Containment Pen"; req_access = newlist(); req_one_access = list(43,1)},/obj/machinery/door/window/brigdoor/eastright{name = "Containment Pen"; req_access = newlist(); req_one_access = list(43,1)},/obj/machinery/door/blast/regular/open{id = "pen"; name = "Containment Lockdown Blast Doors"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"nA" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"nC" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) +"nD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"nE" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/browndouble,/turf/simulated/floor/carpet/bcarpet,/area/surface/outpost/main/dorms/dorm_4) +"nF" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small,/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) +"nG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"nH" = (/obj/structure/fence{dir = 8},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) +"nI" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall,/area/surface/outpost/security/smes) +"nJ" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/phoronglass,/obj/fiftyspawner/rglass,/obj/fiftyspawner/rods,/obj/fiftyspawner/steel,/obj/machinery/camera/network/engineering_outpost{c_tag = "ENG - Mining Outpost Power 1"; dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"nK" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) +"nL" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/left_lower) +"nM" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) +"nN" = (/obj/machinery/power/port_gen/pacman,/obj/machinery/camera/network/engineering_outpost{c_tag = "ENG - Mining Outpost Power 2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"nO" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/corner/brown{dir = 5},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) +"nP" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"nQ" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"nR" = (/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Engineering Outpost"; charge = 5e+006; input_attempt = 1; input_level = 150000; output_level = 150000},/obj/structure/cable/blue,/turf/simulated/floor/plating,/area/surface/outpost/engineering/smes) +"nS" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/pool) +"nT" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/reactor_smes) +"nU" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light/small{dir = 4},/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room/smes_left) +"nV" = (/turf/simulated/wall/r_wall,/area/surface/outpost/civilian/fishing) +"nW" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"nX" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"nY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/monitoring) +"nZ" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"oa" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue/border,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"ob" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"oc" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/camera/network/main_outpost{c_tag = "ATV Garage 1"; dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) +"od" = (/obj/structure/table,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"oe" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic,/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) +"of" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 5},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"og" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"oh" = (/obj/machinery/hologram/holopad,/obj/machinery/vending/wallmed1{name = "Emergency NanoMed"; pixel_y = 28},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"oi" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"oj" = (/obj/structure/table/standard,/obj/item/weapon/soap/deluxe,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_1) +"ok" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"ol" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"om" = (/obj/structure/closet/secure_closet/explorer,/obj/item/clothing/mask/gas/half,/obj/item/device/cataloguer,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) +"on" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"oo" = (/obj/structure/closet/secure_closet/explorer,/obj/item/weapon/pickaxe,/obj/machinery/light{dir = 1},/obj/item/device/cataloguer,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) +"op" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"os" = (/obj/structure/table/standard,/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/random/soap,/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"ot" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"ou" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_three) +"ow" = (/obj/structure/flora/pottedplant/fern,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"ox" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"oy" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) +"oA" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/heavyduty{d2 = 2; icon_state = "0-2"},/obj/structure/cable,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"oB" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/one) +"oC" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/orange/border{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"oD" = (/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/monitoring) +"oE" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/obj/structure/catwalk,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/path/plains) +"oF" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/white/border{dir = 9},/obj/machinery/computer/timeclock/premade/north,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"oH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"oI" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "mining1_airlock_control"; name = "Internal Access Button"; pixel_x = 5; pixel_y = -26; req_one_access = list(48)},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "mining1_airlock_interior"; locked = 1; name = "Mining Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/mining_main/storage) +"oJ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/blue/bordercorner2,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"oL" = (/obj/structure/ore_box,/obj/effect/floor_decal/corner/brown/full{dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) +"oM" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/corridor) +"oN" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"oO" = (/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"oP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"oQ" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"oR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/left_one) +"oS" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) +"oT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet,/area/surface/outpost/main/dorms/dorm_6) +"oU" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) +"oV" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"oX" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/atmos_room) +"oY" = (/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"oZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) +"pa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/oracarpet,/area/surface/outpost/main/dorms/dorm_1) +"pb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"pc" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/item/weapon/storage/laundry_basket,/obj/effect/floor_decal/corner/white/border{dir = 6},/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"pd" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/search_and_rescue) +"pe" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"pf" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) +"pg" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"ph" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) +"pi" = (/obj/structure/table/woodentable,/obj/machinery/light{dir = 8},/obj/item/weapon/lipstick/random,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) +"pj" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"pk" = (/obj/effect/floor_decal/spline/plain{dir = 9},/obj/item/weapon/beach_ball,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"pm" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/atmos_room) +"pn" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Airlock Access 2"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) +"po" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/surface/outpost/civilian/emergency_storage) +"pp" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) +"pr" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"ps" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"pt" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"pu" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"pv" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/structure/cable/heavyduty{icon_state = "2-8"},/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"pw" = (/obj/structure/fence/end{dir = 4},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) +"px" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"py" = (/obj/structure/closet/crate,/obj/item/stack/material/phoron{amount = 25},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"pz" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/machinery/lapvend{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"pA" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"pB" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_4) +"pC" = (/turf/simulated/mineral/ignore_mapgen/sif,/area/surface/outside/plains/mountains) +"pD" = (/obj/structure/table/rack/shelf,/obj/effect/floor_decal/corner/purple{dir = 10},/obj/effect/floor_decal/corner/purple{dir = 5},/obj/item/weapon/tank/oxygen{pixel_x = -2; pixel_y = 3},/obj/item/weapon/tank/oxygen{pixel_x = 1; pixel_y = -5},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) +"pE" = (/obj/structure/stasis_cage,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/exploration/containment) +"pF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) +"pG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) +"pH" = (/obj/structure/table/steel,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"pI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_6) +"pJ" = (/obj/effect/decal/cleanable/dirt,/obj/vehicle/train/engine/quadbike{dir = 2},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) +"pK" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_2) +"pL" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"pM" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/civilian/fishing) +"pN" = (/turf/simulated/wall,/area/surface/outpost/main/search_and_rescue) +"pO" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_one) +"pP" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) +"pQ" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"pR" = (/obj/structure/closet,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/orange/border{dir = 1},/obj/item/clothing/gloves/duty,/obj/item/clothing/gloves/duty,/obj/item/clothing/under/serviceoveralls,/obj/item/clothing/under/serviceoveralls,/obj/item/clothing/accessory/storage/webbing,/obj/item/clothing/accessory/storage/webbing,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"pS" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/sauna) +"pT" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) +"pU" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) +"pV" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust/corner,/obj/structure/cable/heavyduty{icon_state = "2-4"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"pW" = (/turf/simulated/floor/water/shoreline/corner{dir = 1},/area/surface/outside/ocean) +"pX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"pY" = (/obj/item/stack/flag/green{pixel_x = -4},/obj/item/stack/flag/red,/obj/item/stack/flag/yellow{pixel_x = 4},/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/brown/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"pZ" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"qa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) +"qb" = (/obj/machinery/status_display{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"qc" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"qd" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 5; tag_north = 2; tag_south = 1; tag_west = 6},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"qe" = (/obj/effect/floor_decal/borderfloor,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"qf" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 1},/obj/machinery/atmospherics/unary/heat_exchanger{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"qg" = (/turf/simulated/wall,/area/surface/outpost/main/bar) +"qh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"qi" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"qj" = (/obj/machinery/computer/timeclock/premade/east,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"qk" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Reactor Room Access"; dir = 10; name = "Engineering_Outpost"; network = list("Engineering")},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/monitoring) +"ql" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/structure/closet/secure_closet/medical_wall{name = "O- Blood Locker"; pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/visible,/obj/item/weapon/reagent_containers/blood/OPlus,/obj/item/weapon/reagent_containers/blood/OPlus,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"qm" = (/obj/structure/table/bench/standard,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) +"qn" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"qo" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 8},/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_two) +"qp" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/obj/structure/coatrack,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) +"qq" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"qr" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"qs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch{name = "Reactor Auxiliary Room"; req_one_access = list(11)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/yellow{d1 = 9; d2 = 10; icon_state = "9-10"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"qt" = (/obj/structure/flora/pottedplant/dead,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"qu" = (/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2,/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) +"qv" = (/obj/machinery/mineral/stacking_machine,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) +"qw" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/maintenance_hatch{name = "Outpost SMES Room"; req_one_access = list(11)},/turf/simulated/floor/tiled/techfloor/grid,/area/surface/outpost/engineering/reactor_smes) +"qx" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) +"qy" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"qz" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) +"qA" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"qB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"qC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"qD" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"qE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) +"qF" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"qG" = (/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/pool) +"qH" = (/obj/structure/table/glass,/obj/item/weapon/inflatable_duck,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"qI" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"qJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"qK" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"qL" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"qM" = (/obj/item/modular_computer/console/preset/security,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/red/border{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"qN" = (/turf/simulated/wall,/area/surface/outpost/civilian/smes) +"qO" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"qP" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Locker Room"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/showers) +"qQ" = (/obj/machinery/cryopod/robot/door/gateway,/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) +"qR" = (/obj/structure/table/bench/wooden,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"qT" = (/turf/simulated/wall,/area/surface/outpost/main/exploration) +"qU" = (/obj/machinery/conveyor_switch{id = "mining_external"},/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"qV" = (/turf/simulated/wall,/area/surface/outpost/main/corridor/left_lower) +"qW" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light/small{dir = 4},/obj/machinery/power/thermoregulator,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"qX" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"qY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"qZ" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock Access 2"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) +"ra" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/cable/heavyduty{icon_state = "2-8"},/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"rb" = (/obj/structure/table/rack/shelf/steel,/obj/item/stack/material/lead{amount = 30},/obj/fiftyspawner/plastic,/obj/fiftyspawner/plasteel,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/item/stack/material/copper{amount = 25},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"rc" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"rd" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/regular,/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/orange/border{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"re" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"rf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/steel_reinforced,/obj/machinery/microwave{pixel_x = -2; pixel_y = 5},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"rg" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main5_airlock_control"; name = "Internal Access Button"; pixel_x = 5; pixel_y = -26},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main5_airlock_interior"; locked = 1; name = "Main Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outside/plains/outpost) +"rh" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Construction Area"},/obj/effect/floor_decal/steeldecal/steel_decals_central1,/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/corridor/right_lower) +"ri" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"rj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/multi_tile/glass,/obj/machinery/door/airlock/multi_tile/glass{name = "Construction Area"},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/corridor/left_upper) +"rk" = (/obj/machinery/disposal,/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"rl" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/two) +"rm" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"rn" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"ro" = (/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Civilian"; charge = 500000; input_attempt = 1; input_level = 150000; output_level = 150000},/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) +"rq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"rr" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "civ2_airlock_exterior"; locked = 1; name = "Civilian Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "civ2_airlock_control"; name = "External Access Button"; pixel_x = 26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/civilian/sauna) +"rt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"ru" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/sauna) +"rv" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible{dir = 5},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"rw" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"ry" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"rz" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"rA" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) +"rB" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"rC" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) +"rD" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/engineering/monitoring) +"rE" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock Access 1"},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) +"rF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"rG" = (/obj/machinery/vending/fitness{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"rH" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/storage) +"rI" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/exploration) +"rK" = (/obj/structure/table/standard,/obj/item/weapon/soap/deluxe,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_2) +"rL" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 2; tag_north = 5; tag_west = 1; use_power = 0},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"rM" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/uxstorage) +"rN" = (/obj/structure/closet/lasertag/red,/obj/item/stack/flag/red,/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"rO" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) +"rP" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_one) +"rQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"rR" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"rS" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/tcomm) +"rT" = (/obj/structure/table/steel,/obj/random/tech_supply,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"rU" = (/obj/machinery/vending/loadout/clothing,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"rV" = (/turf/simulated/wall/solidrock,/area/surface/outpost/wall) +"rW" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/item/weapon/cell/high,/turf/simulated/floor/tiled/dark,/area/surface/outpost/mining_main) +"rY" = (/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/exterior) +"rZ" = (/obj/structure/table/rack,/obj/item/stack/cable_coil/silver,/obj/item/stack/cable_coil/silver,/obj/item/stack/cable_coil/silver,/obj/item/stack/cable_coil/silver,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/obj/machinery/firealarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"sa" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"sb" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/machinery/camera/network/main_outpost{c_tag = "MO - Custodial Closet"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) +"sc" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"sd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) +"se" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"sf" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 8},/obj/machinery/button/remote/blast_door{id = "production1"; name = "Production Shutters"; pixel_x = -20; pixel_y = -10; req_one_access = list(48)},/turf/simulated/floor/tiled/dark,/area/surface/outpost/mining_main/refinery) +"sg" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"sh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Outpost Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/corridor/left_lower) +"si" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/landing_north) +"sj" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"sk" = (/obj/structure/table/steel,/obj/random/tool,/obj/random/tool,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) +"sl" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/security/maa) +"sm" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"sn" = (/obj/structure/table/rack/shelf,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/item/device/gps/mining{pixel_x = -5},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/item/device/gps/mining{pixel_x = 5},/obj/item/device/gps/mining{pixel_x = -5},/obj/item/device/gps/mining{pixel_x = 5},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"so" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"sp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/surface/outpost/security) +"sq" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"sr" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/brown/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2,/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"ss" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"st" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) +"su" = (/obj/effect/floor_decal/stairs{dir = 8},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/sauna) +"sv" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction/yjunction{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"sw" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/search_and_rescue) +"sx" = (/obj/structure/closet/secure_closet/sar,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/item/roller/adv,/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) +"sy" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"sz" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 3"; dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"sA" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{dir = 8; id = "production1"; name = "Production Shutters"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/mining_main/refinery) +"sB" = (/obj/structure/table/marble,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"sC" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/storage) +"sD" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/blast/shutters{dir = 8; id = "garage2"; name = "Garage Shutters"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/right_one) +"sE" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"sF" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"sG" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) +"sH" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) +"sI" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"sJ" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"sK" = (/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/machinery/vending/coffee{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"sL" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plating,/area/surface/outpost/civilian/emergency_storage) +"sM" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic,/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) +"sN" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_two) +"sO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/turcarpet,/area/surface/outpost/main/dorms/dorm_3) +"sP" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"sQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Central Hall"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"sR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"sS" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/heavyduty,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) +"sT" = (/obj/structure/table/marble,/obj/random/tech_supply,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"sV" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/radproof{dir = 4; id = "EngineReactor"; rad_resistance = 150},/turf/simulated/floor/reinforced,/area/surface/outpost/engineering/reactor_smes) +"sW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_5) +"sX" = (/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"sY" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"ta" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) +"tb" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Reactor Room East"; dir = 4; name = "Reactor_Room"; network = list("Engine")},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"tc" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"td" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic{dir = 1},/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_one) +"te" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room/smes_left) +"tf" = (/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 9},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"tg" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 9},/obj/structure/table/glass,/obj/machinery/recharger,/obj/item/weapon/tool/screwdriver,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"th" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"ti" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/civilian/fishing) +"tj" = (/turf/simulated/wall,/area/surface/outpost/civilian/pool) +"tk" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/machinery/camera/network/mining{c_tag = "PO - Airlock Access 1"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"tl" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"tm" = (/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/emergencystorage) +"tn" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"to" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/surface/outside/plains/normal) +"tp" = (/obj/effect/floor_decal/steeldecal/steel_decals_central6,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/landing_south) +"tq" = (/obj/structure/catwalk,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) +"tr" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"ts" = (/obj/effect/zone_divider,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) +"tt" = (/obj/structure/extinguisher_cabinet{pixel_x = -25},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"tu" = (/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) +"tv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"tw" = (/obj/item/weapon/banner/nt,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/normal) +"tx" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/white/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"ty" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"tz" = (/obj/machinery/door/airlock/glass_security{name = "Master at Arms"},/obj/machinery/door/firedoor/glass,/obj/item/tape/engineering,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/security/maa) +"tA" = (/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm1"; name = "Door Lock Control"; pixel_y = -25; specialfunctions = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) +"tB" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"tC" = (/obj/machinery/disposal,/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"tD" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"tE" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) +"tF" = (/obj/structure/catwalk,/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) +"tG" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/machinery/computer/general_air_control/supermatter_core{input_tag = "rust_cooling_in"; name = "Engine Cooling Control"; output_tag = "rust_cooling_out"; sensors = list("rustengine_sensor"="Engine Temperature")},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/reactor_smes) +"tH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/blue,/area/surface/outpost/main/dorms/dorm_5) +"tI" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) +"tJ" = (/obj/structure/boxingrope{dir = 8},/obj/structure/boxingrope,/obj/structure/boxingrope{dir = 9; layer = 4.1},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) +"tK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) +"tL" = (/obj/machinery/power/emitter/gyrotron/anchored{dir = 1; id = "Reactor Gyrotron"; id_tag = "Reactor Gyrotron"},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"tM" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/right_two) +"tN" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 1},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"tO" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"tP" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"tQ" = (/obj/structure/table/bench/wooden,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"tR" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"tT" = (/obj/structure/plasticflaps/mining,/obj/machinery/conveyor{dir = 8; id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) +"tU" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/power/hydromagnetic_trap,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) +"tV" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/brown/border{dir = 5},/obj/structure/reagent_dispensers/watertank,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) +"tW" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"tX" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/structure/flora/pottedplant/bamboo,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) +"tY" = (/turf/simulated/floor/water/shoreline/corner{dir = 8},/area/surface/outside/ocean) +"tZ" = (/obj/machinery/conveyor{dir = 4; id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) +"ua" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/stairs{dir = 8},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/sauna) +"ub" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/closet/toolcloset,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"uc" = (/obj/structure/closet/secure_closet/guncabinet/phase{name = "phase weapon cabinet"; req_access = newlist(); req_one_access = list(43,67)},/obj/item/clothing/accessory/holster/hip,/obj/effect/floor_decal/corner/purple{dir = 5},/obj/effect/floor_decal/corner/purple{dir = 10},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Exploration Prep"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) +"ud" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/fusion_fuel_injector/mapped{dir = 8; id_tag = "Reactor Fuel Injectors"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"ue" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/landing_north) +"uf" = (/obj/structure/table/standard,/obj/machinery/light{dir = 8},/obj/item/device/starcaster_news,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"ug" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/border_only,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"uh" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/right_three) +"ui" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/bar) +"uj" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/machinery/turretid/stun{check_records = 0; control_area = "\improper Main Outpost Teleporter"; name = "Main Outpost Teleporter turret control"; pixel_y = 24; req_access = list(19)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"uk" = (/obj/machinery/door/airlock/multi_tile/glass,/obj/machinery/door/firedoor/multi_tile/glass,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"ul" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 1},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"um" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/machinery/button/windowtint{id = "dorm_tint5"; pixel_x = -22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) +"un" = (/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"up" = (/obj/machinery/light/small{brightness_color = "#DA0205"; brightness_power = 1; brightness_range = 5; dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 6},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"uq" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/emergencystorage) +"ur" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"us" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/refinery) +"ut" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"uu" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light/small{dir = 1},/obj/machinery/camera/network/telecom{c_tag = "Tcoms - Main Outpost"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) +"uv" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/engineering{name = "SMES Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/security/smes) +"uw" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/security) +"ux" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) +"uA" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"uB" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/fusion_fuel_injector/mapped{dir = 8; id_tag = "Reactor Fuel Injectors"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"uC" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"uD" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"uE" = (/turf/simulated/floor/water,/area/surface/outside/lake/romsele) +"uF" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall,/area/surface/outpost/main/gen_room) +"uG" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) +"uH" = (/obj/structure/snowman/borg,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) +"uJ" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"uK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"uL" = (/obj/effect/floor_decal/techfloor/orange{dir = 6},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) +"uM" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) +"uN" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"uO" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/radproof{id = "EngineReactor"; rad_resistance = 150},/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"uP" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 1},/obj/machinery/meter,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"uQ" = (/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/corner/brown{dir = 5},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) +"uR" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/spline/fancy/wood,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"uS" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/orange/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"uT" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) +"uU" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/cable/heavyduty{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/junction{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room/smes_left) +"uV" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"uW" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) +"uX" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"uY" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"uZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) +"vb" = (/turf/simulated/wall,/area/surface/outpost/main/showers) +"vc" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Showers"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/showers) +"vd" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"ve" = (/obj/structure/closet/hydrant{pixel_y = 32},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/one) +"vf" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/right_upper) +"vg" = (/turf/simulated/wall/r_wall,/area/surface/outpost/security) +"vh" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/purple/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"vi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"vj" = (/obj/effect/engine_setup/pump_max,/obj/machinery/atmospherics/binary/pump/high_power,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"vk" = (/obj/machinery/light,/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) +"vl" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_three) +"vm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"vn" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"vo" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/storage) +"vp" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main) +"vq" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_two) +"vr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"vs" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) +"vt" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"vv" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/restroom) +"vw" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) +"vx" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main4_airlock_control"; name = "External Access Button"},/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/landing_north) +"vy" = (/obj/effect/floor_decal/borderfloor,/obj/structure/table/standard,/obj/item/clothing/under/shorts/red,/obj/item/clothing/gloves/boxing,/obj/effect/floor_decal/corner/black{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"vz" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera/network/mining{c_tag = "PO - Mining Production Room"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) +"vA" = (/obj/machinery/mineral/output,/obj/machinery/conveyor{id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) +"vB" = (/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/mountains) +"vC" = (/obj/machinery/atmospherics/unary/heat_exchanger{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"vD" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"vE" = (/obj/structure/table/steel,/obj/structure/closet/secure_closet/medical_wall/pills{pixel_y = 32},/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -22; pixel_y = 12},/obj/random/medical/pillbottle,/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) +"vF" = (/obj/structure/table,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"vG" = (/obj/structure/boxingrope{dir = 1},/obj/structure/boxingrope{dir = 8},/obj/structure/boxingrope{dir = 9},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) +"vH" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/atmos_room) +"vI" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/orange/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"vJ" = (/obj/structure/toilet{dir = 1},/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_4) +"vK" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"vM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 1"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"vN" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"vO" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/surface/outpost/security/maa) +"vP" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust,/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"vR" = (/obj/structure/boxingrope{dir = 1},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) +"vT" = (/obj/random/trash,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"vU" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"vV" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) +"vW" = (/obj/machinery/vending/cola{dir = 8},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"vY" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) +"vZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"wa" = (/obj/machinery/light_construct,/obj/structure/table/reinforced,/obj/item/weapon/storage/box/donut/empty,/turf/simulated/floor/holofloor/tiled/dark,/area/surface/outpost/security/maa) +"wb" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/fishing) +"wc" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"wd" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) +"we" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) +"wf" = (/obj/machinery/conveyor{dir = 8; id = "mining_external"},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/mining_main/refinery) +"wg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"wh" = (/turf/simulated/wall,/area/surface/outpost/main/gym) +"wi" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"wj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) +"wk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"wl" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Long Range Teleporter Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) +"wm" = (/obj/machinery/vending/coffee{dir = 8},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"wn" = (/obj/structure/table/standard,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/random_multi/single_item/hand_tele,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) +"wo" = (/obj/effect/floor_decal/borderfloor/corner,/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"wp" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main6_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main6_airlock_control"; name = "External Access Button"; pixel_x = 26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_one) +"wq" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/junction,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/security) +"wr" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"ws" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/left_three) +"wt" = (/obj/structure/closet/athletic_mixed,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"wu" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 8},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) +"wv" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"ww" = (/obj/structure/dispenser/oxygen,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"wx" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"wy" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"wA" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"wC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) +"wD" = (/obj/structure/table/woodentable,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"wE" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/corner/purple/bordercorner2,/obj/structure/table/rack,/obj/item/weapon/weldingtool,/obj/item/weapon/weldingtool,/obj/item/clothing/head/welding,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"wG" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/corridor/left_lower) +"wH" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/button/remote/blast_door{id = "garage2"; name = "Garage Shutter Control"; pixel_x = -6; pixel_y = -22},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) +"wI" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main2_airlock_control"; name = "Internal Access Button"; pixel_x = -26; pixel_y = -6},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main2_airlock_interior"; locked = 1; name = "Main Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/right_one) +"wJ" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) +"wK" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "ENG_Outpost_airlock_control"; name = "External Access Button"; pixel_y = 26; req_one_access = list(10)},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "ENG_Outpost_airlock_exterior"; locked = 1; name = "Engineering Outpost External"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/engineering/monitoring) +"wL" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"wM" = (/turf/simulated/floor/plating{icon_state = "asteroidplating2"},/area/surface/outpost/mining_main/exterior) +"wN" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) +"wO" = (/obj/item/weapon/towel{color = "#00FFFF"; name = "cyan towel"; pixel_x = 2; pixel_y = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_5) +"wP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Foyeur"; dir = 10; name = "Engineering Outpost"; network = list("Engineering")},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/machinery/light_switch{pixel_x = -21; pixel_y = -21},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"wQ" = (/obj/structure/table/bench/standard,/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) +"wS" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"wT" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -25},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"wU" = (/obj/structure/toilet,/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_3) +"wV" = (/obj/structure/closet/secure_closet{name = "hunting locker"; req_one_access = list(1,43)},/obj/item/weapon/gun/energy/netgun,/obj/item/weapon/beartrap/hunting,/obj/item/weapon/material/knife/tacknife/survival,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/item/clothing/shoes/boots/jungle,/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Containment Pen"; dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"wW" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"wX" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"wY" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/reactor_smes) +"wZ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"xb" = (/obj/machinery/vending/fishing{dir = 8},/obj/effect/floor_decal/corner/orange{dir = 6},/obj/effect/floor_decal/corner/orange{dir = 9},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"xd" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"xe" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"xh" = (/turf/simulated/floor/water/shoreline{dir = 6},/area/surface/outside/ocean) +"xi" = (/turf/simulated/wall/r_wall,/area/surface/outpost/security/smes) +"xk" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "mining1_airlock_control"; name = "External Access Button"; pixel_y = -26; req_one_access = list(48)},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "mining1_airlock_exterior"; locked = 1; name = "Mining Outpost External"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/mining_main/storage) +"xl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"xm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_1) +"xn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"xo" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) +"xp" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"xq" = (/turf/simulated/floor/wood{outdoors = 1},/area/surface/outside/path/plains) +"xr" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"xs" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/extinguisher_cabinet{pixel_x = -25},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"xt" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"xv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock 3"},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/left_three) +"xw" = (/obj/structure/mopbucket,/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/effect/floor_decal/corner/purple/border{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) +"xx" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) +"xy" = (/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Reactor Room South"; dir = 4; name = "Reactor_Room"; network = list("Engine")},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"xz" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) +"xA" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/landmark/start{name = "Explorer"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"xB" = (/obj/effect/floor_decal/industrial/loading{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8},/obj/machinery/mineral/input,/obj/structure/sign/warning/moving_parts{pixel_y = 32},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/refinery) +"xC" = (/obj/item/stack/material/wood,/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"xD" = (/obj/machinery/mineral/input,/obj/machinery/conveyor{id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) +"xE" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"xF" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust{dir = 5},/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"xG" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/search_and_rescue) +"xH" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/landing_south) +"xI" = (/obj/machinery/telecomms/relay/preset/southerncross/cave,/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) +"xJ" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"xK" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"xL" = (/turf/simulated/floor/water,/area/surface/outside/ocean) +"xM" = (/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/junction/yjunction,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"xN" = (/obj/structure/table/standard,/obj/item/weapon/soap/nanotrasen,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_5) +"xO" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"xP" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/two) +"xQ" = (/obj/structure/fence/end,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) +"xR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Central Hall"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"xS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_5) +"xT" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"xU" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = -5; pixel_y = 4},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = 5; pixel_y = 2},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) +"xV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"xW" = (/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) +"xY" = (/obj/structure/table/glass,/obj/item/inflatable{pixel_x = 6; pixel_y = 6},/obj/item/inflatable{pixel_x = 2; pixel_y = 2},/obj/item/inflatable{pixel_x = -2; pixel_y = -3},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"xZ" = (/obj/structure/table/bench/standard,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/dark,/area/surface/outpost/security/maa) +"ya" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"yb" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/structure/cable/heavyduty{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"yc" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/security) +"yd" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/gateway) +"ye" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_alc,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"yg" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"yh" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"yi" = (/obj/structure/table/bench/wooden,/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"yj" = (/turf/simulated/floor/outdoors/grass/sif/forest/planetuse,/area/surface/outside/plains/normal) +"yk" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) +"yl" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) +"ym" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_1) +"yn" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) +"yo" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/structure/dogbed,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) +"yp" = (/obj/structure/fence{dir = 8},/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) +"yq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"yr" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) +"ys" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_two) +"yt" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/obj/structure/cable/yellow{d1 = 2; d2 = 9; icon_state = "2-9"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"yu" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_three) +"yv" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) +"yx" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 8},/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_three) +"yy" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"yz" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"yA" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/rack,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock 2"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_two) +"yB" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 8; start_pressure = 4559.63},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"yC" = (/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/light_switch{pixel_x = -21; pixel_y = -21},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"yD" = (/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"yE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"yF" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/space) +"yG" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction/yjunction{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"yH" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plating{icon_state = "asteroidplating2"},/area/surface/outpost/mining_main/exterior) +"yI" = (/obj/machinery/atmospherics/pipe/tank/phoron{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"yJ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_two) +"yK" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"yL" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/dorms/dorm_5) +"yM" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) +"yN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"yO" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{d2 = 2; icon_state = "0-2"},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/path/plains) +"yP" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main1_airlock_control"; pixel_x = -26; pixel_y = -26; tag_exterior_door = "main1_airlock_exterior"; tag_interior_door = "main1_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) +"yQ" = (/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main) +"yR" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) +"yS" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) +"yT" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/normal) +"yV" = (/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/structure/window/basic,/obj/structure/window/basic{dir = 4},/obj/item/weapon/mining_scanner,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/head/helmet/space/void/mining,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"yW" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/security/maa) +"yX" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/monitoring) +"yY" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) +"yZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"za" = (/turf/simulated/floor/water/shoreline{dir = 4},/area/surface/outside/ocean) +"zb" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/atmos_room) +"zc" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/obj/random/soap,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_4) +"zd" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/portable_atmospherics/powered/scrubber,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) +"ze" = (/obj/machinery/telecomms/relay/preset/southerncross/skylands,/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) +"zf" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"zg" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/mountains) +"zh" = (/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"zi" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/white/border{dir = 5},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"zj" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/atmos_room) +"zk" = (/obj/machinery/mineral/unloading_machine,/obj/structure/plasticflaps/mining,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/exterior) +"zl" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"zm" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/table/glass,/obj/machinery/newscaster{pixel_x = -30},/obj/item/weapon/reagent_containers/food/drinks/britcup,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"zn" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) +"zo" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) +"zq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) +"zr" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"zs" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/structure/coatrack,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) +"zt" = (/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"zu" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) +"zv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"zw" = (/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/normal) +"zx" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"zz" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) +"zB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"zC" = (/obj/effect/shuttle_landmark{base_area = /area/surface/outside/plains/normal; base_turf = /turf/simulated/floor/outdoors/grass/sif/planetuse; landmark_tag = "outpost_s"; name = "South of Outpost"},/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) +"zD" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "dorm_tint6"},/obj/structure/window/reinforced/polarized{dir = 8; id = "dorm_tint6"},/turf/simulated/floor/plating,/area/surface/outpost/main/dorms/dorm_6) +"zE" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/machinery/recharger,/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/structure/table/reinforced,/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/item/weapon/tool/wrench,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"zF" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) +"zH" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"zI" = (/obj/structure/catwalk,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance_hatch{name = "Fuel Storage Room"; req_one_access = list(11)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) +"zJ" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) +"zL" = (/obj/structure/table/steel,/obj/random/tech_supply,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"zM" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "civ1_airlock_control"; name = "Internal Access Button"; pixel_x = -26; pixel_y = 5},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "civ1_airlock_interior"; locked = 1; name = "Civilian Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/civilian/fishing) +"zN" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"zO" = (/obj/machinery/conveyor{dir = 8; id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) +"zP" = (/obj/structure/table/steel,/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light/small{dir = 4},/obj/item/weapon/storage/toolbox/electrical,/obj/item/clothing/shoes/galoshes,/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) +"zQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"zR" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "dorm_tint5"},/obj/structure/window/reinforced/polarized{dir = 8; id = "dorm_tint5"},/turf/simulated/floor/plating,/area/surface/outpost/main/dorms/dorm_5) +"zS" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/dorms/dorm_4) +"zV" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) +"zW" = (/obj/machinery/vending/snack{dir = 8},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"zX" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic{dir = 1},/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) +"zY" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/purpledouble,/turf/simulated/floor/carpet/purcarpet,/area/surface/outpost/main/dorms/dorm_2) +"zZ" = (/obj/structure/fence/corner{dir = 9},/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) +"Aa" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/left_two) +"Ac" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"Ad" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"Ae" = (/obj/machinery/light,/obj/item/weapon/book/manual/rust_engine,/obj/structure/table/steel_reinforced,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"Af" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"Ag" = (/obj/structure/bed/chair{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"Ah" = (/obj/structure/table/woodentable,/obj/item/weapon/deck/cards,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) +"Ai" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"Aj" = (/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) +"Ak" = (/obj/effect/map_effect/portal/line/side_a,/obj/effect/map_effect/perma_light/concentrated,/turf/simulated/floor/plating{icon_state = "asteroidplating2"},/area/surface/outpost/mining_main/exterior) +"Am" = (/obj/effect/overlay/snow/floor,/obj/machinery/disposal,/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) +"An" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"Ao" = (/turf/simulated/floor/water,/area/surface/outside/river/faxalven) +"Ap" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges,/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"Aq" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"Ar" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/backup_kit{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/box/cdeathalarm_kit,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"As" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/smes) +"At" = (/turf/simulated/wall/r_wall,/area/surface/outside/plains/outpost) +"Au" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"Av" = (/obj/effect/floor_decal/borderfloor,/obj/structure/flora/pottedplant,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"Aw" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/random/powercell,/obj/machinery/camera/network/engineering_outpost{c_tag = "SUBS - Right Wing"; dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) +"Ax" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 5},/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) +"Az" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main6_airlock_control"; pixel_x = 26; pixel_y = 26; tag_exterior_door = "main6_airlock_exterior"; tag_interior_door = "main6_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) +"AA" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"AB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) +"AC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"AD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) +"AE" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"AF" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal,/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"AG" = (/obj/structure/table/steel,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light/small{dir = 4},/obj/structure/cable/blue,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plating,/area/surface/outpost/security/smes) +"AH" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) +"AI" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"AJ" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/paleblue/border{dir = 6},/obj/item/weapon/tool/wrench,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"AK" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/extinguisher_cabinet{pixel_x = -25},/turf/simulated/floor/tiled/dark,/area/surface/outpost/mining_main/refinery) +"AL" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/path/plains) +"AM" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"AN" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/overlay/snow/floor/edges{dir = 10},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"AO" = (/obj/effect/floor_decal/borderfloor/full,/obj/effect/floor_decal/industrial/danger/full,/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/shieldwallgen{anchored = 1; req_access = list(1,43); state = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"AP" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/item/glass_jar,/obj/structure/table/reinforced,/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"AQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"AR" = (/obj/structure/table/steel,/obj/random/tool,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"AT" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) +"AU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"AV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"AW" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/tcomm) +"AX" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main) +"AY" = (/obj/effect/landmark/start{name = "Search and Rescue"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"AZ" = (/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"Ba" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"Bb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"Bc" = (/obj/structure/catwalk,/obj/machinery/power/terminal,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) +"Bd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"Be" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) +"Bf" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"Bg" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) +"Bh" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/surface/outpost/civilian/emergency_storage) +"Bi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"Bj" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"Bk" = (/obj/effect/overlay/snow/floor,/obj/structure/table/bench/steel,/obj/machinery/light{dir = 1},/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) +"Bl" = (/turf/simulated/wall,/area/surface/outpost/main/emergency_storage/one) +"Bm" = (/turf/simulated/wall,/area/surface/outpost/main/dorms/dorm_5) +"Bn" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) +"Bo" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"Bp" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"Bq" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"Br" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/stairs{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/fishing) +"Bs" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"Bt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/effect/floor_decal/borderfloor/corner,/obj/item/weapon/extinguisher/mini,/obj/effect/floor_decal/corner/yellow/bordercorner,/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"Bu" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/fitness/punching_bag/clown,/obj/effect/floor_decal/corner/black{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"Bv" = (/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/smes) +"Bw" = (/obj/structure/boxingrope{dir = 4},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) +"Bx" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"BA" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"BB" = (/obj/machinery/telecomms/relay/preset/southerncross/planet,/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) +"BC" = (/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) +"BD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"BE" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/sauna) +"BF" = (/obj/effect/floor_decal/spline/fancy/wood/corner,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"BG" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/machinery/light,/obj/machinery/camera/network/main_outpost{c_tag = "MO - Landing South Airlock"; dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) +"BH" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/machinery/camera/network/civilian{c_tag = "CO - Airlock Access 1"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"BI" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Landing North Airlock Access"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) +"BJ" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/sauna) +"BK" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/tools) +"BL" = (/obj/structure/table/woodentable,/obj/item/toy/bouquet,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) +"BM" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"BN" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/ender{icon_state = "1-2"; id = "surface_cave"},/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/exterior) +"BO" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_3) +"BP" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"BQ" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/path/plains) +"BR" = (/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/corner_steel_grid{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"BT" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/landing_north) +"BU" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/water/deep/pool,/area/surface/outpost/civilian/pool) +"BV" = (/obj/machinery/alarm{dir = 8; frequency = 1441; pixel_x = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"BW" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/newscaster{pixel_x = -30},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"BX" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) +"BZ" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"Cb" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main3_airlock_exterior"; locked = 1; name = "Landing South External"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/landing_south) +"Cc" = (/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Search and Rescue Starboard"; dir = 8},/obj/structure/window/reinforced{health = 1e+006; req_access = list(5)},/obj/structure/table/rack,/obj/item/weapon/storage/belt/medical/emt,/obj/item/weapon/storage/belt/medical/emt,/obj/item/weapon/storage/belt/medical/emt,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/brigdoor/southleft{dir = 8; name = "EMT Supplies"; req_access = list(5); req_one_access = list(5,43)},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"Cd" = (/obj/effect/floor_decal/steeldecal/steel_decals_central6,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/landing_north) +"Ce" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"Cf" = (/turf/simulated/floor/water,/area/surface/outside/river/indalsalven) +"Cg" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) +"Ch" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/maintenance_hatch{name = "Reactor Room External Access"; req_one_access = list(11)},/turf/simulated/floor/tiled/techfloor/grid,/area/surface/outpost/engineering/monitoring) +"Ci" = (/obj/effect/map_effect/portal/line/side_a,/turf/simulated/floor/water{outdoors = 0},/area/surface/outside/plains/mountains) +"Ck" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) +"Cl" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/power/fusion_core/mapped{id_tag = "Outpost Fusion Core"},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) +"Cm" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"Cn" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/laundry) +"Co" = (/obj/effect/floor_decal/techfloor/orange,/obj/effect/landmark{name = "JoinLateGateway"},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) +"Cp" = (/obj/structure/toilet{dir = 8},/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) +"Cr" = (/obj/structure/closet/crate{name = "Tritium Storage"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/item/weapon/fuel_assembly/tritium,/obj/item/weapon/fuel_assembly/tritium,/obj/item/weapon/fuel_assembly/tritium,/obj/machinery/light_switch{pixel_x = -11; pixel_y = 21},/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) +"Cs" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"Cu" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/auxiliary_storage) +"Cv" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"Cw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"Cx" = (/obj/effect/floor_decal/corner/red{dir = 6},/obj/effect/floor_decal/corner/red{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) +"Cy" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 5"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"Cz" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"CA" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"CB" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 7; tag_north = 2; tag_south = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"CC" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"CD" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"CE" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{name = "Emergency Storage"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/civilian/emergency_storage) +"CF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"CG" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"CH" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold4w/visible/supply,/obj/machinery/atmospherics/pipe/manifold4w/visible/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"CI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) +"CM" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"CN" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"CO" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_6) +"CP" = (/obj/structure/closet/l3closet/janitor,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/corner/purple/border{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) +"CQ" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust,/obj/machinery/light/small{dir = 8},/obj/structure/cable/heavyduty{icon_state = "2-4"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/storage) +"CR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) +"CT" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/right_one) +"CU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"CW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"CX" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"CY" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"CZ" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outside/plains/outpost) +"Db" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"Dc" = (/turf/simulated/wall,/area/surface/outpost/mining_main/exterior) +"Dd" = (/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"De" = (/obj/machinery/mineral/unloading_machine,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) +"Df" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"Dh" = (/obj/structure/fence{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 1},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"Di" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"Dj" = (/obj/machinery/atmospherics/unary/cryo_cell{layer = 3.3},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) +"Dk" = (/obj/structure/closet,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/orange/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/orange/bordercorner2{dir = 5},/obj/item/weapon/storage/backpack/dufflebag,/obj/item/clothing/shoes/boots/winter/climbing,/obj/item/clothing/shoes/boots/winter/climbing,/obj/machinery/camera/network/civilian{c_tag = "CO - Fishing 1"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"Dl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/closet/secure_closet/engineering_electrical,/obj/machinery/light{dir = 8},/obj/random/maintenance/engineering,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"Dn" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_three) +"Do" = (/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) +"Dp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/catwalk,/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) +"Dq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) +"Dr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"Ds" = (/obj/effect/map_effect/portal/master/side_a/plains_to_caves,/turf/simulated/wall/solidrock,/area/surface/outside/plains/mountains) +"Dt" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"Du" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/white/border{dir = 9},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) +"Dv" = (/turf/simulated/wall,/area/surface/outpost/main/dorms/dorm_6) +"Dw" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"Dx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "SMES Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gen_room/smes_left) +"Dz" = (/obj/structure/closet/jcloset,/obj/item/weapon/soap/nanotrasen,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) +"DA" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/machinery/door/firedoor/glass/hidden,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"DB" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"DC" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) +"DD" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/machinery/vending/loadout/gadget,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"DE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) +"DG" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 1},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"DH" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) +"DI" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) +"DJ" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"DK" = (/obj/machinery/conveyor{id = "mining_internal"},/obj/machinery/mineral/output,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) +"DL" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/random/maintenance/engineering,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"DM" = (/obj/structure/closet/lasertag/blue,/obj/item/stack/flag/blue,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"DN" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/bottle/wine,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) +"DP" = (/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) +"DQ" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/normal) +"DT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"DU" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) +"DW" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost SMES Room"; dir = 10; name = "Engineering_Outpost"; network = list("Engineering")},/obj/machinery/light_switch{pixel_x = -21; pixel_y = -11},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/reactor_smes) +"DX" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) +"DY" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_6) +"DZ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"Ea" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"Eb" = (/obj/structure/fence,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) +"Ec" = (/obj/effect/step_trigger/teleporter/bridge/north_to_south,/obj/structure/railing,/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) +"Ed" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/civilian/fishing) +"Ee" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/table/reinforced,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_three) +"Ef" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"Eg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet,/area/surface/outpost/main/dorms/dorm_6) +"Ei" = (/obj/structure/table/steel,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/multitool,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/corridor/right_upper) +"Ej" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 1},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/auxiliary_storage) +"Ek" = (/turf/simulated/floor/holofloor/tiled/dark,/area/surface/outpost/security/maa) +"El" = (/obj/effect/floor_decal/corner/brown{dir = 9},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) +"Em" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"En" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/orange/bordercorner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"Eo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) +"Ep" = (/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/left_one) +"Er" = (/obj/machinery/telecomms/relay/preset/southerncross/wild,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) +"Et" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/reddouble,/turf/simulated/floor/carpet,/area/surface/outpost/main/dorms/dorm_6) +"Eu" = (/obj/machinery/disposal/deliveryChute{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/exterior) +"Ev" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/purple/border{dir = 6},/obj/machinery/washing_machine,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"Ew" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"Ex" = (/obj/effect/landmark{name = "bluespacerift"},/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/path/plains) +"Ey" = (/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) +"EA" = (/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) +"EB" = (/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"EC" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"ED" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 1},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"EE" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"EF" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"EG" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/construction_area) +"EH" = (/obj/structure/table/woodentable,/obj/item/weapon/material/kitchen/utensil/fork/plastic{pixel_x = 7},/obj/item/weapon/reagent_containers/food/snacks/pastatomato,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) +"EI" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) +"EJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/maintenance_hatch{name = "Reactor Room Internal Access"; req_one_access = list(11)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/techfloor/grid,/area/surface/outpost/engineering/reactor_smes) +"EK" = (/obj/structure/table/steel,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"EL" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"EM" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"EN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"EO" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) +"EP" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/effect/overlay/snow/floor,/obj/effect/zone_divider,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"EQ" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/corridor/right_lower) +"ER" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) +"ES" = (/obj/machinery/teleport/station,/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/teleporter) +"ET" = (/obj/machinery/light{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"EU" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"EW" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) +"EX" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"EY" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/structure/table/standard,/obj/random/action_figure,/obj/item/weapon/coin/silver,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"EZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"Fa" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"Fc" = (/obj/machinery/conveyor{dir = 4; id = "mining_north"},/obj/machinery/mineral/input,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/mining_main/exterior) +"Fd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"Fe" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"Ff" = (/obj/machinery/cablelayer,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"Fg" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) +"Fi" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"Fj" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"Fk" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) +"Fl" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/gym) +"Fm" = (/obj/structure/closet/secure_closet{name = "hunting locker"; req_one_access = list(1,43)},/obj/item/weapon/gun/energy/netgun,/obj/item/weapon/beartrap/hunting,/obj/item/weapon/material/knife/tacknife/survival,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/item/clothing/shoes/boots/jungle,/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"Fn" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) +"Fo" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"Fp" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"Fq" = (/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm6"; name = "Door Lock Control"; pixel_y = 25; specialfunctions = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) +"Fr" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_one) +"Fs" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/h_chocolate,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) +"Ft" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_one) +"Fu" = (/obj/structure/closet/crate,/obj/effect/floor_decal/corner/brown/full,/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) +"Fv" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"Fy" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/white/border{dir = 6},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Laundry 2"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"Fz" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) +"FA" = (/obj/item/weapon/banner/nt,/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) +"FB" = (/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/obj/machinery/recharger,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"FC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"FD" = (/obj/effect/step_trigger/teleporter/bridge/north_to_south,/obj/structure/railing,/turf/simulated/floor/water/deep,/area/surface/outside/river/indalsalven) +"FE" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) +"FF" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main7_airlock_control"; pixel_x = 26; pixel_y = -26; tag_exterior_door = "main7_airlock_exterior"; tag_interior_door = "main7_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) +"FH" = (/obj/machinery/light{dir = 4},/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) +"FI" = (/obj/structure/table/reinforced,/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/item/device/gps/security,/turf/simulated/floor/holofloor/tiled/dark,/area/surface/outpost/security/maa) +"FJ" = (/obj/structure/toilet{dir = 1},/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_2) +"FK" = (/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/refinery) +"FL" = (/turf/simulated/wall,/area/surface/outpost/main/dorms/dorm_3) +"FM" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"FN" = (/obj/structure/closet/firecloset,/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"FO" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/symbol/em{pixel_x = 32},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"FP" = (/obj/structure/closet/secure_closet/miner,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/brown/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"FQ" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/machinery/door/firedoor/glass/hidden,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"FR" = (/turf/simulated/wall/r_wall,/area/surface/outpost/civilian/pool) +"FS" = (/obj/structure/table/steel,/obj/random/junk,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"FU" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/landing_north) +"FV" = (/obj/structure/boxingrope{dir = 8},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) +"FW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"FX" = (/obj/item/weapon/banner/nt,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) +"FY" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room/smes_right) +"FZ" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/structure/disposalpipe/segment,/obj/random/powercell,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"Ga" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/refinery) +"Gb" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) +"Gc" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"Gd" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 1},/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_one) +"Ge" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"Gf" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "civ2_airlock_control"; pixel_x = 26; pixel_y = 26; tag_exterior_door = "civ2_airlock_exterior"; tag_interior_door = "civ2_airlock_interior"},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"Gg" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"Gh" = (/obj/random/trash,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) +"Gi" = (/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Left Wing"; charge = 5e+006; input_attempt = 1; input_level = 150000; output_level = 150000},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) +"Gj" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) +"Gk" = (/obj/structure/snowman/spider,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) +"Gl" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/random/powercell,/obj/machinery/camera/network/engineering_outpost{c_tag = "SUBS - Security Checkpoint"},/turf/simulated/floor/plating,/area/surface/outpost/security/smes) +"Gm" = (/obj/structure/undies_wardrobe,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"Gn" = (/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"Gp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) +"Gq" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/landing_north) +"Gr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"Gs" = (/obj/effect/zone_divider,/turf/simulated/floor/water,/area/surface/outside/ocean) +"Gt" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"Gu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"Gv" = (/turf/simulated/floor/water/shoreline/corner{dir = 4},/area/surface/outside/ocean) +"Gw" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"Gx" = (/obj/structure/table/steel,/obj/machinery/light/small{dir = 4},/obj/item/weapon/storage/toolbox/electrical,/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) +"Gy" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"Gz" = (/obj/structure/ore_box,/obj/effect/floor_decal/corner/brown{dir = 9},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) +"GA" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 10},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"GC" = (/obj/machinery/mech_recharger,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/corridor/right_upper) +"GD" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/white/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"GE" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/path/plains) +"GF" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"GG" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) +"GH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) +"GI" = (/obj/machinery/power/terminal{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/reactor_smes) +"GJ" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/right_two) +"GK" = (/obj/effect/floor_decal/stairs{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/fishing) +"GL" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_access_hatch"; locked = 1; name = "Reactor Core"; rad_resistance = 150; req_access = list(11)},/turf/simulated/floor/reinforced,/area/surface/outpost/engineering/reactor_smes) +"GM" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) +"GN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"GO" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/closet/secure_closet/engineering_welding,/obj/random/maintenance/engineering,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"GP" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 1},/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/tools) +"GQ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"GR" = (/obj/effect/landmark/event_spawn/dronepod_landing,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/normal) +"GS" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) +"GT" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Mining Storage"; req_one_access = list(48)},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/uxstorage) +"GU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"GV" = (/obj/machinery/light_construct{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"GW" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) +"GX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"GY" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/item/device/flashlight/lamp,/obj/effect/floor_decal/corner/red/border{dir = 10},/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_y = -30},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"GZ" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"Ha" = (/obj/effect/step_trigger/teleporter/bridge/east_to_west,/obj/structure/railing{dir = 8},/turf/simulated/floor/water,/area/surface/outside/river/faxalven) +"Hb" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/security) +"Hc" = (/obj/machinery/pipedispenser/disposal,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"Hd" = (/obj/structure/closet/wardrobe/black,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"He" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"Hf" = (/obj/structure/closet/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/suit/radiation,/obj/item/clothing/suit/radiation,/obj/item/device/geiger,/obj/item/device/geiger,/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/atmos_room) +"Hg" = (/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/right_two) +"Hh" = (/turf/simulated/wall,/area/surface/outpost/main/gen_room/smes_left) +"Hi" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"Hj" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/security/maa) +"Hk" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"Hl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"Hm" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"Hn" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) +"Ho" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/tools) +"Hp" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) +"Hq" = (/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"Hr" = (/obj/effect/overlay/snow/floor,/obj/structure/symbol/gu{pixel_x = -32},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"Hs" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) +"Ht" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"Hu" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/fishing) +"Hv" = (/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"Hw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) +"Hx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_2) +"Hy" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) +"Hz" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/gen_room/smes_right) +"HA" = (/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"HB" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/teleporter) +"HC" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) +"HD" = (/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/right_one) +"HE" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_one) +"HF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 8},/obj/structure/cable/yellow{d1 = 6; d2 = 8; icon_state = "6-8"},/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"HG" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/white/border{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"HH" = (/obj/structure/curtain/open/shower,/obj/machinery/shower{dir = 8; pixel_x = -5},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"HI" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) +"HK" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"HL" = (/obj/machinery/shower,/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_5) +"HM" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/door/firedoor/glass/hidden{dir = 2},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"HN" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Hallway 2"; dir = 4; name = "security camera"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"HO" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) +"HP" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_two) +"HQ" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"HR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) +"HS" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/overlay/snow/floor/edges{dir = 8},/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"HU" = (/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) +"HV" = (/obj/effect/zone_divider,/turf/simulated/floor/water,/area/surface/outside/river/indalsalven) +"HW" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"HX" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"HY" = (/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_6) +"HZ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/heavyduty{icon_state = "2-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"Ib" = (/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/storage) +"Ic" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"Id" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/overlay/snow/floor/edges{dir = 9},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"Ie" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/civilian/fishing) +"If" = (/obj/machinery/door/airlock{id_tag = "dorm1"; name = "Dorm 1"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_1) +"Ig" = (/turf/simulated/floor/water/deep,/area/surface/outside/ocean) +"Ih" = (/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"Ii" = (/obj/machinery/mech_recharger,/turf/simulated/floor/tiled/dark,/area/surface/outpost/mining_main) +"Ij" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/surface/outpost/security) +"Ik" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/machinery/door/firedoor/glass/hidden{dir = 2},/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"Il" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"Im" = (/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Mining"; charge = 5e+006; input_attempt = 1; input_level = 150000; output_level = 150000},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"In" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"Io" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/space) +"Ip" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/exploration) +"Iq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"Ir" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/landing_south) +"Is" = (/obj/item/weapon/towel{color = "#90ee90"; name = "green towel"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_3) +"It" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) +"Iu" = (/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm2"; name = "Door Lock Control"; pixel_y = 25; specialfunctions = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) +"Iv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) +"Iw" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"Ix" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/exploration/containment) +"Iy" = (/obj/machinery/mineral/processing_unit_console,/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/refinery) +"Iz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"IA" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"IC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"ID" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main4_airlock_exterior"; locked = 1; name = "Landing North External"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/landing_north) +"IE" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/tools) +"IF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_3) +"IG" = (/obj/effect/overmap/visitable/planet/Sif,/turf/simulated/mineral/sif,/area/surface/outside/plains/mountains) +"IH" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) +"II" = (/obj/machinery/sleeper{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/search_and_rescue) +"IJ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"IK" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 8},/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/item/clothing/mask/gas,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_two) +"IM" = (/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/spline/fancy/wood,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"IN" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Laundry"},/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/multi_tile/glass,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/laundry) +"IO" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"IP" = (/obj/structure/closet/secure_closet/guncabinet/phase{req_one_access = null},/obj/item/clothing/accessory/holster/hip,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/red/border{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"IQ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/left_lower) +"IR" = (/obj/structure/closet/secure_closet/explorer,/obj/item/clothing/accessory/holster/hip,/obj/item/device/cataloguer,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) +"IS" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) +"IT" = (/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"IU" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) +"IV" = (/obj/effect/floor_decal/steeldecal/steel_decals_central4,/obj/machinery/conveyor_switch/oneway{id = "mining_internal"; name = "mining conveyor"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) +"IW" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) +"IX" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main2_airlock_control"; pixel_x = -26; pixel_y = -26; tag_exterior_door = "main2_airlock_exterior"; tag_interior_door = "main2_airlock_interior"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) +"IY" = (/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 5},/obj/machinery/button/remote/blast_door{id = "production1"; name = "Production Shutters"; pixel_x = 22; req_one_access = list(48)},/obj/item/weapon/hand_labeler,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"IZ" = (/obj/effect/floor_decal/borderfloor{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"Ja" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"Jb" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera/network/engineering_outpost{c_tag = "SUBS - Civilian"; dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) +"Jc" = (/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/paleblue/border{dir = 10},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"Jd" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/white/border{dir = 10},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Teleporter"; dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) +"Je" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_three) +"Jf" = (/obj/effect/floor_decal/spline/plain,/obj/machinery/hologram/holopad,/obj/machinery/light/spot,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"Jg" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_one) +"Jh" = (/obj/machinery/door/airlock{id_tag = "dorm2"; name = "Dorm 2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_2) +"Ji" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"Jj" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"Jk" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "SMES Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/civilian/smes) +"Jl" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"Jm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"Jn" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) +"Jo" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main3_airlock_interior"; locked = 1; name = "Landing South Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/landing_south) +"Jq" = (/turf/simulated/wall,/area/surface/outpost/main/corridor) +"Js" = (/obj/structure/table/steel,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/recharger,/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"Jt" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"Ju" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"Jv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"Jw" = (/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/security) +"Jx" = (/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/sauna) +"Jy" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "mining2_airlock_control"; pixel_x = -26; pixel_y = -26; req_one_access = list(48,10); tag_exterior_door = "mining2_airlock_exterior"; tag_interior_door = "mining2_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) +"Jz" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"JA" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) +"JB" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Teleporter"; dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"JC" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"JD" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"JE" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/pool) +"JF" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"JG" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic{dir = 1},/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) +"JH" = (/obj/structure/sign/warning/caution{desc = "This appears to be a sign warning people that the other side is dangerous. It also says that NanoTrasen cannot guarantee your safety beyond this point."; name = "\improper WARNING: NO ACCESS"},/turf/simulated/shuttle/wall/voidcraft/hard_corner,/area/surface/outpost/wall) +"JJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"JK" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/reactor_smes) +"JL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"JM" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) +"JN" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"JO" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/corner/brown{dir = 8},/obj/machinery/camera/network/mining{c_tag = "PO - Mining Storage"; dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) +"JP" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_two) +"JQ" = (/obj/effect/step_trigger/teleporter/bridge/south_to_north,/obj/structure/railing{dir = 1},/turf/simulated/floor/water/deep,/area/surface/outside/river/indalsalven) +"JR" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/overlay/snow/floor/edges{dir = 8},/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"JS" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"JT" = (/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) +"JU" = (/obj/structure/table/standard,/obj/item/weapon/soap,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_3) +"JV" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 8},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) +"JW" = (/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 10},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room/smes_right) +"JX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/bcarpet,/area/surface/outpost/main/dorms/dorm_4) +"JY" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"JZ" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges,/obj/effect/zone_divider,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"Ka" = (/turf/simulated/floor/water/shoreline{dir = 10},/area/surface/outside/ocean) +"Kb" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/laundry) +"Kd" = (/turf/simulated/floor/water/shoreline/corner,/area/surface/outside/ocean) +"Ke" = (/turf/simulated/wall/r_wall,/area/surface/outpost/civilian/sauna) +"Kf" = (/obj/structure/table/steel,/obj/random/junk,/obj/random/maintenance/engineering,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) +"Kg" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"Kh" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = -4; pixel_y = 6},/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = 5; pixel_y = 6},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/civilian/sauna) +"Ki" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) +"Kj" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"Kk" = (/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"Kl" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"Km" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"Kn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"Ko" = (/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"Kp" = (/obj/effect/landmark/start{name = "Explorer"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"Kr" = (/obj/machinery/door/airlock/maintenance_hatch{name = "Reactor Room External Access"; req_one_access = list(11)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/techfloor/grid,/area/surface/outpost/engineering/atmos_room) +"Ks" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) +"Kt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/landing_south) +"Ku" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/gateway) +"Kv" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) +"Kw" = (/obj/effect/step_trigger/teleporter/bridge/west_to_east,/obj/structure/railing{dir = 4},/turf/simulated/floor/water/deep,/area/surface/outside/river/indalsalven) +"Kx" = (/obj/structure/table/standard,/obj/machinery/recharger,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"Ky" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/gateway) +"Kz" = (/obj/machinery/light{dir = 1},/obj/structure/flora/pottedplant/minitree,/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"KA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) +"KB" = (/turf/simulated/shuttle/wall/voidcraft/hard_corner,/area/surface/outpost/wall) +"KC" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"KD" = (/obj/structure/table/bench/standard,/obj/item/device/radio/intercom/department/security{dir = 1; pixel_y = 21},/turf/simulated/floor/tiled/dark,/area/surface/outpost/security/maa) +"KE" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/effect/overlay/snow/floor,/obj/effect/zone_divider,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"KF" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"KG" = (/obj/structure/table/rack/shelf,/turf/simulated/floor/holofloor/tiled/dark,/area/surface/outpost/security/maa) +"KH" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) +"KI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/oracarpet,/area/surface/outpost/main/dorms/dorm_1) +"KK" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"KL" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"KM" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"KN" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/multi_tile/glass,/obj/machinery/door/airlock/multi_tile/glass{name = "Production Area"; req_one_access = list(48)},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main) +"KO" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"KP" = (/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/atmos_room) +"KQ" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"KR" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"KS" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"KT" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"KU" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{name = "Emergency Storage"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/mining_main/emergencystorage) +"KV" = (/obj/structure/bed/chair/comfy/black,/obj/machinery/button/windowtint{id = "dorm_tint6"; pixel_x = -22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) +"KW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/power/terminal,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) +"KX" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"KY" = (/obj/machinery/iv_drip,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/manifold/visible{dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"KZ" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"La" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"Lb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"Lc" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -25},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"Ld" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/unary/vent_pump/engine{dir = 1; external_pressure_bound = 100; external_pressure_bound_default = 0; frequency = 1438; icon_state = "map_vent_in"; id_tag = "rust_cooling_out"; initialize_directions = 1; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) +"Le" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/orange/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/orange/bordercorner2{dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"Lf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) +"Lg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"Lh" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"Li" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"Lj" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"Lk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"Ll" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 1},/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/tools) +"Lm" = (/obj/structure/closet/hydrant{pixel_y = 32},/turf/simulated/floor/plating,/area/surface/outpost/civilian/emergency_storage) +"Ln" = (/obj/machinery/status_display{pixel_y = 32},/obj/structure/boxingrope{dir = 1},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) +"Lo" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"Lp" = (/obj/structure/table/steel,/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light/small{dir = 1},/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) +"Lq" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/radproof{dir = 4; rad_resistance = 150},/turf/simulated/floor/plating,/area/surface/outpost/engineering/monitoring) +"Lr" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) +"Ls" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"Lt" = (/obj/structure/closet/crate,/obj/effect/floor_decal/corner/brown{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) +"Lu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/engineering{name = "Atmos Room"; req_one_access = list(12)},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/mining_main/tools) +"Lv" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor/carpet/bcarpet,/area/surface/outpost/main/dorms/dorm_4) +"Lw" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/monitoring) +"Lx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"Ly" = (/obj/structure/fence/end{dir = 8},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) +"Lz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"LA" = (/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"LC" = (/obj/structure/sign/electricshock,/turf/simulated/wall,/area/surface/outpost/main/gen_room/smes_right) +"LD" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/table/rack,/obj/machinery/light{dir = 4},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) +"LE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/right_one) +"LF" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "sauna_tint1"},/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) +"LG" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) +"LH" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"LI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"LJ" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic,/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) +"LK" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main6_airlock_control"; name = "Internal Access Button"; pixel_x = 26; pixel_y = 5},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main6_airlock_interior"; locked = 1; name = "Main Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_one) +"LL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"LM" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) +"LN" = (/turf/simulated/wall,/area/surface/outpost/civilian/emergency_storage) +"LO" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/machinery/vending/fitness{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"LP" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/obj/structure/flora/pottedplant/flower,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) +"LQ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"LR" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 10},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"LS" = (/obj/effect/step_trigger/teleporter/bridge/west_to_east,/obj/structure/railing{dir = 4},/turf/simulated/floor/water,/area/surface/outside/river/faxalven) +"LT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"LU" = (/obj/structure/cable/blue,/obj/machinery/power/apc{dir = 8; name = "west bump"; operating = 0; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -22; pixel_y = -10},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"LV" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Long Range Teleporter Access"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) +"LW" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"LX" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"LY" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) +"LZ" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"Ma" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/corridor/right_upper) +"Mb" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) +"Mc" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"Me" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/toxin{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/toxin{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/fire{pixel_x = -5; pixel_y = 5},/obj/item/weapon/storage/firstaid/fire{pixel_x = -5; pixel_y = 5},/obj/item/weapon/storage/firstaid/o2{pixel_x = 5; pixel_y = -5},/obj/item/weapon/storage/firstaid/o2{pixel_x = 5; pixel_y = -5},/obj/item/weapon/storage/firstaid/adv{pixel_x = -5; pixel_y = -5},/obj/item/weapon/storage/firstaid/adv{pixel_x = -5; pixel_y = -5},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"Mf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"Mg" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/right_lower) +"Mh" = (/turf/simulated/floor/water/shoreline{dir = 5},/area/surface/outside/ocean) +"Mi" = (/obj/structure/table/steel,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"Mj" = (/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) +"Mk" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"Ml" = (/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"Mm" = (/obj/structure/table/bench/standard,/obj/item/device/radio/intercom/department/medbay{pixel_y = -21},/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) +"Mn" = (/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"Mo" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"Mp" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"Mq" = (/obj/item/clothing/under/bathrobe,/obj/item/clothing/under/bathrobe,/obj/item/clothing/under/bathrobe,/obj/structure/closet/cabinet,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"Mr" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/security) +"Ms" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"Mt" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) +"Mu" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light_construct{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/security/maa) +"Mv" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"Mx" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/engineering{name = "SMES Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gen_room/smes_right) +"My" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Gym"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central1,/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/gym) +"Mz" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"MA" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) +"MB" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/machinery/door/window/brigdoor/westleft{name = "Medical Supplies"; req_access = null; req_one_access = list(5,43)},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"MC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"MD" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/effect/overlay/snow/floor,/obj/effect/zone_divider,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"ME" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/laundry) +"MF" = (/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/surface/outpost/security/smes) +"MG" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/one) +"MH" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"MI" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"MJ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"MK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"ML" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/refinery) +"MM" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/corner/orange{dir = 9},/obj/effect/floor_decal/corner/orange{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"MN" = (/turf/simulated/wall,/area/surface/outpost/main/laundry) +"MO" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"MP" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"MQ" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) +"MR" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"MT" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/radproof{dir = 4; rad_resistance = 150},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/monitoring) +"MU" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/structure/table/standard,/obj/machinery/photocopier/faxmachine{department = "Outpost Laundry"},/obj/effect/floor_decal/corner/white/border{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"MV" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/pool) +"MW" = (/obj/structure/table/steel,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = -22},/obj/structure/cable/blue,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"MX" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"MY" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"MZ" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light_construct{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"Na" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/outpost) +"Nb" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) +"Nc" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/highsecurity{name = "Telecommunication Hub"; req_one_access = list(61)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/tcomm) +"Nd" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"Ne" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"Nf" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"Nh" = (/obj/machinery/camera/network/civilian{c_tag = "CO - Sauna"; dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"Ni" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_one) +"Nj" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/white/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"Nk" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Hallway 3"; dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"Nm" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"Nn" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/civilian/fishing) +"No" = (/obj/effect/floor_decal/corner/purple{dir = 10},/obj/effect/floor_decal/corner/purple{dir = 5},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/industrial/outline,/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) +"Np" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"Nq" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"Ns" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"Nt" = (/obj/machinery/light{dir = 4},/obj/machinery/alarm{dir = 8; frequency = 1441; pixel_x = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"Nu" = (/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm5"; name = "Door Lock Control"; pixel_y = -25; specialfunctions = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) +"Nv" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"Nw" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_three) +"Nx" = (/obj/structure/table/steel,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"Ny" = (/obj/effect/overlay/snow/floor,/obj/machinery/vending/snack,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) +"Nz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_4) +"NA" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/machinery/door/firedoor/glass/hidden{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"NB" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_two) +"NC" = (/obj/effect/overlay/snow/floor,/obj/structure/ore_box,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"NE" = (/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm4"; name = "Door Lock Control"; pixel_y = 25; specialfunctions = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) +"NF" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"NG" = (/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/right_three) +"NH" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"NI" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"NJ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"NK" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/junction{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"NL" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/random/powercell,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) +"NM" = (/obj/structure/fence/end{dir = 1},/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) +"NN" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust{dir = 6},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/refinery) +"NO" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/janitor) +"NP" = (/obj/structure/closet/emcloset,/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"NQ" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) +"NR" = (/obj/effect/map_effect/portal/line/side_a,/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/exterior) +"NU" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"NV" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/landing_north) +"NW" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) +"NX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"NY" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/smes) +"NZ" = (/obj/effect/floor_decal/industrial/warning,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/light/small{dir = 1},/obj/structure/cable/yellow{d1 = 5; d2 = 6; icon_state = "5-6"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"Oa" = (/obj/structure/fence,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) +"Ob" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"Oc" = (/obj/structure/table/bench/steel,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/path/plains) +"Od" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/rack,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Airlock 2"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_two) +"Oe" = (/obj/machinery/door/airlock{id_tag = "dorm3"; name = "Dorm 3"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_3) +"Of" = (/turf/simulated/wall/r_wall,/area/surface/outpost/security/maa) +"Oh" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/structure/closet,/obj/effect/floor_decal/corner/white/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"Oi" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"Oj" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) +"Om" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"Oo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"Op" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) +"Oq" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"Os" = (/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/water/deep/pool,/area/surface/outpost/civilian/pool) +"Ot" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"Ou" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"Ov" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"Ow" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) +"Ox" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "sec1_airlock_exterior"; locked = 1; name = "Security Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "sec1_airlock_control"; name = "External Access Button"; pixel_y = 26; req_one_access = list(1)},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/security) +"Oy" = (/obj/structure/dispenser/oxygen,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) +"OA" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/landing_south) +"OB" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/blast/shutters{dir = 8; id = "garage1"; name = "Garage Shutters"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/right_two) +"OC" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) +"OD" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Airlock Access 1"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) +"OE" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"OF" = (/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"OH" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main1_airlock_control"; name = "Internal Access Button"; pixel_x = -6; pixel_y = -26},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main1_airlock_interior"; locked = 1; name = "Main Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/right_two) +"OI" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main4_airlock_control"; pixel_x = -5; tag_exterior_door = "main4_airlock_exterior"; tag_interior_door = "main4_airlock_interior"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main4_airlock_control"; name = "Internal Access Button"; pixel_x = 5},/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/landing_north) +"OJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"OK" = (/obj/effect/map_effect/portal/master/side_a/plains_to_caves/river,/turf/simulated/wall/solidrock,/area/surface/outside/plains/mountains) +"OL" = (/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"OM" = (/obj/structure/fitness/punchingbag,/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) +"ON" = (/obj/structure/table/standard,/obj/item/stack/material/steel{amount = 10},/obj/item/weapon/storage/toolbox/mechanical,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"OO" = (/obj/item/weapon/towel{color = "#FF8C00"; name = "orange towel"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_1) +"OP" = (/obj/structure/showcase/sign{desc = "This appears to be a sign warning people that it is dangerous outside. Further reading suggests being properly equipped or acquiring an umbrella."; name = "WARNING: HAIL STORMS"},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) +"OQ" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/emergencystorage) +"OR" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"OS" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/monitoring) +"OT" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) +"OU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"OV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"OW" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"OX" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 4},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) +"OY" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/gen_room/smes_left) +"OZ" = (/obj/random/junk,/obj/random/junk,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/surface/outpost/main/laundry) +"Pa" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/power/terminal{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/surface/outpost/security/smes) +"Pb" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) +"Pc" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "mining2_airlock_control"; name = "Internal Access Button"; pixel_x = -26; pixel_y = -6; req_one_access = list(48,10)},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "mining2_airlock_interior"; locked = 1; name = "Mining Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/mining_main/tools) +"Pd" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"Pe" = (/obj/machinery/door/firedoor/multi_tile/glass,/obj/machinery/door/airlock/multi_tile/metal{name = "Sauna"},/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/sauna) +"Pf" = (/obj/effect/floor_decal/spline/plain{dir = 9},/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/pool) +"Pg" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/exploration/containment) +"Ph" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/closet/secure_closet/engineering_personal,/obj/machinery/light{dir = 4},/obj/random/maintenance/engineering,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/yellow/border{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"Pi" = (/obj/structure/fence/cut/large,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) +"Pj" = (/obj/structure/table/bench/marble,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"Pk" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/corridor/left_upper) +"Pl" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) +"Pm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) +"Po" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 6},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"Ps" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 1},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"Pt" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"Pu" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"Pv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "SMES Access"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gen_room) +"Pw" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/atmos_room) +"Py" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/obj/machinery/light,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"Pz" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/machinery/light/small{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"PA" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 4; dir = 4; icon_state = "2-4"},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/table/steel_reinforced,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/warning,/obj/item/clothing/gloves/yellow,/obj/item/device/multitool{pixel_x = 5},/obj/machinery/light{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/reactor_smes) +"PC" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"PD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"PE" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) +"PF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"PG" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"PJ" = (/obj/effect/floor_decal/techfloor/orange{dir = 4},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) +"PK" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/brown/border{dir = 10},/obj/structure/closet/crate,/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"PL" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/right_three) +"PM" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) +"PN" = (/obj/machinery/floodlight,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"PO" = (/turf/simulated/floor/water/shoreline{dir = 1},/area/surface/outside/ocean) +"PQ" = (/obj/machinery/pipedispenser,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"PR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"PS" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"PT" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/table/rack,/obj/machinery/light{dir = 4},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) +"PU" = (/obj/effect/zone_divider,/turf/simulated/floor/water,/area/surface/outside/river/faxalven) +"PV" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) +"PW" = (/obj/effect/step_trigger/teleporter/bridge/east_to_west,/obj/structure/railing{dir = 8},/turf/simulated/floor/water/deep,/area/surface/outside/river/indalsalven) +"PX" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/teleporter) +"PY" = (/obj/structure/sign/electricshock,/turf/simulated/wall,/area/surface/outpost/civilian/smes) +"PZ" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Search and Rescue"; req_one_access = null},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/multi_tile/glass,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/search_and_rescue) +"Qa" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"Qb" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"Qd" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust{dir = 6},/obj/structure/cable/heavyduty{icon_state = "1-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"Qe" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/radproof{id = "EngineReactor"; rad_resistance = 150},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"Qf" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/atmos_room) +"Qg" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) +"Qh" = (/obj/structure/table/steel,/obj/item/weapon/storage/belt/utility/full,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/brown/border{dir = 9},/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) +"Qi" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/table/glass,/obj/item/roller{pixel_x = 8; pixel_y = 1},/obj/item/roller{pixel_x = 8; pixel_y = 9},/obj/item/roller{pixel_x = -8; pixel_y = 1},/obj/item/roller{pixel_x = -8; pixel_y = 9},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"Qj" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/engineering/monitoring) +"Qk" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/button/remote/blast_door{id = "pen"; pixel_x = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"Ql" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"Qn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"Qo" = (/obj/machinery/recharge_station,/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/restroom) +"Qp" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"Qq" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/orange/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"Qr" = (/obj/structure/fence,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) +"Qt" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) +"Qu" = (/obj/random/junk,/obj/random/junk,/obj/random/contraband,/turf/simulated/floor/plating,/area/surface/outpost/main/laundry) +"Qv" = (/obj/machinery/atmospherics/binary/pump{dir = 4; name = "Air Tank Bypass Pump"},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"Qx" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/heavyduty{d2 = 2; icon_state = "0-2"},/obj/structure/cable,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/engineering/smes) +"Qy" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"Qz" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"QA" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"QB" = (/obj/structure/flora/pottedplant/stoutbush,/obj/machinery/camera/network/security{c_tag = "SO - Security Checkpoint"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"QC" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) +"QD" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock Access 3"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) +"QG" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 5},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"QH" = (/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"QI" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable/heavyduty{d2 = 2; dir = 4; icon_state = "0-4"},/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/firedoor/border_only,/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"QJ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/right_lower) +"QL" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) +"QM" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) +"QN" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/emergencystorage) +"QO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/plaque,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/corridor/right_upper) +"QP" = (/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/auxiliary_storage) +"QQ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Hallway 1"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"QR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"QS" = (/obj/structure/fence,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) +"QT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{dir = 8; id = "production1"; name = "Production Shutters"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/mining_main/refinery) +"QU" = (/obj/machinery/disposal,/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"QV" = (/obj/machinery/door/airlock{id_tag = "dorm5"; name = "Dorm 5"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_5) +"QW" = (/turf/simulated/wall,/area/surface/outpost/main/gateway) +"QX" = (/obj/item/weapon/stool/padded,/obj/structure/boxingrope{dir = 4},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) +"QY" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/atmos_room) +"QZ" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/obj/structure/dogbed,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) +"Ra" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main3_airlock_control"; pixel_x = -5; tag_exterior_door = "main3_airlock_exterior"; tag_interior_door = "main3_airlock_interior"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main3_airlock_control"; name = "Internal Access Button"; pixel_x = 5},/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/landing_south) +"Rb" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/machinery/recharge_station,/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) +"Rc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"Rd" = (/obj/structure/boxingrope{dir = 4},/obj/structure/boxingrope,/obj/structure/boxingrope{dir = 6; layer = 4.1},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) +"Re" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"Rf" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"Rg" = (/obj/machinery/door/airlock{id_tag = "dorm6"; name = "Dorm 6"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_6) +"Rh" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) +"Ri" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/door/firedoor/glass/hidden{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"Rj" = (/obj/machinery/light{dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"Rk" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/one) +"Rl" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/table/steel,/obj/item/weapon/handcuffs/fuzzy,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) +"Rm" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/purple/border{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"Rn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"Ro" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"Rp" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/button/remote/blast_door{id = "garage1"; name = "Garage Shutter Control"; pixel_x = -6; pixel_y = 22},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) +"Rq" = (/obj/machinery/computer/gyrotron_control{id_tag = "Reactor Gyrotron"},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/yellow/border{dir = 9},/obj/machinery/button/remote/blast_door/radproof{id = "EngineReactor"; name = "Reactor Blast Doors"; pixel_x = -25},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/reactor_smes) +"Rr" = (/turf/simulated/shuttle/wall/voidcraft,/area/surface/outside/lake/romsele) +"Rs" = (/obj/machinery/atmospherics/binary/pump,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"Ru" = (/obj/machinery/vending/loadout/costume,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"Rv" = (/obj/machinery/computer/fusion_fuel_control{id_tag = "Reactor Fuel Injectors"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/reactor_smes) +"Rw" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 4},/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_two) +"Rx" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/machinery/camera/network/main_outpost{c_tag = "MO - Landing North Airlock"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) +"Ry" = (/obj/item/weapon/towel{color = "#b5651d"; name = "brown towel"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_4) +"Rz" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 1"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"RA" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"RB" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light/small{dir = 8},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/surface/outpost/civilian/emergency_storage) +"RC" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main5_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main5_airlock_control"; name = "External Access Button"; pixel_y = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outside/plains/outpost) +"RD" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/table/glass,/obj/item/clothing/accessory/stethoscope,/obj/item/device/defib_kit/loaded,/obj/item/device/defib_kit/compact/loaded,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"RE" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) +"RF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/landing_south) +"RG" = (/obj/machinery/vending/loadout/accessory,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"RH" = (/obj/effect/floor_decal/techfloor/orange{dir = 5},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) +"RI" = (/obj/structure/table/steel,/obj/structure/closet/hydrant{pixel_y = -32},/obj/item/clothing/glasses/meson,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -22; pixel_y = -10},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) +"RJ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"RK" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/path/plains) +"RL" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) +"RN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"RO" = (/obj/effect/step_trigger/teleporter/bridge/west_to_east,/obj/structure/railing{dir = 4},/turf/simulated/floor/water,/area/surface/outside/river/indalsalven) +"RP" = (/obj/effect/decal/cleanable/dirt,/obj/vehicle/train/engine/quadbike{dir = 2},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) +"RQ" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/table/rack,/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Airlock 1"; dir = 8},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_one) +"RS" = (/obj/structure/table/rack/shelf,/obj/item/weapon/storage/backpack/parachute{pixel_x = -6; pixel_y = 6},/obj/item/weapon/storage/backpack/parachute{pixel_x = 6; pixel_y = 6},/obj/item/weapon/storage/backpack/parachute{pixel_x = -6; pixel_y = -6},/obj/item/weapon/storage/backpack/parachute{pixel_x = 6; pixel_y = -6},/obj/effect/floor_decal/corner/purple{dir = 10},/obj/effect/floor_decal/corner/purple{dir = 5},/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) +"RT" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 8},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) +"RV" = (/obj/structure/table/glass,/obj/item/clothing/mask/snorkel,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"RW" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/blue,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"RX" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/landing_north) +"RY" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 8},/obj/structure/cable/yellow{d1 = 6; d2 = 9; icon_state = "6-9"},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"RZ" = (/obj/machinery/computer/teleporter{dir = 2},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/teleporter) +"Sa" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"Sb" = (/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/uxstorage) +"Sc" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_one) +"Sd" = (/obj/machinery/vending/nifsoft_shop{dir = 4},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"Se" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) +"Sf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/blue,/area/surface/outpost/main/dorms/dorm_5) +"Sg" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) +"Sh" = (/obj/machinery/mineral/stacking_unit_console,/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/refinery) +"Si" = (/obj/machinery/disposal,/obj/machinery/firealarm{dir = 1; pixel_y = -25},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"Sj" = (/obj/machinery/conveyor{dir = 4; id = "mining_internal"},/obj/structure/plasticflaps/mining,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) +"Sk" = (/obj/effect/zone_divider,/turf/simulated/shuttle/wall/voidcraft,/area/surface/outpost/wall) +"Sm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"Sn" = (/obj/machinery/light,/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) +"So" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_two) +"Sp" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"Sq" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"Sr" = (/obj/structure/fitness/weightlifter,/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) +"Ss" = (/obj/structure/janitorialcart,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) +"Su" = (/obj/machinery/computer/secure_data,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"Sv" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) +"Sx" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"Sy" = (/obj/machinery/fitness/heavy/lifter,/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) +"Sz" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/landing_south) +"SA" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"SB" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"SC" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) +"SD" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"SE" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "sauna_tint2"},/obj/structure/window/reinforced/polarized{id = "sauna_tint2"},/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) +"SF" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/bottle/champagne,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) +"SH" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/candle/candelabra,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) +"SJ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/mining_main) +"SK" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/tools) +"SL" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Hallway 5"; dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"SN" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) +"SO" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/monitoring) +"SP" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/gym) +"SQ" = (/obj/structure/table/woodentable,/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"},/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"; pixel_y = 3},/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"; pixel_y = 6},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"SR" = (/obj/structure/dispenser{phorontanks = 0},/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) +"SS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"ST" = (/obj/effect/floor_decal/techfloor/orange{dir = 8},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Gateway"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) +"SU" = (/obj/effect/decal/cleanable/dirt,/obj/effect/overlay/snow/floor,/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/path/plains) +"SV" = (/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"SW" = (/obj/effect/floor_decal/industrial/outline/red,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/landing_south) +"SX" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"SY" = (/turf/simulated/floor/water{outdoors = 0},/area/surface/outside/plains/mountains) +"SZ" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor/carpet/oracarpet,/area/surface/outpost/main/dorms/dorm_1) +"Ta" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"Tc" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"Te" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/dorms/dorm_3) +"Tf" = (/obj/machinery/hyperpad/centre{map_pad_id = "pad_1_away"; map_pad_link_id = "pad_1_station"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"Tg" = (/obj/structure/closet/wardrobe/xenos,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) +"Th" = (/obj/structure/closet/wardrobe/mixed,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"Ti" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/brown/border{dir = 9},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 10},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"Tj" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"Tk" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/computer/timeclock/premade/east,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"Tl" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/gen_room) +"Tm" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) +"To" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 1},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"Tq" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/orange/bordercorner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"Tr" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/item/weapon/storage/fancy/markers,/obj/random/toy,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"Ts" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) +"Tt" = (/obj/structure/closet/secure_closet/miner,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/brown/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 8},/obj/machinery/camera/network/mining{c_tag = "PO - Mining Hallway 2"; dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"Tu" = (/obj/structure/table,/obj/machinery/light_construct{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"Tv" = (/obj/machinery/door/airlock{id_tag = "dorm4"; name = "Dorm 4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_4) +"Tw" = (/obj/structure/table/steel,/obj/item/weapon/tool/wrench,/obj/item/weapon/tool/crowbar,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/brown/border{dir = 10},/obj/machinery/light,/obj/machinery/camera/network/mining{c_tag = "PO - Tool Storage"; dir = 4},/obj/item/device/multitool,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) +"Tx" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"Ty" = (/obj/machinery/shower,/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_1) +"Tz" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/machinery/suit_cycler/mining,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"TA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) +"TB" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/two) +"TC" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/structure/closet/secure_closet/pilot,/obj/item/device/cataloguer/compact,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"TD" = (/obj/structure/fence{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 1},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"TE" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) +"TF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/closet/toolcloset,/obj/item/weapon/storage/belt,/obj/item/weapon/storage/belt,/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"TG" = (/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) +"TH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) +"TI" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"TL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"TM" = (/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"TN" = (/obj/structure/closet/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/suit/radiation,/obj/item/clothing/suit/radiation,/obj/item/device/geiger,/obj/item/device/geiger,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/corner/yellow{dir = 9},/obj/effect/floor_decal/corner/yellow{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"TO" = (/turf/simulated/wall,/area/surface/outpost/main/restroom) +"TP" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"TQ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_three) +"TR" = (/obj/structure/bed/chair,/obj/effect/landmark/start{name = "Explorer"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"TS" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/plating{icon_state = "asteroidplating2"},/area/surface/outpost/mining_main/exterior) +"TT" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main4_airlock_interior"; locked = 1; name = "Landing North Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/landing_north) +"TU" = (/obj/machinery/atmospherics/unary/freezer{icon_state = "freezer"},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) +"TV" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"TW" = (/obj/structure/closet/secure_closet/explorer,/obj/item/device/binoculars,/obj/machinery/status_display{pixel_x = -32},/obj/item/device/cataloguer,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) +"TX" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_two) +"TZ" = (/obj/structure/closet/crate/secure/gear{name = "explorer crate"; req_access = list(43)},/obj/item/weapon/storage/belt/utility/full,/obj/item/weapon/storage/belt/utility/full,/obj/effect/floor_decal/industrial/outline,/obj/item/clothing/head/welding,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/corridor/right_upper) +"Ua" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/light/small,/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"Ub" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"Uc" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) +"Ud" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"Ue" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/heavyduty{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) +"Uf" = (/obj/structure/closet,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"Ug" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"Uh" = (/turf/simulated/wall,/area/surface/outpost/civilian/sauna) +"Ui" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/left_two) +"Uj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"Uk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"Ul" = (/obj/structure/table/bench/wooden,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"Um" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "mining1_airlock_control"; pixel_x = 26; pixel_y = -26; req_one_access = list(48); tag_exterior_door = "mining1_airlock_exterior"; tag_interior_door = "mining1_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"Uo" = (/obj/machinery/fusion_fuel_injector/mapped{dir = 1; id_tag = "Reactor Fuel Injectors"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"Up" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/heavyduty{icon_state = "1-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/atmos_room) +"Uq" = (/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/water/deep/pool,/area/surface/outpost/civilian/pool) +"Ur" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"Us" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) +"Ut" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"Uu" = (/turf/simulated/wall,/area/surface/outpost/mining_main/uxstorage) +"Uv" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"Uw" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 6},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"Ux" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/railing,/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"Uy" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/teleporter) +"Uz" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) +"UA" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_one) +"UB" = (/obj/effect/floor_decal/corner/red{dir = 6},/obj/effect/floor_decal/corner/red{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) +"UC" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/blast/radproof{id = "EngineReactor"; rad_resistance = 150},/turf/simulated/floor/reinforced,/area/surface/outpost/engineering/reactor_smes) +"UD" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/power/hydromagnetic_trap,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) +"UE" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main2_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main2_airlock_control"; name = "External Access Button"; pixel_x = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/right_one) +"UF" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"UG" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"UH" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_one) +"UI" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) +"UJ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"UK" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) +"UL" = (/obj/structure/cable/blue,/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Security"; charge = 5e+006; input_attempt = 1; input_level = 150000; output_level = 150000},/turf/simulated/floor/plating,/area/surface/outpost/security/smes) +"UM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"UN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) +"UO" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"UP" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/normal) +"UQ" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Outpost Reactor Power"; name_tag = "Outpost Reactor Power"},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"UR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"US" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"UT" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"UU" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/structure/closet/crate,/obj/machinery/camera/network/mining{c_tag = "PO - Mining Stocking"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"UV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"UW" = (/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/one) +"UY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"UZ" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"Va" = (/obj/machinery/computer/fusion_core_control{id_tag = "Outpost Fusion Core"},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Reactor Monitoring"; name = "Engineering_Outpost"; network = list("Engineering")},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/reactor_smes) +"Vb" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic{dir = 1},/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) +"Vc" = (/obj/structure/curtain/open/shower,/obj/machinery/shower{dir = 4; pixel_x = 5},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"Vd" = (/obj/structure/closet/secure_closet/miner,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"Ve" = (/obj/structure/fence/cut/medium,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) +"Vf" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"Vg" = (/turf/simulated/wall/solidrock,/area/surface/outside/plains/mountains) +"Vh" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/item/frame/extinguisher_cabinet,/obj/item/weapon/extinguisher,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"Vj" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"Vk" = (/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/storage) +"Vn" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main8_airlock_control"; pixel_x = -26; pixel_y = -26; tag_exterior_door = "main8_airlock_exterior"; tag_interior_door = "main8_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) +"Vo" = (/obj/machinery/mineral/unloading_machine{icon_state = "unloader-corner"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) +"Vp" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"Vq" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/monitoring) +"Vr" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"Vs" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"Vt" = (/obj/machinery/button/remote/blast_door/radproof{name = "Engine Monitoring Room Blast Doors"; pixel_x = 23},/obj/machinery/computer/security/engineering,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/yellow/border{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/reactor_smes) +"Vu" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"Vv" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"Vy" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"Vz" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"VA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet/bcarpet,/area/surface/outpost/main/dorms/dorm_4) +"VB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) +"VC" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Landing South Airlock Access"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) +"VD" = (/obj/effect/step_trigger/teleporter/bridge/south_to_north,/obj/structure/railing{dir = 1},/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) +"VE" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"VF" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 4},/obj/effect/overlay/snow/floor/edges{dir = 9},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_two) +"VG" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) +"VH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"VI" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Emergency Storage"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/emergency_storage/two) +"VJ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"VK" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/water/deep/pool,/area/surface/outpost/civilian/pool) +"VL" = (/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/outpost) +"VM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"VN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"VO" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 5},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) +"VP" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room) +"VQ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/left_lower) +"VR" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/blood/oil,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) +"VT" = (/obj/structure/table/steel,/obj/random/junk,/obj/random/action_figure,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) +"VU" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/mineral/equipment_vendor{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"VV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"VW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"VX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"VY" = (/obj/item/weapon/stool/padded,/obj/machinery/camera/network/civilian{c_tag = "CO - Pool 1"; dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"VZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) +"Wa" = (/obj/machinery/scale,/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) +"Wb" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/gym) +"Wc" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"We" = (/obj/structure/closet/crate{name = "Deuterium Storage"},/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) +"Wg" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"Wh" = (/obj/machinery/vending/nifsoft_shop{dir = 8},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"Wi" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) +"Wj" = (/obj/machinery/vending/loadout/overwear,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"Wk" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"Wl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_4) +"Wm" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/structure/table/steel,/obj/machinery/firealarm{dir = 1; pixel_y = -25},/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"Wn" = (/obj/effect/zone_divider,/turf/simulated/mineral/sif,/area/surface/outside/plains/mountains) +"Wo" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) +"Wp" = (/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"Wq" = (/obj/structure/table/rack,/obj/item/weapon/material/fishing_rod/modern/cheap,/obj/item/weapon/material/fishing_rod/modern/cheap,/obj/item/weapon/material/fishing_rod/modern/cheap,/obj/item/weapon/material/fishing_rod/modern/cheap,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"Wr" = (/obj/machinery/door/firedoor/glass,/obj/item/tape/engineering,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/restroom) +"Ws" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"Wt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"Wv" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/overlay/snow/floor/edges{dir = 8},/obj/effect/overlay/snow/floor/edges{dir = 4},/obj/effect/zone_divider,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"Ww" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"Wx" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/pool) +"Wy" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/machinery/camera/network/mining{c_tag = "PO - Airlock Access 2"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) +"Wz" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "ENG_Outpost_airlock_control"; name = "Internal Access Button"; pixel_x = 5; pixel_y = 26; req_one_access = list(10)},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "ENG_Outpost_airlock_interior"; locked = 1; name = "Engineering Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/engineering/monitoring) +"WA" = (/obj/structure/closet/secure_closet/sar,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/item/roller/adv,/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) +"WB" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/atmos_room) +"WC" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"WD" = (/obj/random/toolbox,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"WE" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) +"WG" = (/obj/structure/flora/pottedplant/fern,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) +"WH" = (/obj/machinery/vending/cola{dir = 8},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"WI" = (/obj/structure/closet/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/suit/radiation,/obj/item/clothing/suit/radiation,/obj/item/device/geiger,/obj/item/device/geiger,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"WJ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"WK" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main1_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main1_airlock_control"; name = "External Access Button"; pixel_y = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/right_two) +"WL" = (/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 5},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"WM" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/exploration/containment) +"WN" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/industrial/danger{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/teleporter) +"WO" = (/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm3"; name = "Door Lock Control"; pixel_y = -25; specialfunctions = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) +"WP" = (/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/surface/outside/plains/normal) +"WQ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/exploration) +"WR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"WS" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"WT" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/restroom) +"WV" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/civilian/pool) +"WW" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"WX" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) +"WY" = (/obj/effect/zone_divider,/turf/simulated/floor/water/deep,/area/surface/outside/river/indalsalven) +"WZ" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1,/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Pool"},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/pool) +"Xa" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) +"Xb" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) +"Xc" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"Xd" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloor,/obj/item/weapon/material/ashtray/plastic,/obj/machinery/recharger,/obj/effect/floor_decal/corner/red/border,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"Xe" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"Xf" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"Xg" = (/obj/machinery/button/remote/blast_door{id = "garage1"; name = "Garage Shutter Control"; pixel_x = 22; req_one_access = list(48,43)},/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outpost/main/airlock/right_two) +"Xh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) +"Xi" = (/obj/machinery/fusion_fuel_injector/mapped{dir = 8; id_tag = "Reactor Fuel Injectors"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"Xj" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_3) +"Xk" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"Xl" = (/obj/effect/floor_decal/techfloor/orange{dir = 10},/obj/structure/extinguisher_cabinet{pixel_x = -25},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) +"Xm" = (/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) +"Xn" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/bed/chair/office/light{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"Xo" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Outpost Access"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"Xp" = (/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/red/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 8},/obj/item/device/gps/security,/obj/item/device/gps/security,/obj/item/device/gps/security,/obj/item/device/gps/security,/turf/simulated/floor/tiled,/area/surface/outpost/security) +"Xq" = (/obj/structure/closet/toolcloset,/obj/item/device/flashlight/maglight,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"Xr" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) +"Xs" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"Xt" = (/obj/structure/sink{pixel_y = 16},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) +"Xu" = (/turf/simulated/wall,/area/surface/outpost/civilian/fishing) +"Xv" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_three) +"Xw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) +"Xx" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) +"Xy" = (/obj/effect/floor_decal/borderfloor/cee{dir = 1},/obj/effect/floor_decal/industrial/danger/cee{dir = 1},/obj/machinery/door/window/brigdoor/westright{name = "Containment Pen"; req_one_access = list(43,1)},/obj/machinery/door/window/brigdoor/eastleft{name = "Containment Pen"; req_one_access = list(43,1)},/obj/machinery/door/blast/regular/open{id = "pen"; name = "Containment Lockdown Blast Doors"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"Xz" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) +"XA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"XB" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"XC" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor/carpet,/area/surface/outpost/main/dorms/dorm_6) +"XD" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"XE" = (/turf/simulated/mineral/sif,/area/surface/outside/plains/mountains) +"XF" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"XG" = (/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/surface/outpost/security/smes) +"XH" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"XI" = (/obj/structure/table/steel,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"XJ" = (/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"XK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"XL" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) +"XM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/turcarpet,/area/surface/outpost/main/dorms/dorm_3) +"XN" = (/turf/simulated/floor/water/deep,/area/surface/outside/lake/romsele) +"XO" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/search_and_rescue) +"XP" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor/carpet/blue,/area/surface/outpost/main/dorms/dorm_5) +"XQ" = (/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/tools) +"XR" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) +"XS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Custodial Closet"; req_one_access = list(26)},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/janitor) +"XU" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"XV" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_4) +"XW" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) +"XX" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"XY" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) +"XZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/security) +"Ya" = (/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/pool) +"Yb" = (/obj/machinery/shower,/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_3) +"Yc" = (/turf/simulated/wall,/area/surface/outpost/mining_main/refinery) +"Yd" = (/obj/machinery/firealarm{dir = 1; pixel_y = -25},/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) +"Ye" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"Yf" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/white/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/structure/closet/emcloset,/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) +"Yg" = (/obj/machinery/washing_machine,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) +"Yh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"Yi" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) +"Yj" = (/obj/effect/floor_decal/corner_steel_grid{dir = 5},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"Yk" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/white/border{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"Yl" = (/obj/item/weapon/towel{color = "#800080"; name = "purple towel"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_2) +"Ym" = (/obj/structure/closet/crate/secure/gear{name = "explorer crate"; req_access = list(43)},/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/weapon/storage/firstaid/regular,/obj/effect/floor_decal/industrial/outline,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/corridor/right_upper) +"Yn" = (/obj/structure/fence{dir = 8},/obj/effect/zone_divider,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) +"Yo" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"Yp" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/gateway) +"Yq" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/symbol/da{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"Yr" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) +"Ys" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/red/border{dir = 5},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; operating = 0; pixel_y = 24},/obj/effect/decal/cleanable/blood/oil,/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) +"Yt" = (/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"Yu" = (/obj/machinery/atmospherics/binary/pump/on,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"Yv" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) +"Yw" = (/turf/simulated/floor/water,/area/surface/outside/plains/mountains) +"Yy" = (/obj/effect/decal/remains/ribcage,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/outdoors/dirt,/area/surface/outside/plains/outpost) +"Yz" = (/turf/unsimulated/wall/planetary/sif,/area/surface/outside/river/indalsalven) +"YA" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/storage) +"YB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_2) +"YC" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security) +"YD" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) +"YE" = (/obj/effect/floor_decal/corner/red{dir = 9},/obj/effect/floor_decal/corner/red{dir = 6},/obj/structure/table/reinforced,/obj/item/weapon/storage/box,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) +"YF" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) +"YG" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"YH" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) +"YI" = (/obj/effect/floor_decal/steeldecal/steel_decals1,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) +"YJ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/machinery/computer/guestpass{pixel_y = 28},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) +"YK" = (/obj/effect/floor_decal/borderfloor,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/corner/purple/border,/obj/item/clothing/suit/caution,/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) +"YL" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"YM" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/orange/border{dir = 8},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue,/obj/machinery/light_switch{pixel_x = -22; pixel_y = -10},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) +"YO" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/showers) +"YP" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass{name = "Laundry"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/laundry) +"YQ" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) +"YR" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/light_switch{pixel_x = 22; pixel_y = -10},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"YS" = (/obj/machinery/vending/fitness{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) +"YT" = (/obj/effect/landmark/start{name = "Search and Rescue"},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"YU" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"YV" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) +"YW" = (/turf/simulated/wall,/area/surface/outpost/main/dorms/dorm_2) +"YX" = (/obj/machinery/space_heater,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"YZ" = (/obj/structure/closet/secure_closet/miner,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"Za" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 1"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"Zb" = (/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/fishing) +"Zc" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) +"Zd" = (/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Right Wing"; charge = 5e+006; input_attempt = 1; input_level = 150000; output_level = 150000},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) +"Zf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"Zg" = (/obj/structure/closet/crate,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/refinery) +"Zh" = (/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"Zj" = (/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/storage) +"Zk" = (/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/structure/window/basic,/obj/structure/window/basic{dir = 8},/obj/item/weapon/mining_scanner,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/head/helmet/space/void/mining,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"Zl" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/left_upper) +"Zm" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/effect/floor_decal/corner/purple/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 4},/obj/machinery/light_switch{pixel_x = 22; pixel_y = -10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) +"Zn" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"Zo" = (/obj/structure/table/steel,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/light/small{dir = 4},/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) +"Zp" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) +"Zq" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) +"Zr" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"Zt" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/door/firedoor/glass/hidden{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) +"Zu" = (/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/normal) +"Zv" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/white/border{dir = 10},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) +"Zx" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) +"Zy" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/surface/outside/plains/outpost) +"Zz" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) +"ZA" = (/obj/structure/closet/emcloset,/obj/machinery/camera/network/engineering_outpost{c_tag = "ENG - Mining Outpost Power 2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) +"ZB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"ZC" = (/obj/item/weapon/stool/padded,/obj/structure/boxingrope{dir = 8},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) +"ZD" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) +"ZE" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"ZF" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/landing_north) +"ZG" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/civilian/pool) +"ZI" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) +"ZJ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) +"ZK" = (/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/smes) +"ZL" = (/obj/structure/table/bench/standard,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) +"ZM" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) +"ZN" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) +"ZO" = (/obj/machinery/conveyor{id = "mining_north"},/obj/machinery/mineral/output,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/exterior) +"ZP" = (/obj/random/technology_scanner,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) +"ZQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) +"ZR" = (/obj/structure/table/glass,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/item/weapon/backup_implanter{pixel_y = -6},/obj/item/weapon/backup_implanter{pixel_y = 6},/obj/item/weapon/backup_implanter{pixel_y = 12},/obj/item/weapon/backup_implanter,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) +"ZS" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +"ZT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) +"ZU" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 140; external_pressure_bound_default = 140; icon_state = "map_vent_out"; pressure_checks = 0; pressure_checks_default = 0; use_power = 1},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) +"ZV" = (/obj/structure/toilet,/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_5) +"ZW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) +"ZX" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/power/terminal{dir = 4},/obj/structure/catwalk,/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/random/powercell,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/plating,/area/surface/outpost/engineering/smes) +"ZY" = (/obj/machinery/washing_machine,/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) +"ZZ" = (/obj/machinery/newscaster{pixel_x = -30},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) (1,1,1) = {" -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -ab -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -ab -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -Xa -Xa -Xa -Xa -XW -XW -XW -XW -XW -XW -ab -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -"} -(2,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -ai -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -ai -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -VW -KQ -VW -VW -xa -xa -xa -xa -xa -xa -ai -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -aa -XW -"} -(3,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -xa -Xb -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -xa -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -ZJ -xa -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -xa -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -KQ -VW -VW -uo -uo -uo -uo -uo -uo -yL -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -XW -"} -(4,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -KQ -VW -VW -uo -uo -uo -uo -uo -uo -yL -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -xa -xa -xa -Hu -Hu -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -XW -"} -(5,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(6,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(7,1,1) = {" -XW -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(8,1,1) = {" -XW -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -VW -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(9,1,1) = {" -XW -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(10,1,1) = {" -XW -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -VW -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(11,1,1) = {" -XW -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -xa -xa -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -yL -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(12,1,1) = {" -XW -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -gM -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -xa -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -VW -uo -uo -uo -uo -uo -yL -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(13,1,1) = {" -XW -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(14,1,1) = {" -XW -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -VW -uo -uo -uo -uo -uo -uo -yL -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(15,1,1) = {" -XW -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -VW -uo -uo -uo -uo -uo -uo -yL -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(16,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -VW -uo -uo -uo -uo -uo -uo -yL -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -gN -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(17,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -xa -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -VW -uo -uo -uo -uo -uo -uo -yL -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(18,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -VW -uo -uo -uo -uo -uo -uo -yL -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(19,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -yL -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(20,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -yL -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(21,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -VW -uo -uo -uo -uo -uo -uo -yL -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(22,1,1) = {" -XW -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -gM -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -VW -uo -uo -uo -uo -uo -uo -yL -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(23,1,1) = {" -XW -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -yL -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(24,1,1) = {" -XW -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -yL -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -XW -"} -(25,1,1) = {" -XW -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -VW -VW -uo -uo -uo -uo -yL -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -XW -"} -(26,1,1) = {" -XW -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -VW -VW -uo -uo -uo -uo -yL -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -XW -"} -(27,1,1) = {" -XW -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -VW -VW -VW -uo -uo -uo -yL -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -XW -"} -(28,1,1) = {" -XW -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -VW -VW -VW -uo -uo -uo -yL -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -XW -"} -(29,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -VW -VW -uo -uo -uo -yL -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -XW -"} -(30,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -VW -VW -uo -uo -uo -yL -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -XW -"} -(31,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -VW -VW -uo -uo -yL -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -XW -"} -(32,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -VW -VW -uo -uo -yL -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -XW -"} -(33,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -VW -uo -uo -yL -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -XW -"} -(34,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -VW -uo -uo -yL -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -XW -"} -(35,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -VW -uo -uo -yL -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -XW -"} -(36,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -VW -uo -uo -yL -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -XW -"} -(37,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -VW -uo -uo -yL -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(38,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -VW -uo -uo -yL -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(39,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -uo -uo -yL -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(40,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -KQ -VW -VW -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(41,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -KQ -VW -VW -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(42,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(43,1,1) = {" -XW -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(44,1,1) = {" -XW -xa -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(45,1,1) = {" -XW -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -KQ -KQ -VW -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(46,1,1) = {" -XW -xa -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -cI -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -KQ -KQ -VW -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(47,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -KQ -VW -VW -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -uo -pc -uo -pc -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(48,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -uo -uo -uo -uo -uo -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(49,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -uo -uo -pc -uo -uo -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(50,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -uo -uo -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(51,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -uo -uo -pc -uo -uo -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(52,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -VW -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -uo -uo -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(53,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -VW -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(54,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -VW -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -uo -uo -uo -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(55,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -VW -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -uo -uo -pc -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -XW -"} -(56,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -VW -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -XW -"} -(57,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -XW -"} -(58,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -XW -"} -(59,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -XW -"} -(60,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(61,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -KQ -VW -VW -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(62,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -VW -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(63,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -VW -VW -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(64,1,1) = {" -ab -ai -ai -ai -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -MR -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -MR -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -Yx -Yx -Yx -Yo -Yo -Yx -yL -yL -yL -yL -Jx -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -ai -ai -ab -"} -(65,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -KQ -VW -VW -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(66,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -KQ -VW -VW -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(67,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -KQ -KQ -VW -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(68,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(69,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(70,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(71,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(72,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(73,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(74,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(75,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(76,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(77,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(78,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(79,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(80,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(81,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(82,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(83,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(84,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(85,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(86,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(87,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(88,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(89,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(90,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(91,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(92,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(93,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(94,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(95,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(96,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(97,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(98,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(99,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(100,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(101,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(102,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(103,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -KQ -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(104,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(105,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -KQ -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(106,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -KQ -KQ -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(107,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -KQ -KQ -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(108,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -KQ -VW -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(109,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -KQ -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(110,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -KQ -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(111,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -KQ -VW -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(112,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -KQ -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(113,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -KQ -VW -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(114,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -KQ -KQ -VW -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(115,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -KQ -KQ -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(116,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -KQ -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(117,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -KQ -VW -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(118,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -VW -VW -KQ -KQ -KQ -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(119,1,1) = {" -XW -xa -xa -xa -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -Xb -Xb -VW -VW -KQ -KQ -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(120,1,1) = {" -XW -xa -xa -xa -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -ZJ -VW -VW -KQ -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(121,1,1) = {" -XW -xa -xa -xa -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Yx -VW -KQ -KQ -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(122,1,1) = {" -XW -xa -xa -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -Yx -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(123,1,1) = {" -XW -xa -xa -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -Yo -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(124,1,1) = {" -XW -xa -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -ip -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -Yx -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(125,1,1) = {" -XW -xa -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -bj -br -br -bG -br -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -br -bG -Tn -br -Tn -Tn -Tn -Ak -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -MT -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -zY -UX -UX -UX -UX -UX -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -KQ -VW -Yx -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(126,1,1) = {" -XW -xa -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -bk -ip -UX -bH -bH -bH -bH -bH -bH -bH -bH -hy -hy -hy -hA -hy -hy -hy -hy -hy -hy -hA -hy -ul -uO -tG -UX -ip -UX -ip -ip -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -vd -rC -Ls -Md -MV -rB -uD -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -VW -VW -VW -Yx -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(127,1,1) = {" -XW -xa -UX -UX -UX -aD -aO -aU -aX -aU -aX -aU -aX -aU -bf -bm -bs -bA -bI -bS -ck -cK -bT -ev -fw -dy -hz -iu -jp -jp -jp -nm -oT -pU -rf -rY -sV -tA -um -uP -tG -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -qC -KN -KN -Me -KN -KN -qC -UX -UX -UX -UX -UX -UX -vd -rC -rC -rC -rC -rB -rB -rC -rC -rB -uD -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -KQ -VW -VW -VW -VW -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(128,1,1) = {" -ab -ai -Tg -Tg -ax -aE -aP -aV -aY -aV -aY -aV -aY -aV -Tg -Ri -bt -bB -bI -bT -cl -cL -du -cM -fx -gv -hy -iv -jq -jt -lK -nn -oU -pV -rg -lP -sV -tB -un -uR -tG -uY -wL -wL -wL -wL -Tg -Tg -Tg -Tg -Tg -Tg -Tg -Tg -Dq -EI -EI -Hl -EI -Hl -JT -KN -Lt -Mf -MW -KN -Os -EI -EI -EI -Hl -EI -Hl -JT -So -So -Tr -Tr -Tr -So -Tr -Tr -So -We -Un -Tg -Tg -Tg -ax -Tg -Tg -Tg -Tg -Tg -Tg -Tg -Tg -Ri -Tg -Tg -Tg -Tg -Tg -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -Yx -Yx -Yx -Yo -Yo -Yx -Yx -Yx -yL -yL -Jx -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -Jx -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -ai -ai -ai -ab -"} -(129,1,1) = {" -XW -xa -UX -UX -UX -aF -aQ -aS -aS -aS -aS -aS -aS -bb -bg -bn -bv -UX -bH -bU -cm -cM -dv -ew -fy -gw -hA -iv -jr -kz -lL -nn -oU -pW -ri -rZ -hA -tC -uq -uS -tG -wb -wL -xr -xV -yz -yY -UX -UX -UX -UX -sl -rC -rC -ve -Ci -Ci -Ci -Ia -Ia -Ci -KN -Lu -Mg -MX -KN -Ot -Pc -Pc -Ot -Ot -Ot -ip -RK -Sp -SJ -Ts -TW -Us -UL -Ve -Vq -VQ -Wf -TO -TO -UX -UX -UX -ip -ip -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(130,1,1) = {" -XW -xa -UX -UX -UX -aG -aR -aS -aS -aS -aS -aS -aS -bc -UX -YY -UX -UX -bJ -bV -co -cN -dw -dy -fz -gx -hy -iv -js -kA -lM -nn -oU -pV -rj -lP -sV -tD -ur -uT -vA -wc -wM -xs -xW -wL -za -UX -UX -UX -UX -qC -Ci -Ci -Ci -Ci -FL -Hm -Ic -Jb -JV -KP -KP -Mh -MY -KP -Ov -Pd -Pv -Qb -Qw -Ot -Ot -Ot -Sp -SK -Tt -TX -Ut -Tv -Vf -Vr -VR -Wf -TO -TO -TO -UX -UX -UX -UX -UX -UX -UX -ip -UX -UX -YY -UX -UX -UX -UX -UX -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -xa -XW -"} -(131,1,1) = {" -XW -xa -UX -UX -UX -aF -aQ -aS -aS -aS -aS -aS -aS -bd -UX -YY -UX -UX -bH -bV -cp -cO -dx -ex -fA -gy -hB -iw -jt -kB -jt -no -hA -pX -rk -lP -sV -tE -us -uU -uX -wd -wN -wL -wL -wL -za -UX -UX -UX -UX -sr -Ci -CG -Dr -EK -FM -Hn -Ie -Jc -JW -KR -Lv -Mi -Na -NP -Ow -Pe -Px -Qc -Qx -QT -Rj -RL -Sp -SM -Tu -TZ -Uu -Sp -Vg -Vt -Sp -Wg -TO -TO -TO -TO -TO -TO -TO -TO -TO -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(132,1,1) = {" -XW -aj -UX -UX -ip -aG -aR -aS -aS -aS -aS -aS -aS -aX -UX -YY -UX -UX -bH -bW -cq -cP -dy -ey -fB -gz -hy -hy -ju -kC -ju -hA -hy -pY -rm -sa -hy -tG -ut -tG -tG -we -wO -xt -xX -uY -qC -UX -UX -UX -UX -qC -Ci -CH -Ds -CJ -FO -Ho -If -Jd -JX -CJ -Lw -Mj -Nb -NQ -Oy -Pf -Py -Qd -Qy -NQ -Rl -RM -Sp -SN -Tv -Sp -Sp -Sp -Sp -Sp -Sp -qC -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -UX -UX -UX -YY -UX -UX -UX -UX -UX -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(133,1,1) = {" -XW -aj -UX -UX -ip -aG -aQ -aS -aS -aS -aS -aS -aS -bd -UX -YY -UX -UX -bH -bY -cq -cR -dz -ez -fC -gA -hy -ix -jv -kD -lN -np -oV -qa -rn -sb -sW -tH -uu -uW -vB -wf -wP -wg -xY -uY -qA -UX -UX -UX -UX -sr -Ci -CI -Dt -CJ -CJ -CJ -CJ -CJ -CJ -CJ -Lx -Mk -Nc -NQ -NQ -NQ -NQ -NQ -NQ -NQ -Rn -RN -NQ -SP -Tw -Ua -Uv -UO -Vh -Vu -UE -qC -TO -TO -ZK -Yt -Yt -Yt -ZK -TO -TO -TO -TO -UX -UX -YY -UX -UX -UX -UX -UX -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(134,1,1) = {" -XW -aj -UX -UX -ip -aG -aR -aS -aS -aS -aS -aS -aS -aX -UX -YY -UX -UX -bH -ca -cr -cS -dA -eA -fD -gB -hC -iy -jw -kE -lO -nq -oW -hy -ro -hy -hA -tK -uv -uX -vC -wg -wQ -xu -xZ -uY -qA -UX -UX -UX -UX -qC -Ci -CJ -CJ -CJ -FP -Hp -Ig -Je -JY -CO -Ly -Ml -Nd -NR -Oz -Ph -Pz -Qg -Qz -NQ -NQ -NQ -NQ -SQ -Tx -Ub -Uw -UP -Vi -Vk -VS -qC -TO -TO -ZK -Yv -Zu -dn -ZK -ZK -ZK -TO -TO -UX -UX -YY -UX -UX -UX -UX -UX -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(135,1,1) = {" -XW -aj -UX -UX -UX -aF -aQ -aS -aS -aS -aS -aS -aS -bd -UX -YY -UX -UX -bH -bH -bH -bH -bH -eC -fE -gC -hF -hF -jx -hF -lP -nr -oY -qb -rp -sc -hy -tG -tG -tG -vD -wj -wS -uY -uY -yA -qA -UX -UX -UX -UX -qC -Cj -CK -Du -EL -FQ -Hq -Ih -Jf -JZ -KS -LA -Mn -Ne -NT -OA -Pi -PA -Qh -QB -QU -Ro -RO -NR -SR -Tx -Ub -Ux -UQ -Vj -Vv -VS -qC -TO -ZK -ZK -Yw -Zv -BP -SL -Ms -ZK -ZK -TO -UX -UX -YY -UX -UX -UX -UX -UX -Xb -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(136,1,1) = {" -XW -aj -UX -UX -UX -aF -aR -aS -aS -aS -aS -aS -aS -aX -UX -YY -UX -UX -bK -cb -cs -cT -dB -eD -fF -gD -hF -iz -jy -hF -lR -ns -hy -qc -rq -sd -hy -rl -rl -uY -uY -wl -uY -uY -sl -rB -zb -UX -UX -UX -UX -sr -Cj -CL -Dv -CO -FR -Hr -Ii -Jg -Ka -CO -LB -Mo -Nf -NR -OB -Pj -PB -Qi -QC -QV -Rq -RP -NR -ST -Ty -Ua -Uy -UR -Vk -Vx -UE -qC -TO -Xc -Xv -YA -Zw -Zw -Zw -OW -PT -Mz -TO -UX -UX -YY -UX -UX -UX -UX -UX -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -xa -XW -"} -(137,1,1) = {" -XW -aj -UX -UX -UX -aH -aS -aS -ba -ba -ba -aS -aS -be -UX -YY -UX -UX -bL -cc -ct -cU -bH -bH -bH -bH -hF -iA -jz -hF -lS -nt -hy -hy -rr -hy -oW -rl -rl -va -vE -wm -wT -xv -qA -yB -yB -UX -UX -UX -UX -sr -Cj -CM -Dw -CO -CO -CO -CO -CO -CO -CO -LC -Mp -Ng -NR -NR -NR -NR -NR -NR -NR -Rr -RQ -NR -SU -Tz -Uc -Uz -US -Vl -Vy -UE -qC -TO -Xc -Xw -YB -Zx -dh -lz -dQ -SE -Mz -TO -UX -UX -YY -UX -UX -UX -UX -UX -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -pu -pu -XW -"} -(138,1,1) = {" -XW -aj -UX -UX -UX -UX -ip -ip -UX -UX -UX -ip -ip -UX -UX -YY -UX -UX -bM -cd -bL -cd -dC -eF -eF -gE -hF -iB -jA -hF -lT -nu -oZ -kF -qx -rl -rl -tL -rl -va -vF -wn -wU -xv -qA -yB -yB -UX -UX -UX -UX -sr -Cj -CO -CO -CO -FT -Hs -Ij -Jh -Kb -DC -LD -Mq -Nh -NU -OC -Pk -PD -Qj -QD -NR -NR -NR -NR -SV -TA -Ud -UA -UT -Vm -UA -UE -qC -TO -Xc -Xy -YB -Zy -uV -vM -dQ -Vz -Mz -TO -UX -UX -YY -UX -UX -UX -UX -UX -Xb -Xb -Xb -Xb -Xb -Xb -Xb -VW -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -dV -dV -Fx -"} -(139,1,1) = {" -XW -aj -UX -UX -UX -UX -ip -ip -ip -UX -UX -UX -UX -UX -UX -YY -UX -UX -bL -cd -bL -cd -dC -eF -eF -eF -hF -hF -hF -hF -lU -nv -pa -kF -qx -rl -sX -UX -rl -uY -uY -wo -uY -uY -qC -yB -yB -UX -UX -UX -UX -sr -Ck -CP -Dx -EN -FU -Ht -Ik -Jj -Kc -KT -LA -Mr -Ne -NV -OE -Pl -PE -Qk -QE -QW -Rs -RR -NU -SW -TB -Ub -UB -UU -Vn -VA -VS -qC -TO -ZK -ZK -YC -Zz -Dh -IB -MZ -ZK -ZK -TO -UX -UX -YY -UX -UX -UX -UX -UX -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -xa -dV -dV -Fx -"} -(140,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -ip -ip -ip -UX -UX -YY -UX -UX -bN -ce -cu -ce -dC -eF -eF -eF -hG -iC -jB -kF -kF -nw -kF -kF -qx -rl -sX -UX -uw -vb -vG -vG -vb -vG -qA -yB -yB -UX -UX -UX -UX -sr -Ck -CQ -Dy -DC -FV -Hv -Il -Jk -Kd -DC -Lw -Mt -Ni -NU -OF -Pm -PF -Qm -QF -NU -Rt -RS -NU -SZ -TC -Ub -UC -UV -Vk -VB -VS -qA -UX -TO -ZK -ZK -ZA -vQ -HV -gL -ZK -TO -TO -UX -UX -YY -UX -UX -UX -UX -UX -Xb -Xb -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -dV -Fx -"} -(141,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -ip -ip -ip -UX -UX -YY -UX -UX -UX -bO -bO -bO -bO -bO -fG -bO -bO -bO -jC -bO -lV -nx -pb -bO -qx -rl -sX -UX -UX -TO -TO -TO -TO -TO -ya -rC -rC -rC -rB -rC -rB -ve -Ck -CR -Dz -DC -DC -DC -DC -DC -DC -DC -Lx -Mt -Nk -NU -NU -NU -NU -NU -NU -NU -Ru -RU -NU -SV -TC -Ua -UD -UZ -Vo -UE -UE -qA -UX -UX -TO -ZK -ZB -ZK -ZK -Wj -Wj -Wj -Wj -TO -UX -YY -UX -UX -UX -UX -UX -Xb -Xb -Xb -Xb -Xb -VW -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -Fx -"} -(142,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -ip -UX -UX -UX -UX -UX -UX -YY -UX -UX -bO -bO -cv -cv -cv -eG -fH -bO -hH -iD -jD -kG -lW -ny -pd -bO -qx -rl -sX -UX -UX -UX -TO -TO -TO -TO -qC -yD -zc -zc -yD -yD -yD -yD -yD -yD -DC -DC -FW -Hw -Im -Jl -Kf -DC -LF -Mv -Nl -NU -OG -Pn -Kf -Qo -QG -NU -NU -NU -NU -Ta -TF -Ua -UE -UE -UE -UE -sl -ve -ip -Ku -Ku -Ku -ZD -JH -Ib -Wj -Mu -Ox -Wj -rl -UX -YY -UX -UX -UX -UX -UX -Xb -Xb -Xb -Xb -VW -VW -VW -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -Fx -"} -(143,1,1) = {" -XW -aj -UX -UX -ip -ip -UX -UX -ip -UX -UX -UX -UX -UX -UX -YY -UX -UX -bO -cf -cw -cV -cV -eH -fI -gF -hI -iE -jE -kH -lW -ny -pe -bO -rs -rl -rl -UX -UX -UX -TO -TO -TO -TO -yc -yD -zd -zD -yD -AO -Br -BJ -Cl -yD -DD -EO -FX -FX -FX -FX -FX -FX -LG -Mw -No -FX -FX -FX -FX -FX -FX -QX -Rv -RV -Rv -Tb -TG -Rv -UF -Va -Ua -sl -ss -UX -UX -Xj -Xz -YD -ZF -qI -Uq -Wj -te -eE -ZC -jN -UX -YY -UX -UX -UX -UX -UX -Xb -Xb -Xb -Xb -VW -VW -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -Fx -"} -(144,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -bO -cg -cx -cW -cW -eI -eI -gG -hJ -iE -jF -kI -lX -nz -pf -qd -rt -rl -sX -UX -UX -UX -TO -UX -TO -TO -yd -yE -zf -zF -Al -AP -Bs -BK -Cm -Al -DE -EP -FY -FY -In -Jm -Kg -KU -LH -Mx -Np -NX -OH -Jm -Jm -Jm -Jm -QY -Rw -RW -Sq -Td -TH -Ue -UG -Vb -Ua -qA -UX -UX -UX -Xj -XA -YG -ZG -qU -Ex -Wj -wR -HB -Wj -xD -UX -YY -UX -UX -UX -UX -UX -Xb -Xb -Xb -VW -VW -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -zu -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -dV -Fx -"} -(145,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -ip -UX -UX -UX -UX -YY -UX -UX -bO -ch -cy -cy -cy -eJ -fJ -gI -hK -iF -jH -kJ -lW -nA -bO -bO -rv -rl -rl -UX -UX -UX -TO -UX -TO -TO -yd -yF -zg -zH -Ap -AQ -Bt -BN -Cn -CS -DF -ER -FZ -Hx -Ip -Jn -Kh -KV -LI -My -Nq -NY -OI -Hx -PG -Qp -QH -QZ -Rx -RY -Sr -Te -TI -Uf -UH -Vd -Ua -qA -UX -UX -UX -Ku -XE -YH -ZI -qU -to -Wj -Fn -hi -Wj -qC -UX -YY -UX -UX -UX -UX -UX -Xb -Xb -VW -VW -VW -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -Fx -"} -(146,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -bP -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -kL -lW -nB -pg -bO -qC -rl -rl -UX -UX -TO -TO -TO -TO -TO -yc -yD -zh -zh -yD -zh -zh -zh -yD -yD -DG -ES -Ga -Hy -Ir -Jo -Ki -Hz -LJ -HA -Nr -HA -HA -Hz -Hz -HE -HE -Ra -Ra -RZ -Ss -Tf -Tf -Uh -Tf -Tf -Ua -qA -UX -UX -UX -Xj -xH -YI -ZL -qj -lZ -tz -Kx -DA -Ey -qC -UX -YY -UX -UX -UX -UX -UX -Xb -Xb -VW -VW -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -Fx -"} -(147,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -ci -cz -cX -dD -eK -fK -gJ -hL -iG -bO -kN -lW -nC -ph -bO -qC -rl -sX -UX -UX -TO -TO -TO -TO -TO -ye -yG -yG -yG -rB -yG -rB -yG -jN -CT -DH -ET -Gb -Hz -Hz -Hz -Hz -Hz -LL -MA -Ns -NZ -OJ -Po -PH -HE -QJ -Ra -Ry -Sa -St -Tf -TJ -Uk -UI -Tf -sl -ve -UX -UX -UX -Xj -QR -jo -bl -MS -Za -qv -Ba -OD -Ku -qC -UX -YY -UX -UX -UX -UX -UX -Xb -VW -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -Fx -"} -(148,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -ci -cA -cY -dE -eL -fK -gO -hM -iH -bO -Bu -lW -nE -pi -bO -qD -jN -rl -UX -UX -TO -TO -TO -TO -TO -qC -UX -UX -UX -UX -UX -UX -UX -qC -CT -DH -EU -Gc -Hz -Is -Jp -Kj -KW -Jq -MB -Nt -Oa -OK -Pp -PI -HE -QK -Ra -Rz -Sb -Su -Tf -TK -Ul -UJ -Tf -qC -UX -UX -UX -UX -Ku -Ku -Ku -Ku -mf -wZ -Bf -Ku -Ku -Ku -qC -UX -YY -UX -UX -UX -UX -UX -Xb -VW -VW -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -dV -Fx -"} -(149,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -ci -ci -cZ -dF -eM -fK -gP -hN -gP -jI -jI -jI -nG -pj -jI -jI -qC -sX -UX -sl -vc -vc -vc -vc -vc -ss -UX -UX -UX -UX -ip -UX -UX -sr -CT -DH -EV -Gd -HA -Iu -Jq -Jq -KX -LM -LM -LM -Ob -OL -Kn -PJ -HE -HE -Ra -RA -Sd -Sw -Tf -Tf -Tf -Tf -Tf -qC -UX -UX -UX -UX -UX -UX -UX -Ku -lQ -zU -Ku -Ku -sl -rB -ve -UX -YY -UX -UX -UX -UX -UX -VW -VW -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -Fx -"} -(150,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -ci -da -dG -eN -fK -gQ -hO -iI -jJ -kO -lY -nH -pk -qe -jI -qD -rB -rB -ux -TO -TO -TO -TO -UX -UX -UX -UX -ip -ip -UX -UX -UX -sr -CU -DJ -EW -Ge -HA -Iv -Jq -Km -KZ -LN -LN -Nu -Oc -Iu -Pq -PK -HE -UX -Ra -RC -Se -Sx -Th -sl -yG -yG -yG -Vp -VC -rC -yG -uD -UX -UX -UX -Xj -Id -Zn -km -Ey -qC -UX -UX -UX -YY -UX -UX -UX -UX -UX -VW -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -Fx -"} -(151,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -ci -ci -dH -eO -fK -gR -hP -iJ -jJ -kP -ma -nI -pl -qf -jI -se -se -jI -uy -TO -TO -TO -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -sr -CT -DH -EX -Gg -HC -Iw -Jq -Kn -La -LO -LO -LO -LO -ON -Jq -PL -HE -UX -Ra -Ra -RZ -Sz -Ra -qA -UX -UX -UX -UX -UX -UX -UX -sq -UX -UX -UX -Xj -yZ -kV -RT -Ey -qC -UX -UX -UX -YY -UX -UX -UX -UX -VW -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -Fx -"} -(152,1,1) = {" -XW -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -cB -dI -eP -fL -gS -hQ -iK -jJ -kR -mb -nJ -pm -qg -rx -sf -sY -tM -uz -TO -TO -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -sr -CT -DH -EY -Gh -HD -Ix -Jr -Kp -Lb -Lb -Lb -Nv -Jq -Jq -KX -PM -HE -UX -Rb -RD -Sf -SA -Th -qA -UX -UX -UX -UX -UX -UX -UX -sr -UX -UX -UX -Ku -IS -Ew -Ku -Ku -qC -UX -UX -UX -YY -UX -UX -UX -UX -VW -VW -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -dV -Fx -"} -(153,1,1) = {" -XW -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -cB -cB -dJ -eQ -fM -gT -hR -iL -jJ -jJ -mc -nM -pn -jJ -jI -sg -sZ -tN -uz -TO -TO -UX -UX -ip -UX -UX -UX -UX -UX -UX -UX -UX -qC -CU -DL -EY -Gi -HA -Iy -Js -Kq -Lc -LQ -ME -Nw -Od -OP -Pr -HE -HE -UX -Rb -RF -Sg -SC -Th -qA -UX -UX -UX -UX -UX -UX -UX -WD -Xd -XF -Xd -ZM -pt -pt -ZM -pt -GI -UX -UX -UX -bo -UX -UX -UX -UX -VW -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -Fx -"} -(154,1,1) = {" -XW -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -cC -db -dL -eR -fN -fN -hQ -iN -jK -kS -md -nN -po -qh -jZ -sh -ta -jI -uA -TO -TO -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -sr -CT -DH -EY -Gj -HE -HE -HE -HE -HE -HE -HE -HE -HE -HE -HE -HE -UX -UX -Ra -Ra -Sh -SD -Ra -qC -UX -UX -UX -UX -UX -UX -UX -qC -UX -UX -UX -TO -TO -TO -TO -TO -UX -UX -UX -UX -UX -UX -UX -UX -VW -VW -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -Fx -"} -(155,1,1) = {" -XW -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -cC -dd -dL -eR -fN -fN -hT -iO -jL -kT -me -nO -pp -qi -jZ -si -si -jI -qx -TO -TO -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -sr -CT -DH -EY -Gd -HF -Iz -UX -UX -UX -vd -rB -Hl -rB -rB -rB -rB -rB -rB -rB -RG -Si -Si -RG -ss -ip -UX -UX -ip -UX -ip -ip -qC -UX -UX -TO -TO -TO -TO -TO -UX -UX -UX -UX -UX -UX -UX -UX -VW -VW -VW -KQ -VW -VW -VW -uo -yy -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -pc -pc -Hu -dV -dV -Fx -"} -(156,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -cC -db -dM -eS -fO -gU -hU -iP -jM -kU -mg -nQ -pr -qk -jZ -qt -ry -ry -sk -TO -TO -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -sr -CT -DH -EY -Gd -HG -Iz -UX -UX -UX -sr -UX -Tg -UX -UX -UX -UX -UX -UX -TO -TO -TO -TO -TO -UX -ip -UX -UX -UX -UX -UX -UX -sr -UX -TO -TO -TO -TO -TO -UX -UX -UX -bQ -UX -UX -UX -UX -UX -VW -VW -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -pc -pc -pc -qw -Sm -dV -dV -dV -"} -(157,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -cB -cB -dN -eT -fP -gV -fP -iQ -jP -kX -mh -nR -ps -ql -jZ -qu -UX -UX -UX -TO -TO -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -sr -CU -DM -EZ -Gl -CU -CU -UX -UX -UX -sr -UX -Tg -UX -UX -UX -UX -UX -UX -TO -TO -TO -TO -TO -UX -UX -UX -UX -TO -TO -TO -TO -WE -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -UX -UX -UX -Ag -xK -xK -rz -rz -xK -xK -xK -Ag -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -pc -Hu -Hu -pc -pc -pc -pc -Es -Es -XB -Es -sM -Es -"} -(158,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -cD -dO -dO -fQ -gW -hV -dO -jQ -kY -mi -nS -pw -jZ -jZ -qu -UX -UX -UX -TO -TO -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -sr -CU -DN -Fa -DN -CU -UX -UX -UX -UX -qA -UX -Tg -UX -UX -UX -UX -UX -UX -UX -TO -TO -TO -TO -UX -UX -UX -TO -TO -TO -TO -TO -WE -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -OY -OY -OY -OY -OY -OY -OY -OY -OY -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -pc -pc -pc -pc -pc -Hu -pc -pc -pc -pc -pc -Es -AW -Aj -Es -Es -Es -"} -(159,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -cD -dP -eU -fR -gY -hW -iR -jR -kY -mj -nT -px -qm -jZ -qu -UX -UX -UX -TO -TO -UX -UX -xw -UX -UX -UX -TO -TO -UX -UX -UX -sr -zi -DO -zk -Gm -zi -UX -UX -UX -UX -qA -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -TO -TO -TO -TO -UX -TO -TO -TO -TO -TO -TO -WE -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -OY -OY -OY -OY -OY -OY -OY -OY -OY -TO -TO -TO -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -pc -pc -pc -pc -pc -Hu -pc -pc -Hu -Hu -Hu -Hu -pc -pc -Es -Es -XB -Es -yI -Es -"} -(160,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -cD -dR -eV -fS -gZ -hX -eV -jS -jZ -mk -nU -pr -qn -pz -qu -UX -UX -UX -TO -TO -UX -UX -UX -yf -UX -TO -TO -UX -UX -UX -UX -sr -zi -DP -zk -Gn -zi -UX -UX -UX -UX -qC -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -TO -TO -TO -UX -UX -TO -TO -TO -TO -TO -TO -WE -TO -TO -UX -UX -TO -TO -TO -TO -UX -UX -UX -UX -UX -Ag -Am -DB -DB -DB -Am -Am -Am -Ag -uo -TO -TO -TO -TO -TO -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -SB -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -pc -pc -pc -pO -Sm -dV -dV -dV -"} -(161,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -cD -dS -eV -fT -ha -hY -eV -jT -jZ -mm -nU -pr -qo -pz -qx -UX -UX -UX -TO -TO -UX -UX -xw -UX -UX -TO -TO -TO -TO -UX -UX -sr -Ay -DR -zk -Go -zi -UX -UX -UX -UX -qA -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -TO -TO -TO -UX -TO -TO -TO -TO -TO -TO -UX -qA -UX -UX -UX -UX -UX -UX -UX -UX -UX -bQ -UX -UX -UX -UX -VW -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -TO -TO -TO -TO -TO -TO -TO -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -pc -pc -Hu -dV -dV -Fx -"} -(162,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -cD -dT -cD -fU -hb -hZ -iS -jV -jZ -mn -nU -pr -qq -jZ -qu -UX -UX -TO -TO -TO -UX -UX -TO -UX -UX -TO -zI -zI -TO -UX -UX -sr -Ay -DR -zk -Gq -HI -HI -HI -HI -HI -qA -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -TO -TO -TO -UX -UX -TO -TO -TO -TO -UX -UX -qA -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -VW -VW -KQ -VW -VW -VW -uo -uo -uo -yy -uo -uo -uo -uo -uo -TO -TO -TO -TO -TO -TO -uo -uo -uo -pc -pc -pc -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -Fx -"} -(163,1,1) = {" -XW -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -cD -cD -dU -eV -eV -hc -eV -eV -jW -jZ -mo -nV -pp -qr -pz -qx -UX -UX -TO -TO -TO -TO -TO -TO -TO -TO -TO -zJ -zJ -TO -UX -UX -sr -Ay -DR -zk -Gr -HI -IA -Ju -Kr -HI -qC -UX -Tg -UX -UX -UX -UX -UX -UX -UX -TO -TO -TO -TO -TO -UX -TO -TO -TO -TO -UX -UX -sq -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -VW -VW -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -TO -TO -TO -TO -pc -pc -pc -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -sx -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -Fx -"} -(164,1,1) = {" -XW -aj -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -cD -de -dW -eW -fV -hd -ia -eW -jY -jZ -mq -nW -py -qs -pz -qu -UX -UX -TO -TO -UX -TO -TO -TO -TO -UX -TO -zI -zI -TO -UX -UX -sr -zi -DS -Fb -Gs -HJ -IC -Jv -Ks -HI -LS -UX -Tg -UX -UX -UX -UX -UX -UX -UX -TO -zI -zJ -zI -TO -TO -TO -TO -TO -UX -UX -UX -sr -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -bp -UX -UX -VW -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -TO -TO -TO -pc -pc -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -SB -TO -TO -TO -TO -uo -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -dV -Fx -"} -(165,1,1) = {" -XW -aj -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -cD -df -dY -cD -cD -cD -cD -cD -jZ -jZ -ms -nX -jZ -jZ -jZ -qx -UX -TO -TO -TO -UX -UX -UX -UX -UX -UX -TO -TO -TO -TO -UX -UX -sr -zi -DT -Fc -Gt -HK -ID -Jw -Kt -Le -LT -UX -Tg -UX -UX -UX -UX -UX -UX -UX -TO -zI -zJ -zI -TO -TO -TO -TO -TO -TO -UX -UX -sr -Tj -Tj -Tj -Tj -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -VW -VW -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -SB -TO -TO -TO -TO -TO -TO -TO -uo -uo -TO -uo -uo -TO -TO -TO -TO -TO -TO -TO -TO -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -Fx -"} -(166,1,1) = {" -XW -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -cD -dg -dZ -cD -rl -he -rl -iT -ka -la -mt -nY -pz -qt -ry -sk -UX -TO -TO -TO -UX -UX -ip -UX -UX -UX -TO -TO -TO -TO -UX -UX -sr -Ay -DU -Fd -Gu -HI -IG -Jz -Kv -HI -LU -UX -Tg -UX -UX -UX -UX -UX -UX -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -UX -UX -UX -WF -Tj -XG -YJ -Tj -Wl -Wl -RJ -UX -UX -UX -UX -UX -YY -UX -UX -VW -VW -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -yL -uo -uo -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -Fx -"} -(167,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -cF -di -ea -cF -rl -rl -rl -rl -ka -lb -mu -nZ -pz -qu -UX -UX -TO -TO -TO -TO -UX -UX -UX -UX -ip -UX -TO -TO -UX -UX -UX -UX -qC -Ay -DR -Fc -Gv -HI -HI -HI -HI -HI -UX -UX -Tg -UX -UX -UX -UX -UX -UX -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -UX -UX -UX -WG -Xe -XH -YK -ZN -wh -sQ -RJ -RJ -RJ -UX -UX -UX -YY -UX -UX -VW -VW -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -pc -pc -pc -TO -TO -TO -TO -uo -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -Fx -"} -(168,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -cF -di -ea -cF -rl -rl -rl -rl -jZ -jZ -mv -oa -jZ -qx -UX -UX -TO -TO -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Ar -UX -ip -UX -qC -Ay -DR -Fc -Gw -zi -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -TO -TO -zI -zJ -zI -TO -TO -TO -TO -TO -VD -VT -Wk -WH -Tj -XI -YL -ZN -FN -Cc -LR -Rp -RJ -UX -UX -UX -YY -UX -UX -VW -VW -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -TO -TO -TO -TO -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -dV -Fx -"} -(169,1,1) = {" -XW -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -bo -UX -UX -UX -UX -cF -di -ea -cF -rl -rl -rl -rl -rl -ld -mw -mw -pA -qy -TO -TO -TO -TO -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -ip -ip -sr -zi -DV -Fc -Gx -zi -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -TO -TO -zI -zJ -zI -TO -TO -TO -TO -TO -VE -RJ -Wl -Wl -Tj -XJ -YM -ZN -IE -sm -ZP -eg -Up -UX -UX -UX -YY -UX -UX -VW -VW -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -TO -TO -TO -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -LP -LP -LP -LP -LP -LP -LP -LP -LP -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -Fx -"} -(170,1,1) = {" -XW -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -cF -dj -ea -cF -rl -rl -rl -rl -rl -kb -fW -fW -kc -UX -TO -TO -UX -UX -UX -vd -rC -rB -rC -rB -rB -rC -rC -rC -rB -rC -rB -rC -ve -zi -DW -Fc -Gy -zi -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -TO -TO -TO -TO -TO -UX -TO -TO -TO -VF -VV -Wn -WI -Xf -XK -YN -ZO -HO -Yd -ZP -up -Up -UX -UX -UX -YY -UX -UX -VW -VW -KQ -KQ -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -TO -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -Fx -"} -(171,1,1) = {" -ac -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -cF -di -ea -eX -rl -rl -rl -rl -rl -le -TO -TO -TO -TO -TO -TO -UX -UX -UX -sr -tb -tO -tO -tO -tb -tb -zi -zi -As -As -As -zi -zi -zi -CZ -Fe -Gz -zi -zi -As -As -As -As -zi -Nx -Nx -zS -zS -zS -Nx -UX -UX -UX -UX -UX -UX -UX -UX -TO -TO -TO -VF -FF -Wo -WJ -xA -XL -Vs -ZP -Tl -TE -rA -xc -RJ -UX -UX -UX -YY -UX -UX -VW -VW -KQ -KQ -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -TO -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -Fx -"} -(172,1,1) = {" -ad -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -bQ -UX -cF -di -ea -cF -rl -rl -rl -rl -kb -kc -TO -TO -TO -TO -TO -sl -rC -rC -rB -ve -tb -wp -wW -xz -yg -yH -zj -zK -Au -AR -Bv -zK -Cp -CV -Ea -Fg -GB -Da -IH -zk -Au -AR -Bv -MF -Ny -Oe -OQ -Ps -PN -Nx -UX -UX -UX -UX -UX -UX -UX -UX -TO -TO -TO -VE -RJ -Wp -WK -RJ -XM -YO -ZQ -Ln -Co -ZP -xd -Up -UX -UX -UX -YY -UX -UX -VW -VW -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -TO -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -dV -Fx -"} -(173,1,1) = {" -ae -ak -ak -as -ay -aI -aT -aW -aW -aT -aT -aW -aT -aW -aW -aT -aT -aT -aW -aT -cG -dk -eb -eZ -fW -fW -fW -fW -kc -TO -TO -TO -TO -TO -TO -sn -tb -tO -tO -tO -tb -wq -wX -wX -yh -yH -zk -zk -zk -zk -zk -zk -zk -CW -Eb -Fd -GC -CW -zk -zk -Au -AR -Bv -zk -Ny -Of -OR -OR -PO -Nx -zS -zS -zS -Nx -SG -UX -UX -TO -TO -TO -TO -VH -RJ -Wq -Wq -RJ -XN -Vs -bZ -xA -Ti -rh -SY -Up -UX -UX -UX -YY -UX -UX -VW -VW -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -LP -LP -LP -LP -LP -LP -EQ -EQ -EQ -EQ -EQ -EQ -EQ -LP -LP -LP -LP -LP -LP -Hu -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -Fx -"} -(174,1,1) = {" -af -al -ap -TO -TO -aJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -kd -TO -TO -TO -TO -TO -TO -so -tc -tP -uB -vf -vH -wt -wY -wY -yi -yJ -zm -zL -Av -Av -Av -Av -Cq -CX -Ed -Fg -GE -CZ -II -zk -zk -zk -Ct -MG -Nz -Og -OS -OS -PP -Qq -QL -wr -Ad -Sj -SH -TO -TO -TO -TO -TO -TO -VI -VT -Wr -WL -RJ -XO -Vs -ZR -xA -VU -tf -RJ -RJ -UX -UX -UX -YY -UX -UX -VW -VW -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -TO -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -LP -LP -LP -LP -LP -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -LP -LP -LP -LP -LP -LP -Hu -Hu -Hu -Hu -Hu -Hu -dV -dV -Fx -"} -(175,1,1) = {" -af -al -al -at -TO -aJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -so -td -tQ -uC -vg -vI -wu -wX -xC -yj -tb -zn -zM -Aw -Aw -Aw -Aw -zM -CY -Aw -Fh -GF -CY -zM -Aw -Aw -Aw -zM -MH -Nx -Oh -OT -OR -PQ -Qr -QN -Rc -RI -Sk -SH -TO -TO -TO -TO -TO -UX -UX -UX -UX -WM -RJ -XP -YQ -ZS -RJ -RJ -RJ -RJ -UX -UX -UX -UX -YY -UX -UX -VW -VW -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -TO -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -LP -LP -LP -LP -LP -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -LP -LP -LP -LP -LP -LP -Hu -Hu -Hu -Hu -Hu -dV -dV -Fx -"} -(176,1,1) = {" -af -al -aq -TO -TO -aJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -so -tc -tP -uB -vf -vH -wv -xb -xb -yk -yK -zo -zN -zk -zk -zk -zk -Cr -CZ -Ee -Fc -GG -CX -IJ -Av -Av -Av -LV -MI -NA -Oi -OU -OU -PS -Qq -QL -wr -Ad -Sj -SH -TO -TO -TO -TO -TO -TO -UX -UX -UX -VH -FF -XQ -YR -ZT -Up -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -VW -VW -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -TO -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -LP -LP -LP -LP -LP -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -LP -LP -LP -LP -LP -LP -Hu -Hu -Hu -dV -dV -dV -Fx -"} -(177,1,1) = {" -ae -ak -ak -au -az -aK -ar -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -TO -TO -TO -TO -TO -UX -UX -UX -UX -UX -TO -TO -TO -TO -UX -sp -tb -tR -tR -tR -tb -ww -wX -wX -yl -yH -zk -zk -zk -zk -zk -zk -zk -CW -Ef -Fd -GH -CW -zk -JA -JA -JA -zk -zk -Ny -Ok -OR -OR -PU -Nx -OX -OX -OX -Nx -SG -UX -UX -TO -TO -TO -TO -UX -VX -VT -VJ -FF -XS -XC -VL -Up -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -VW -VW -KQ -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -TO -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -LP -LP -LP -LP -LP -LP -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -LP -LP -LP -LP -LP -Hu -Hu -Hu -dV -dV -Fx -"} -(178,1,1) = {" -ad -aj -ar -av -aA -aL -ar -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -bQ -UX -UX -TO -TO -TO -TO -TO -UX -UX -ke -UX -TO -TO -TO -UX -UX -sq -UX -UX -UX -UX -tb -wx -xe -xF -ym -yH -zq -zO -Au -AR -Bv -BO -Cs -Da -Eg -Fi -GJ -HL -IK -JB -Kw -Lg -LW -MJ -Ny -Ol -OV -Pt -PV -Nx -UX -UX -UX -UX -UX -UX -UX -UX -TO -TO -TO -VD -VJ -VK -VK -VK -XT -YS -ZU -VK -VK -VK -VK -UX -UX -UX -UX -YY -UX -UX -VW -VW -KQ -KQ -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -TO -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -LP -LP -LP -LP -LP -LP -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -LP -LP -LP -LP -LP -LP -LP -dV -dV -dV -"} -(179,1,1) = {" -ad -aj -ar -aw -aC -aN -ar -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -dl -ec -ec -ec -hf -UX -UX -UX -UX -TO -TO -TO -UX -UX -sq -UX -UX -UX -UX -tb -tR -tR -tR -tb -tb -zi -zi -Ax -AS -Ax -zi -zi -zi -CZ -Fe -GK -zi -zi -Ax -AS -Ax -Ax -zi -Nx -Nx -OX -OX -OX -Nx -UX -UX -UX -UX -UX -ke -UX -TO -TO -TO -TO -VH -VK -VK -WN -Xg -XU -YT -ZV -MD -EJ -EF -VK -VK -UX -UX -UX -YY -UX -UX -VW -VW -KQ -KQ -KQ -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -KQ -KQ -KQ -KQ -KQ -KQ -KQ -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -TO -TO -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -LP -LP -LP -LP -LP -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -LP -LP -LP -LP -LP -LP -LP -LP -zp -"} -(180,1,1) = {" -XW -aj -ar -ar -ar -ar -ar -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -dm -ed -ed -ed -dm -UX -UX -UX -UX -TO -TO -TO -UX -UX -sr -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -zi -Eh -Fc -GL -zi -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -TO -TO -TO -TO -VH -VM -VZ -WO -Wu -Wu -YV -Wu -Wu -Wu -Ld -Ec -XR -UX -UX -UX -YY -UX -UX -UX -VW -VW -KQ -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -KQ -KQ -KQ -KQ -KQ -KQ -KQ -KQ -KQ -KQ -KQ -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -TO -TO -TO -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -LP -LP -LP -LP -LP -EQ -EQ -EQ -EQ -EQ -EQ -LP -LP -LP -LP -LP -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -LP -LP -LP -LP -LP -LP -zp -"} -(181,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -bp -UX -UX -UX -UX -UX -dm -ee -ef -fX -dm -UX -UX -UX -lf -ec -ec -pB -qz -rB -ss -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -zi -DP -Fc -GN -HM -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -TO -TO -TO -TO -VH -VM -Ws -WP -Xh -Xh -YW -ZX -ZX -ZX -SX -GD -XR -UX -UX -UX -YY -UX -UX -UX -UX -VW -VW -KQ -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -KQ -KQ -KQ -VW -VW -VW -VW -VW -VW -VW -KQ -KQ -KQ -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -TO -TO -uo -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -LP -LP -LP -LP -LP -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -LP -pc -pc -pc -LP -LP -LP -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -zp -"} -(182,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -dm -ef -fa -ef -dm -UX -UX -dm -dm -my -ob -dm -qA -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -zi -zi -zi -zi -zi -zi -Ei -Fd -GO -zi -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Tj -TL -Um -Um -Um -Um -VJ -VK -VZ -WQ -Xx -XV -XV -XV -XV -rw -GA -VZ -VK -UX -UX -UX -YY -UX -UX -UX -UX -VW -VW -KQ -KQ -KQ -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -KQ -KQ -KQ -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -KQ -KQ -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -TO -TO -uo -uo -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -LP -LP -LP -LP -LP -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -LP -pc -uo -pc -pc -pc -LP -LP -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -zp -"} -(183,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -dm -ei -ef -fY -dm -UX -UX -kf -lg -mz -oc -pC -qA -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Ay -zk -Bw -zk -Ct -De -zk -Fc -GN -HN -HN -HN -HN -HN -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Tj -TN -TO -TO -TO -TO -VK -VK -Wt -WQ -Xi -Jy -Jy -Jy -Jy -Oj -GA -Wu -VK -VK -UX -UX -YY -UX -UX -UX -UX -UX -VW -VW -VW -VW -KQ -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -VW -KQ -KQ -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -TO -TO -uo -uo -TO -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -LP -LP -LP -LP -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -LP -pc -uo -uo -uo -pc -pc -LP -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -LP -LP -LP -LP -zp -"} -(184,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -dm -dm -fb -dm -dm -UX -UX -kf -lh -mC -oe -pC -qA -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -zi -AT -By -BQ -Cu -Aw -Aw -Fj -GN -HN -IM -JC -Ky -HN -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Tj -TP -TO -TO -TO -TO -VM -VY -VZ -WQ -Xi -Jy -Jy -Jy -Jy -Oj -GA -Wu -Yl -XR -UX -UX -YY -UX -UX -UX -UX -UX -uo -uo -uo -VW -VW -KQ -KQ -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -KQ -KQ -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -VW -KQ -KQ -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -TO -TO -TO -uo -uo -uo -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -LP -LP -LP -LP -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -LP -pc -pc -uo -uo -uo -pc -LP -EQ -EQ -EQ -EQ -EQ -EQ -EQ -LP -LP -LP -LP -LP -LP -zp -"} -(185,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -dm -dm -mD -of -dm -qA -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Ay -AU -Bz -BR -Cv -zi -Ej -Fc -GP -HN -IP -JD -Kz -HN -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Tj -TQ -TO -TO -TO -TO -VM -VZ -Wu -WQ -Xi -Jy -YX -ao -XX -Oo -GA -Wu -Yl -XR -UX -UX -YY -UX -UX -UX -UX -UX -uo -uo -uo -VW -VW -VW -VW -KQ -KQ -KQ -KQ -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -KQ -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -VW -VW -KQ -KQ -VW -VW -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -TO -TO -uo -uo -uo -uo -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -LP -LP -LP -EQ -LP -LP -LP -LP -LP -LP -EQ -EQ -EQ -EQ -LP -LP -pc -pc -pc -pc -pc -LP -EQ -EQ -EQ -EQ -EQ -EQ -LP -LP -LP -LP -LP -dV -dV -dV -"} -(186,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -dm -li -mE -og -pC -qC -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -zi -AV -BA -BS -Cw -De -zk -Fk -GR -HP -IQ -JE -KB -HN -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Tj -TR -TO -TO -TO -TO -VK -Wa -Wu -WQ -Xi -Jy -YZ -ZY -XX -Oo -Hg -HH -NI -VK -UX -UX -YY -UX -UX -UX -UX -UX -uo -uo -uo -uo -VW -VW -VW -VW -KQ -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -KQ -KQ -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -VW -VW -KQ -KQ -VW -VW -uo -uo -uo -yL -uo -uo -uo -uo -uo -TO -TO -uo -uo -uo -uo -uo -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -LP -LP -EQ -EQ -LP -LP -LP -LP -LP -LP -LP -LP -EQ -EQ -EQ -EQ -LP -LP -LP -LP -LP -LP -LP -EQ -EQ -EQ -EQ -EQ -LP -LP -LP -LP -LP -Hu -dV -dV -Fx -"} -(187,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -dm -lj -mF -oh -pC -qA -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Ay -zk -zq -zk -Cx -zk -zk -Fc -GS -HN -IR -JG -KC -HN -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -TO -TO -TO -TO -VM -VZ -Wu -WQ -Xi -Jy -Zb -ZZ -XX -Oo -GA -Wu -Yl -XR -UX -UX -YY -UX -UX -UX -UX -UX -uo -uo -uo -uo -uo -uo -uo -VW -VW -KQ -KQ -KQ -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -VW -KQ -KQ -VW -uo -uo -uo -yL -uo -uo -uo -uo -uo -TO -TO -uo -uo -uo -uo -uo -uo -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -LP -LP -EQ -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -LP -LP -LP -LP -LP -LP -dV -dV -dV -Fx -"} -(188,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -dm -lk -mG -oi -pC -qD -rC -rC -rB -rC -uD -UX -UX -UX -UX -UX -UX -UX -UX -UX -zi -zi -zi -zi -zi -zi -Ek -Fc -GU -HN -HN -HN -HN -HN -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -TO -TO -TO -TO -VM -VY -VZ -WQ -Xl -XX -XX -XX -XX -Oo -GA -Wu -Yl -XR -UX -UX -YY -UX -UX -UX -UX -UX -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -KQ -KQ -VW -uo -uo -yL -uo -uo -uo -uo -uo -TO -TO -uo -uo -uo -uo -uo -uo -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -LP -LP -LP -LP -LP -Hu -Hu -dV -dV -Fx -"} -(189,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -UX -UX -do -do -hg -hg -hg -dm -ll -mH -ol -dm -qE -qE -qE -tg -tg -qD -jN -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -zi -El -Fl -GV -zi -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -ip -UX -UX -UX -TO -TO -TO -TO -VK -VK -Wv -WQ -Xl -XX -XX -XX -XX -Oo -GA -Wu -VK -VK -UX -UX -YY -UX -UX -UX -UX -UX -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -KQ -VW -uo -uo -yL -uo -uo -uo -uo -TO -TO -uo -uo -uo -uo -uo -uo -uo -TO -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -LP -LP -LP -LP -LP -pc -pc -pc -pc -pc -pc -LP -LP -LP -LP -LP -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -LP -LP -LP -LP -LP -LP -Hu -Hu -dV -dV -Fx -"} -(190,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -UX -do -do -fZ -hh -hh -iU -dm -dm -mD -om -dm -qF -rD -st -th -tg -tg -qD -uD -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Ay -DR -zk -GU -HM -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -ip -UX -UX -UX -UX -TO -TO -TO -UX -VK -VZ -WQ -Xm -XY -XY -XY -XY -zR -GA -VZ -VK -UX -UX -UX -YY -UX -UX -UX -UX -UX -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -VW -VW -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -KQ -KQ -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -KQ -KQ -VW -uo -yL -uo -uo -uo -uo -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -LP -LP -LP -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -LP -LP -LP -LP -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -EQ -LP -LP -LP -LP -LP -LP -LP -Hu -Hu -Hu -dV -dV -Fx -"} -(191,1,1) = {" -XW -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -do -do -fd -ga -ga -ga -iV -kg -lm -mJ -on -pD -qG -rE -rE -rE -tT -tg -tg -qA -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -zi -Em -zk -GW -zi -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -ip -UX -UX -UX -UX -TO -TO -TO -UX -VM -Ww -WR -Xh -Xh -Zc -ZX -ZX -ZX -pQ -od -XR -UX -UX -UX -YY -UX -UX -UX -UX -UX -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -VW -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -KQ -KQ -VW -VW -yL -uo -uo -uo -uo -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -TO -TO -TO -uo -uo -uo -uo -uo -uo -LP -LP -LP -LP -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -LP -LP -LP -LP -LP -LP -EQ -EQ -EQ -EQ -EQ -EQ -LP -LP -LP -LP -LP -LP -LP -Hu -Hu -Hu -dV -dV -dV -Fx -"} -(192,1,1) = {" -ab -am -am -am -Tg -Tg -Tg -Tg -Tg -Tg -Tg -Tg -Tg -Tg -Tg -Ri -Tg -Tg -Tg -Tg -Tg -dp -ej -fe -gb -hj -ic -iW -kg -lo -mK -oo -pD -qH -rF -rF -rF -tU -uE -tg -vJ -Tg -Tg -Tg -Tg -Tg -Tg -Tg -Tg -Tg -Tg -Tg -Tg -Cy -Ep -Fo -Ep -Cy -Tg -Tg -Tg -Tg -Tg -Tg -NB -Tg -Tg -Tg -Tg -Tg -Tg -Tg -ax -Tg -Tg -Tg -Tg -Un -Un -Un -Un -Tg -VM -Wx -WS -Wu -Wu -Zd -Wu -Wu -Wu -kx -VZ -XR -Tg -Tg -Tg -Ri -Tg -Tg -Tg -Tg -Tg -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -Yx -Yx -Yx -Yo -Yo -Yo -Yx -Yx -Yx -yL -yL -yL -yL -yL -Jx -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -Yx -Yx -Yo -Yx -Yx -Yx -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -Yx -Yx -Yx -Yo -Yo -Yx -Jx -yL -yL -yL -Un -Un -yL -yL -yL -yL -yL -yL -yL -yL -yL -yL -Un -Un -Un -yL -yL -yL -yL -QA -QA -QA -QA -yL -SB -SB -SB -SB -SB -SB -SB -SB -SB -SB -SB -QA -QA -QA -QA -QA -QA -QA -QA -QA -QA -QA -QA -QA -QA -QA -QA -QA -RB -RB -RB -RB -RB -Ch -Ch -fc -"} -(193,1,1) = {" -XW -aj -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -dp -ek -ff -gc -hk -id -iX -kh -lm -mK -oq -pE -qJ -rG -sv -ti -tV -uF -vi -qA -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Cy -Cy -Eq -Fp -GX -Cy -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -TO -TO -TO -TO -UX -VK -VK -WT -Xn -XZ -Ze -ZW -uQ -tS -Yy -VK -VK -UX -UX -UX -YY -UX -UX -UX -UX -UX -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -KQ -KQ -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -KQ -KQ -VW -Yx -uo -uo -uo -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -TO -TO -uo -uo -Ag -BZ -BZ -BZ -Ag -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -uo -Hu -Hu -Hu -Hu -Hu -dV -dV -Fx -"} -(194,1,1) = {" -XW -aj -aj -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -dp -el -fg -gd -hl -ie -iY -ki -lp -mL -or -pF -qK -rH -sw -tj -tX -tm -vi -qC -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Cz -Df -Er -Fr -GZ -HQ -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -TO -TO -TO -TO -TO -UX -UX -VK -VK -VK -XT -Zf -ZU -VK -VK -VK -VK -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -KQ -KQ -KQ -KQ -VW -VW -VW -VW -uo -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -KQ -KQ -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -KQ -KQ -Yx -uo -uo -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -TO -TO -TO -TO -OY -OY -OY -OY -OY -TO -TO -TO -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -uo -uo -uo -uo -Hu -Hu -Hu -Hu -dV -dV -Fx -"} -(195,1,1) = {" -XW -aj -aj -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -dp -em -ge -ge -hm -if -iZ -kj -lq -mM -os -pG -qL -rI -sy -tk -tY -tm -vi -qA -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -ip -Cz -Dg -Er -Fs -GZ -HQ -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -TO -TO -TO -TO -UX -UX -UX -UX -UX -Wc -Ya -Zg -Uj -rc -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -KQ -KQ -KQ -KQ -VW -VW -VW -VW -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -KQ -KQ -Yx -VW -uo -TO -TO -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -TO -TO -OY -OY -OY -OY -OY -Tc -TO -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -LP -LP -LP -LP -LP -LP -LP -LP -LP -LP -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -dV -dV -dV -Fx -"} -(196,1,1) = {" -XW -aj -aj -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -do -en -fi -gf -hn -ig -ja -kh -lr -mN -ot -pE -qM -rJ -sz -tl -tZ -uG -vi -vK -wy -xf -UX -UX -UX -xG -xG -xG -xG -xG -xG -xG -xM -Er -Ft -GZ -HQ -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -TO -TO -TO -TO -UX -UX -UX -UX -UX -UX -Wc -Yb -Zh -Sl -rc -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -VW -KQ -KQ -KQ -KQ -VW -VW -VW -Yx -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -KQ -KQ -Yx -VW -Ag -OY -OY -Ag -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Ag -zx -zx -zx -Ag -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -LP -LP -LP -LP -LP -LP -LP -LP -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -dV -dV -Fx -"} -(197,1,1) = {" -XW -aj -aj -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -do -eo -fj -fh -ho -ih -jb -kh -ls -mN -ou -pD -qO -rK -sz -tm -ua -uH -vj -vL -vj -vj -xG -xG -xG -xG -zP -Az -AX -Az -BT -CA -xM -Et -Ft -Ha -Cy -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -TO -TO -TO -TO -UX -UX -UX -ip -UX -UX -UX -Wb -Ye -Zi -BM -Wb -Wb -Wb -Wb -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -KQ -KQ -KQ -KQ -VW -VW -Yx -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -KQ -Yo -KQ -Bd -OY -OY -aB -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -VW -VW -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -LP -LP -LP -LP -LP -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -Hu -dV -dV -Fx -"} -(198,1,1) = {" -XW -aj -aj -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -do -ep -fk -gg -hp -ii -jc -kh -lt -mN -ou -pD -qP -rK -sA -tm -ub -uH -vl -vN -wz -uH -xI -yn -xI -xM -zQ -AA -AA -AA -BU -CB -xM -Eu -Fv -GZ -HQ -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -TO -TO -TO -TO -UX -UX -UX -UX -UX -UX -UX -Wb -Yf -Zj -Mm -Ye -ZE -ZE -Wb -Wb -UX -UX -UX -YY -UX -UX -UX -UX -UX -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -VW -KQ -KQ -KQ -KQ -Yx -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -VW -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -KQ -Yo -KQ -Bd -OY -OY -aB -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -VW -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -dV -dV -Fx -"} -(199,1,1) = {" -XW -aj -aj -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -dq -dq -fn -fn -fn -ij -ij -fn -fn -mP -ov -pD -qQ -rL -sB -tn -uc -uH -vm -vO -wB -uH -xJ -yo -yM -zr -zT -AB -AY -BB -BV -CC -xM -Ev -Fw -GZ -HQ -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -TO -TO -TO -TO -UX -UX -UX -UX -UX -Wb -Wy -Wy -Wb -Yg -Zk -Kl -SF -Pg -PR -yb -xx -UX -UX -UX -YY -UX -UX -UX -UX -UX -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -VW -KQ -KQ -KQ -Yo -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -VW -VW -KQ -KQ -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -Yo -KQ -Io -OY -OY -aB -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -dV -dV -dV -Fx -"} -(200,1,1) = {" -XW -aj -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -UX -dq -fo -gh -hq -ik -jd -kk -ij -mN -ow -pD -pD -pE -pE -pE -pD -uH -vn -vP -wC -uH -xL -yp -xL -xM -zV -AC -AZ -AC -BW -CD -Di -Ez -Fy -Hb -Cy -IT -IT -Cy -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -TO -TO -TO -TO -TO -TO -TO -TO -TO -VN -Wb -Wz -WU -Wb -Yi -Zm -Xu -SF -vh -su -su -xx -UX -UX -UX -YY -UX -UX -UX -UX -UX -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -VW -KQ -Yo -KQ -VW -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -VW -VW -VW -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -Yx -KQ -Io -OY -OY -Dp -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Hu -Hu -dV -dV -Fx -"} -(201,1,1) = {" -XW -aj -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -UX -eq -fp -gi -hr -ik -je -kn -ij -mQ -ox -pH -qR -rM -sF -tp -ud -uH -uH -vR -wD -uH -xM -yq -xM -xM -xM -xM -xM -xM -BX -xM -xM -EA -Fz -GZ -HR -IU -JJ -Cy -Cy -LX -LX -ND -ND -ND -LX -ND -ND -LX -Re -TO -TO -TO -TO -TO -TO -TO -TO -TO -VO -Wc -WA -WV -Xo -Yj -Zo -An -mI -UN -kl -kl -Wb -UX -UX -UX -YY -UX -UX -UX -UX -UX -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -VW -Yo -KQ -KQ -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -KQ -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -Yx -VW -Io -OY -OY -Dp -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -uo -Hu -Hu -dV -dV -Fx -"} -(202,1,1) = {" -XW -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -UX -eq -fp -gj -hr -ik -jf -ko -lu -mS -oy -pI -qS -rN -sG -tq -ue -rN -vo -vS -wE -xg -xN -yr -yN -zs -zW -AD -Bc -BC -BY -CE -Dj -EB -Fz -Hc -Dj -Dj -Dj -Dj -Lh -LY -ML -NE -Om -OZ -Pu -PW -Qs -QQ -Rg -TO -TO -TO -TO -TO -TO -TO -TO -TO -VO -Wd -WB -WW -Xp -Yk -Zp -Fm -YP -kZ -kl -kl -Wb -UX -UX -UX -YY -UX -UX -UX -UX -Tq -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -Yx -VW -KQ -KQ -KQ -KQ -KQ -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -KQ -KQ -KQ -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -Yx -VW -Bd -OY -OY -Dp -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -Hu -Hu -dV -dV -Fx -"} -(203,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -UX -eq -fp -gi -hr -il -jg -kp -lv -mT -oC -pJ -qT -rO -sH -tr -uf -uI -vp -vT -sH -xh -xO -ys -yO -zt -zX -xO -Be -BD -Ca -xO -xO -xO -FA -Hd -xO -IV -xO -KD -Li -LZ -MO -NG -Oq -Pa -LZ -PX -Qt -QS -Rg -TO -TO -TO -TO -TO -TO -TO -TO -TO -VP -Wb -WC -WC -Xr -Ym -Zq -Ym -Ye -Sy -DI -DI -xx -UX -UX -UX -YY -UX -UX -UX -UX -Tq -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -Yx -VW -VW -VW -VW -KQ -KQ -KQ -KQ -KQ -KQ -KQ -VW -VW -VW -KQ -KQ -KQ -KQ -KQ -KQ -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Yx -VW -Bd -OY -OY -aB -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -pc -uo -pc -pc -pc -pc -pc -pc -qw -Sm -dV -dV -dV -"} -(204,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -UX -dq -fq -gk -hs -io -jh -kq -lw -mU -oy -pK -qV -qV -qV -qV -qV -uJ -vq -vU -qV -xi -xP -yt -yP -zv -zZ -AF -xP -xP -xP -xP -xP -EC -yP -He -AF -IX -yP -KE -Lj -LX -MP -NH -Or -Pb -LX -PY -Qu -LX -Rh -TO -TO -UX -TO -TO -TO -TO -TO -UX -UX -UX -UX -UX -Xr -Yn -Zr -Ym -RX -DY -Yp -NW -xx -UX -UX -UX -YY -UX -UX -UX -UX -Tq -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Yx -VW -VW -VW -VW -VW -KQ -KQ -KQ -KQ -KQ -KQ -KQ -KQ -KQ -KQ -KQ -KQ -KQ -VW -VW -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -VW -Bd -OY -OY -aB -KQ -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -pc -pc -pc -pc -pc -uo -pc -pc -pc -Es -Es -XB -Es -sM -Es -"} -(205,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -dr -dr -dr -dr -dr -iq -ji -kr -ij -mV -oD -pL -qW -rP -sI -ts -ug -qW -vr -vV -wF -wF -wF -wF -xT -zw -Aa -AG -AG -AG -AG -xT -xT -ED -ED -Hf -ED -ED -JK -KF -Lk -LX -LX -LX -LX -LX -LX -Qa -Qa -LX -UX -UX -UX -UX -TO -TO -TO -TO -UX -UX -UX -UX -UX -UX -Xr -Yq -Zs -Ym -QM -MK -Wb -Wb -Wb -UX -UX -UX -YY -UX -UX -UX -UX -Tq -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -VW -VW -KQ -KQ -KQ -KQ -KQ -VW -VW -VW -KQ -KQ -KQ -VW -VW -VW -VW -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -Ag -OY -OY -Ag -VW -VW -KQ -KQ -VW -uo -uo -uo -uo -uo -uo -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -pc -pc -pc -pc -pc -uo -pc -pc -pc -pc -pc -pc -Es -AW -Ko -Es -Es -Es -"} -(206,1,1) = {" -XW -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -dr -er -er -gl -dr -dr -dr -dr -dr -mW -ow -pM -pR -pR -pR -pR -pR -pR -vs -vW -wF -xj -xQ -wF -yQ -zy -Ab -AH -Bg -Bg -Cd -CF -Dk -EE -FB -Hi -HS -IY -Hk -KG -Ll -Ma -MQ -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -TO -TO -TO -TO -TO -UX -UX -UX -UX -UX -UX -Xr -Yr -Zt -Xr -QI -QI -Wb -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -Tq -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -VW -KQ -KQ -KQ -KQ -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -TO -TO -uo -VW -VW -KQ -KQ -VW -VW -uo -uo -uo -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -pc -uo -pc -pc -pc -pc -pc -pc -Es -Es -XB -Es -yI -Es -"} -(207,1,1) = {" -XW -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -ds -er -er -gn -ht -ir -jj -ks -dr -mQ -ow -pN -pR -rQ -sJ -tu -uh -pR -vt -vX -wH -xk -xR -wF -yS -zz -Ac -AI -Bh -BE -BE -BE -BE -ED -FC -Hj -HT -ED -Hk -KH -Hk -IZ -MQ -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -SI -Rg -Rg -Rg -UK -UX -UX -UX -UX -UX -UX -Xr -Xr -Xr -Xr -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -Tq -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -VW -VW -KQ -KQ -KQ -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -TO -TO -TO -uo -VW -VW -VW -KQ -KQ -VW -VW -uo -VW -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pO -Sm -dV -dV -dV -"} -(208,1,1) = {" -XW -aj -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -ds -es -fr -go -hu -hu -jk -kt -ly -mX -oF -pP -pR -rR -sK -tv -ui -pR -vu -vY -wF -xl -xS -wF -yT -zA -Ae -AJ -Bj -BF -BG -BG -Dl -ED -FD -ED -HU -ED -JN -KI -Lm -Lm -MQ -Tg -UX -UX -UX -UX -UX -UX -UX -ip -UX -LX -Tm -Tm -Tm -LX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -Tq -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -uo -VW -VW -KQ -KQ -KQ -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -TO -TO -uo -uo -uo -VW -VW -VW -KQ -KQ -VW -VW -VW -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -uo -dV -dV -Fx -"} -(209,1,1) = {" -XW -aj -aj -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -ds -et -fs -gp -hv -es -jm -ku -lA -mY -oH -pR -pR -rS -sL -tw -uj -uK -vv -vZ -wF -wF -wF -wF -yU -zB -Af -AK -Bk -BG -Ce -BG -Ce -ED -FG -ED -HW -ED -JO -KJ -Hk -Mb -EH -Tg -UX -UX -UX -UX -UX -UX -UX -ip -UX -LX -To -To -Uo -LX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -Tq -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -VW -VW -KQ -KQ -VW -KQ -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -TO -TO -uo -uo -uo -VW -VW -VW -KQ -KQ -VW -VW -VW -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -dV -dV -Fx -"} -(210,1,1) = {" -XW -aj -aj -aj -aj -aj -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -dr -eu -ft -gq -hw -hw -jn -kv -dr -mZ -oH -pR -qY -rT -sP -tx -pR -pR -vw -ox -pH -xo -xT -yu -yV -zC -Ah -AL -Bl -BG -BG -BG -Dm -ED -ED -ED -ED -ED -JP -KJ -Lo -Hk -MQ -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -LX -To -TS -To -LX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -Tq -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -uo -VW -KQ -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -pc -pc -uo -uo -uo -VW -VW -VW -VW -KQ -KQ -KQ -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -dV -dV -Fx -"} -(211,1,1) = {" -XW -aj -aj -aj -aj -aj -aj -aj -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -dr -dr -fu -gr -hx -is -gr -fu -dr -na -oI -pR -qZ -rU -sR -ty -pR -uL -vx -uf -ow -xp -xT -yv -yW -yW -yW -AM -Bn -BG -Cf -BG -Cf -EG -FH -Hk -HX -Hk -JQ -KK -Lp -Lp -MQ -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -LX -Tp -To -Ur -LX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -Tq -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -uo -VW -VW -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -yL -pc -pc -uo -uo -uo -uo -uo -VW -VW -VW -KQ -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -dV -dV -dV -Fx -"} -(212,1,1) = {" -XW -aj -aj -aj -aj -aj -aj -aj -aj -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -UX -dr -dr -gs -gt -gt -gs -kw -kw -nb -oJ -kw -rb -rV -sS -rb -pR -qW -vy -wa -wK -xq -xT -yw -yW -yW -yW -AM -Bo -BG -BG -BG -Dn -EG -FI -Hk -HY -IZ -Hk -KL -IZ -Mc -MQ -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -LX -LX -TV -LX -LX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -Tq -Tq -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -yL -VW -VW -KQ -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -yL -pc -pc -uo -uo -uo -uo -uo -VW -VW -VW -KQ -KQ -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -dV -dV -Fx -"} -(213,1,1) = {" -XW -aj -aj -aj -aj -aj -aj -aj -aj -aj -UX -UX -UX -UX -UX -YY -UX -UX -UX -UX -UX -UX -UX -dr -gt -gt -gt -gt -kw -lB -nc -oK -kw -rd -rW -sT -sT -Wh -qW -vz -vz -vz -qW -xU -yv -yW -yW -yW -AM -Bp -BG -Cg -BG -Do -EG -FJ -Hk -HZ -IZ -JR -KL -Lr -EH -EH -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -Tq -Tq -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -Yx -VW -VW -KQ -VW -VW -uo -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -SB -pc -pc -uo -uo -uo -uo -uo -VW -VW -VW -KQ -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -dV -dV -Fx -"} -(214,1,1) = {" -XW -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -UX -UX -UX -YY -UX -UX -UX -UX -UX -UX -UX -dr -gu -gt -gt -gu -kw -lC -nd -oL -kw -re -rX -sU -fm -mR -rb -UX -UX -UX -UX -xU -yx -yX -yX -Ai -AN -Bq -BG -BG -BG -Do -EG -FK -Hk -Hk -Ja -JS -KM -EH -EH -UX -Tg -UX -UX -UX -UX -UX -UX -UX -ip -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -UX -Tq -Tq -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -Yx -VW -KQ -VW -VW -uo -uo -VW -KQ -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -uo -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -SB -pc -uo -uo -uo -uo -uo -uo -VW -VW -VW -VW -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -dV -dV -Fx -"} -(215,1,1) = {" -XW -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -UX -YY -UX -UX -UX -UX -UX -UX -UX -dr -dr -dr -dr -dr -kw -lD -ne -oM -kw -rb -rb -rb -rb -rb -rb -UX -UX -UX -UX -xU -xU -xU -xU -xU -xU -xU -BI -BI -BI -BI -EH -EH -EH -EH -EH -EH -EH -EH -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -Tq -Tq -Tq -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -Yx -VW -KQ -VW -VW -uo -uo -VW -KQ -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -uo -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -SB -pc -uo -uo -uo -uo -uo -uo -VW -VW -VW -VW -KQ -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -dV -dV -dV -Fx -"} -(216,1,1) = {" -XW -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -UX -YY -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -kw -lE -ng -oN -pS -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -ip -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -Tq -Tq -Tq -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -Yx -KQ -KQ -VW -uo -uo -uo -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -uo -uo -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -SB -pc -uo -uo -uo -uo -uo -uo -VW -VW -VW -VW -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -dV -dV -Fx -"} -(217,1,1) = {" -XW -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ip -bk -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -kw -kw -nb -oO -kw -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -ip -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -YY -UX -UX -Tq -Tq -Tq -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -Yo -VW -VW -VW -uo -uo -uo -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -uo -uo -pc -pc -pc -pc -pc -pc -uo -uo -uo -pc -SB -pc -uo -uo -uo -uo -uo -uo -VW -VW -uo -uo -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -dV -dV -Fx -"} -(218,1,1) = {" -XW -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -bq -br -Tn -Tn -Tn -Tn -br -br -fv -UX -UX -UX -UX -ky -lF -nh -oP -pS -UX -ip -ip -ip -uk -br -br -br -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -MT -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -br -bG -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -Tn -PZ -UX -Tq -Tq -Tq -Tq -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -KQ -Yo -VW -VW -uo -uo -uo -uo -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -uo -uo -pc -pc -pc -pc -pc -pc -uo -uo -uo -pc -SB -pc -uo -uo -uo -uo -uo -VW -VW -VW -uo -uo -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -gN -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -dV -dV -Fx -"} -(219,1,1) = {" -XW -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ip -UX -UX -UX -UX -ky -lI -nj -oQ -pS -UX -ip -ip -ip -ip -ip -ip -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Tq -Tq -Tq -Tq -Tq -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -Yx -VW -VW -uo -uo -uo -uo -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -uo -uo -pc -pc -pc -pc -pc -uo -uo -uo -uo -pc -SB -pc -uo -uo -uo -uo -VW -VW -VW -VW -uo -uo -uo -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -dV -dV -dV -Fx -"} -(220,1,1) = {" -XW -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -UX -kw -kw -nk -oR -kw -UX -ip -ip -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -KQ -KQ -Yx -VW -uo -uo -uo -uo -uo -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -uo -uo -pc -pc -pc -pc -pc -uo -uo -uo -uo -pc -SB -uo -uo -uo -uo -uo -VW -VW -VW -uo -uo -uo -uo -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -xa -dV -dV -Fx -"} -(221,1,1) = {" -XW -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -xa -xa -xa -xa -xa -xa -xa -xa -aj -UX -UX -lJ -nl -oS -pT -ip -ip -ip -UX -UX -UX -UX -UX -UX -UX -UX -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -UX -UX -UX -UX -UX -UX -UX -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -VW -KQ -VW -Yx -uo -uo -uo -uo -uo -uo -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -uo -uo -pc -pc -pc -pc -pc -uo -uo -uo -pc -pc -SB -uo -uo -uo -uo -VW -VW -VW -uo -uo -uo -uo -uo -uo -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -xa -xa -xa -XW -"} -(222,1,1) = {" -XW -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -xa -xa -xa -xa -xa -xa -xa -xa -it -UX -UX -UX -UX -ip -ip -ip -it -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -Tg -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -UX -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -uo -uo -pc -pc -pc -pc -uo -uo -pc -pc -pc -pc -pc -pc -uo -uo -pc -pc -pc -uo -uo -VW -VW -KQ -VW -Yx -uo -uo -uo -uo -uo -uo -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -uo -uo -uo -pc -pc -uo -pc -pc -uo -uo -uo -uo -pc -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -uo -pc -pc -uo -pc -pc -uo -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -xa -XW -"} -(223,1,1) = {" -XW -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -xa -xa -xa -xa -xa -xa -xa -xa -it -UX -UX -it -it -it -it -it -it -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -ai -xa -xa -UX -UX -UX -UX -UX -UX -UX -UX -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -Tq -ip -ip -ip -ip -ip -ip -Tq -Tq -Tq -Tq -Tq -Tq -uo -uo -pc -pc -pc -pc -pc -uo -uo -pc -pc -pc -pc -pc -uo -uo -pc -pc -pc -uo -uo -VW -KQ -KQ -VW -yL -uo -uo -uo -uo -uo -uo -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -xa -xa -XW -"} -(224,1,1) = {" -XW -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -xa -xa -xa -xa -xa -xa -xa -xa -it -it -it -it -it -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -ai -xa -xa -xa -xa -xa -UX -UX -UX -Xb -Xb -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -VW -KQ -VW -VW -yL -uo -uo -uo -uo -uo -uo -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -uo -yL -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -xa -xa -XW -"} -(225,1,1) = {" -XW -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -xa -xa -xa -xa -xa -xa -xa -xa -it -it -it -it -it -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -ai -xa -xa -xa -xa -xa -xa -xa -UX -Xb -Xb -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -VW -VW -VW -VW -yL -uo -uo -uo -uo -uo -uo -uo -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -SB -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -pc -pc -pc -pc -pc -pc -pc -pc -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -xa -xa -XW -"} -(226,1,1) = {" -XW -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -xa -xa -xa -xa -xa -xa -xa -xa -it -it -it -aj -aj -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -ai -xa -xa -xa -xa -xa -xa -xa -xa -Xb -pc -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Sn -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -VW -VW -VW -VW -SB -pc -pc -pc -pc -uo -uo -uo -VW -VW -VW -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -SB -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -XW -"} -(227,1,1) = {" -XW -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -xa -xa -xa -xa -xa -xa -xa -xa -xa -it -it -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -ai -xa -xa -xa -xa -xa -xa -xa -xa -pc -pc -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -bE -bx -bx -WY -sE -Sn -Sn -Sn -Sn -pc -pc -pc -VW -VW -VW -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -SB -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -XW -"} -(228,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -ai -xa -xa -xa -xa -xa -xa -xa -it -pc -pc -pc -pc -pc -pc -pc -pc -pc -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Sn -bE -bx -bx -WY -sE -Sn -Sn -Sn -Sn -Sn -Sn -Sn -VW -VW -VW -VW -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -pc -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -uo -uo -uo -uo -uo -uo -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -sE -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -XW -"} -(229,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -ai -xa -xa -xa -xa -xa -xa -it -it -pc -pc -pc -pc -pc -pc -pc -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -pc -pc -Sn -Sn -bE -bx -bx -WY -sE -Sn -Sn -Sn -Sn -Sn -Sn -bE -bx -bx -bx -WY -Sn -Sn -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Sn -Sn -Sn -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -Sn -Sn -Sn -sE -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -XW -"} -(230,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -ai -xa -xa -it -it -it -it -it -it -pc -pc -pc -pc -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -bw -bC -bC -bC -bC -bC -bC -bC -Xt -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -bE -bx -bx -WY -sE -Sn -Sn -Sn -Sn -Sn -Sn -bE -bx -bx -bx -WY -Sn -Sn -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -sE -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -XW -"} -(231,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -ai -it -it -it -it -it -it -it -it -pc -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -bw -bC -bC -bC -bC -bR -bx -bx -bx -bx -bx -bx -bx -WZ -bC -bC -bC -bC -bC -Xt -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -bE -bx -bx -WY -sE -Sn -Sn -Sn -Sn -Sn -Sn -bE -bx -bx -bx -WY -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -sE -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -XW -"} -(232,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -it -it -NJ -it -it -it -bi -bi -bi -bi -bi -Sn -Sn -Sn -Sn -Sn -Sn -Sn -bw -bC -bC -bC -bR -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -WZ -bC -bC -Xt -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -bE -bx -bx -WY -sE -Sn -Sn -Sn -Sn -Sn -Sn -bE -bx -bx -bx -WY -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -pc -pc -pc -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -sE -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -XW -"} -(233,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -bi -bi -xa -xa -xa -bi -bi -bi -bi -bi -NK -bi -bi -bi -bi -bi -bi -bi -bi -Sn -Sn -Sn -Sn -Sn -Sn -Sn -bE -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -WZ -bC -bC -bC -bC -Xt -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -bE -bx -bx -WZ -NL -bC -bC -bC -bC -bC -bC -bR -bx -bx -bx -WY -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -bx -bx -bx -bx -bx -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -sE -Sn -Sn -Sn -Sn -Sn -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -Sn -Sn -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -XW -"} -(234,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -NK -bi -bi -bi -bi -bi -bi -bi -bi -bw -bC -bC -bC -bC -bC -bC -bR -bx -cH -cH -cH -bx -bx -bx -bx -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -WZ -bC -bC -bC -bC -Xt -Sn -Sn -Sn -bw -bC -bC -bC -bR -bx -bx -bx -NM -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -WZ -bC -bC -bC -bC -Xt -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -bx -bx -bx -NM -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -bx -bx -bx -Sn -Sn -Sn -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -XW -"} -(235,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bw -NL -bC -bC -bC -bC -bC -bC -bC -bC -bR -bx -bx -bx -bx -bx -bx -bx -cH -cH -cH -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -WZ -bC -bC -bC -bR -bx -bx -bx -bx -bx -bx -bx -NM -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -WY -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -bx -bx -bx -bx -bx -bx -bx -bx -NM -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -bx -Sn -Sn -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -XW -"} -(236,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -bi -bi -bi -xa -xa -xa -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bw -bC -bC -bC -bC -bC -bC -bC -bC -bR -NM -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -cH -cH -bx -bx -bx -bx -bx -bx -WX -bD -cj -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -NM -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -WZ -bC -bC -Xt -Sn -Sn -Sn -Sn -Sn -Sn -Sn -Sn -pc -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -Sn -Sn -Sn -Sn -Sn -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -NM -bx -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -bx -Sn -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -XW -"} -(237,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bw -bC -bC -bC -bC -bC -bC -bC -bR -bx -bx -bx -bx -bx -bx -bx -bx -bx -NM -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -cH -cH -cH -cH -bx -bx -bx -bx -bx -bx -WX -Xs -Sn -by -cj -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -cH -NN -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -WZ -bC -bC -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -bx -bx -bx -Sn -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -bx -Sn -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -XW -"} -(238,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bw -bC -bC -bC -bC -bC -bC -bR -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -NM -bx -bx -bx -bx -bx -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -WX -bD -bD -Xs -Sn -Sn -Sn -by -cj -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -cH -cH -cH -cH -bx -cH -cH -NN -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -Sn -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -XW -"} -(239,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bw -bC -bC -bC -bC -bR -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -NM -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -WX -Xs -Sn -Sn -Sn -Sn -pc -pc -Sn -by -cj -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -Sn -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -XW -"} -(240,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -bi -bi -bi -bi -bi -bi -bi -bi -bi -bi -bw -bC -bC -bC -bC -bC -bR -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -WY -Sn -pc -Sn -Sn -pc -pc -pc -pc -Sn -by -cj -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -bx -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -XW -"} -(241,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -bi -bi -bi -bi -bi -bi -bi -bw -bC -bC -bC -bR -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -WY -Sn -pc -pc -pc -pc -uo -pc -pc -Sn -Sn -bE -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -XW -"} -(242,1,1) = {" -ag -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -bi -bi -bi -bw -bC -bC -bC -bC -bR -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -WY -Sn -Sn -pc -pc -uo -uo -uo -pc -pc -Sn -by -cj -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -XW -"} -(243,1,1) = {" -ad -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -bi -bi -bw -bR -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -WZ -Xt -Sn -pc -pc -uo -uo -uo -pc -pc -pc -Sn -bE -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -XW -"} -(244,1,1) = {" -ad -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -bw -bC -bR -bx -bx -bx -bx -bx -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -WY -Sn -Sn -pc -uo -uo -uo -uo -pc -pc -Sn -bE -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -XW -"} -(245,1,1) = {" -ah -an -an -an -an -an -an -an -an -an -an -an -an -an -an -bh -bx -bx -bx -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -WZ -Xt -Sn -pc -pc -pc -uo -uo -pc -pc -Sn -bE -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -XW -"} -(246,1,1) = {" -ah -an -an -an -an -an -an -an -an -an -an -an -an -an -an -bh -bx -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -WY -Sn -Sn -Sn -pc -pc -uo -pc -pc -Sn -bE -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -XW -"} -(247,1,1) = {" -ah -an -an -an -an -an -an -an -an -an -an -an -an -an -bh -bh -bx -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -WZ -Xt -Sn -Sn -pc -pc -uo -pc -pc -Sn -bE -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -XW -"} -(248,1,1) = {" -ad -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -by -bD -bD -cj -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -WZ -Xt -Sn -pc -pc -pc -pc -pc -Sn -bE -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -XW -"} -(249,1,1) = {" -ad -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -bi -bi -bi -bE -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -WY -Sn -Sn -pc -pc -pc -Sn -Sn -bE -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -XW -"} -(250,1,1) = {" -ad -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -bi -bi -bi -bi -bE -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -WZ -bC -Xt -Sn -pc -pc -Sn -bw -bR -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -Sn -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -xa -xa -XW -"} -(251,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -bi -bi -bi -bE -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -WZ -Xt -Sn -Sn -Sn -bE -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -Sn -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -xa -xa -xa -XW -"} -(252,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -bi -bi -bi -bi -bE -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -WZ -Xt -Sn -Sn -bE -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -pc -xa -xa -xa -XW -"} -(253,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -bi -bi -bi -bw -bC -bR -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -WZ -bC -bC -bR -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -Sn -Sn -pc -pc -pc -pc -pc -pc -pc -pc -xa -xa -xa -xa -xa -XW -"} -(254,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -bi -bi -bi -bE -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -bx -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -Sn -Sn -pc -pc -pc -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -XW -"} -(255,1,1) = {" -XW -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -bi -bi -bE -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -bx -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -bx -Sn -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -xa -XW -"} -(256,1,1) = {" -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -NO -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -NO -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -bF -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -NN -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bx -bx -kK -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW -XW +VgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgDseMNRAkAkAkNReMeMVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgOKeMeMCiCiCieMeMeMVgVgVgVgVgVgVg +VgpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCrYwMwMwMrYpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEWnXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg +VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEpCcJpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCrYTSwMyHrYDcDcDcpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg +VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahahahahahabThahahahahahahahahahahahahahahahahahapCpCpCpChahahahahahahapCpCpCpChahapCpCpCpCBNfLwMfLFczkZODchahahahahahahahahahapCpCpCpCpCpCpCpCpCpCpCpChahahahapCpCpCpCpCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg +VgXEXEXEXEXEzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahahahahahahabThahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpChahahahahahahakygxgxgxbjkieBDchahahahahahahahahahahapCpCpCpCpCpCpCpCpCpChahahahahahapCpCpCpCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg +VgXEXEXEzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahaguhahahaguwJguhahahahahahahahaguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahayORKRKRKaQfEEuDchahahahahahahahahahahahahapCpCpCpCpCpChahahahahahahahahapCpCpCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg +VgXEXEXEzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahatfsoIAVrIAVrEPVrIAIAofhahahahahaguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxDcDcDcDchahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg +VgXEXEXEzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahaMnDGsodXsodXMDdXsodXwyguguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahvgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg +VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahahaeaUGwywywywyKEwywywywyguguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahvgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg +VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahahahapAdXwywywywyKEwywywyYFhaguhahaguguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahvgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg +VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahahahaeaUGwywywywyKEwywywyYFhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg +VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahahahahapAdXwywywywyKEwywywyYFhahaguguhahahaguhahahahahahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg +VgXEXEXEXEXEzwzwzwzwzwGRzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwhahahahahahahaeaUGwywywywyKEwywywywyguhaguguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahvgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg +VgXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwhahahahahahahapAdXwywywywyKEwywywywyguhaguguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg +VgXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwhahahahahahahaeaUGDGrnjqpAJZpAjqpAUGhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahvgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEbPXEXEXEVg +VgXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwhahahahahahahaTohaPshahahabThahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahvgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahagucJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYYwXEXEXEXEbPbPXEXEXEVg +VgXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwhahahahahazZypTDnHDhnHnHnHYnnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHLyhahahaBQgxgxgxhahahahapwnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHyphVpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEYwYwYwXEXEbPbPbPbPbPXEXEVg +VgXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwhahahahahaEbguulPomPhahahabThahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaOapCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPKdxLxLxLpWbPbPbPbPbPbPXEXEVg +VgXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwXEXEzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwhahahahahaEbhaEDtNhahahahabThahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPhOxLxLxLzabPbPbPbPKdpWXEXEgG +VgXEXEXEXEXEXEXEXEXEzwzwzwzwXEXEXEXEXEzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwhahahahahaPiQPEjEjQPCuQPQPQPQPQPTsRTJVRTAxhaKPKPKPKPzbhahahahahahahahahahahahahahahahahahahahahahahahahaFXhvgxgxgxhaFXhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPKdxhxLxLxLzabPbPbPKdxhKafpfpgG +VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwhahahahahaEbQPvjssyhisisgdvdaVQPSvlJalalqzKPKPZAqydUKPSbSbSbhahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPKdxhxLxLxLxLKafpfpfpxhxLxLxLxLgG +VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSQPryCYSxhPmbLjLjmhQPghUcRTRTGSKPavmEuPyBKPoLmsSbSbSbhayQljljljyQhahahahahaFKFKFKFKwLwLwLwLwLwLMLgxgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPhOxLxLxLxLxLxLxLxLxLxLxLxLxLxLgG +VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSQPprlOqXdLhRRsTjqWQPwuOXalalqzKPavxrhZyBKPGzcnnOuQSbyQyQIirWIiyQFKFKFKFKFKFKagLYGaXFXFXFkVXFXFNNgxgxgxgxgxXgGJGJGJGJGJhahahahahahagjxGxGxGxGgjgjgjKuhahahahahamJmJWMWMWMmJmJhahahahahahaOapCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPhOxLxLxLxLxLxLxLxLxLxLxLxLxLxLgG +VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSQPssqqlgMYioBplodBQPgLQPiLiLiLKPavxrhZyBKPElZNMbiJrMNfYJhMhMhgihYcxBDeimSjtZvAVofDwfwfwfwfwfwffJgxgxgxgxgxHPOBRpBeVRGJhahahahahagjgjkKIIQiegSqDjTUKuKuydydydKumJpEpEMzbKAPmJmJhahahahahaOapCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLxLxLxLxLxLxLxLxLgG +VgXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSQPVOqXUdBpQydOELfdcAaNQPPwPwPwKPyIqdjYasKPFuLtmjJOGTOvJLviviiWIYYcsfzuzuFKzukSFKFKwLwLwLwLqUwLxFgxgxgxgxgxHPOBBepJBeDohahahahagjgjvEBRYjInfycXrvKYQWeEJMJMJMRHmJpEpEOUvZBxAOmJmJmJmJhahaxQgupCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPhOxLxLxLxLxLxLxLxLxLxLxLxLxLxLgG +VgXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSQPupKQaIciNqHFchuYLRPzQPPwPwPwAnfvCBjYKkKPUuUuUuUuUuolkgAXAXWtqDsAAHiNusZgzuxDFKyyyyyyyyyyyyyyXegxgxgxgxgxHPOBnlBeocGJhahahahagjdewQrztcYTfybsXnqlQWSTqQEAqQPJmJwEmqjVxpZDPghIgbaOmJhahabThapCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPbPKdxhxLxLxLxLxLxLxLxLxLxLxLxLxLIggG +VgXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSQPBprLnfhFqfvCRYVynPdkQPddPwPwKPKPdTQvfZKPeXuqcrTisYORbhAXAXGrxVQTqaDEKHvzIyfSFKHryyyyyyyyyyyyXegxgxgxhagxnqGJGJGJGJGJhahahahaswWAwQFMZRGncCRDggOpQWXlCoCoCouLmJmJwVbnJDnxXygbgbgbmJhahabThapCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPbPKdxhxLxLxLxLxLxLxLxLxLxLxLxLIgIgIggG +VgXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYQedYJKdYuOdYdYqsIbIbIbIbIbiGKPIhdhYuPQKPOQtmKUekMvkMzBkMsaBDqDhDdJDqIVYIzuDKFKyyyyyyyyyyyyyyXegxgxgxhahahahahahahahahahahahaswWAwQuNCGlRAYMBzNCcKymOmOmOylaoapmJFmbnMznxnzgbgbgbmJhahabThapCpCzgzgzgzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPKdxhxLxLxLxLxLxLxLxLxLxLxLIgIgIgIgIggG +VgXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYgyPVPVPVLddYNZQlIbCrgwWeIbQYKPpgRoRoHcKPauQNcrPKUUbEWmVUyzeYsrYcAKzuzuShzukSFKNCyyyyyyyyyyyyXegxgxgxhahahahahahahahahahahahaswsxMmJctgKZnvbXMeAJKyRbuWSgKsERTgmJzEcLdjQkPghIgbaOmJhahabThahahahahazgzgzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPbPhOxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIggG +VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYzJvsUDOjoUevudytzIaMtFtqIbzjAEeHzvmmFfKPKPKPXQeueueueuePKNvpSJlPeOtTzOgmqvkUVkrHrHVkyyyyyypVQdExgxgxhaOPhahahaGJyMyMGJGJGJGJGJGJpNpNpdPZXOpdpdpdQWZvPEBgquOTYfmJLcGZLhqFAOuhuhuhuhuhuhiIIoAthahahazgzgzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPbPhOxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIggG +VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSJKzJoUClVGNWUCuBgWIbIbIbIbIblWKPObVuITMonNpyiDXQQhaGtVeupYIlcvdwbNbNVkVkVkVkVkVkZjUTVkvopVvPQdgxgxgxgxhahahahaVFGJYrHgGJsNIKjwOdGJGCEiGCiYCNTZYmgSQWKyKyLVYpwlKymJmJkbIxmJmJuhlhyxlThwuhNGyFAtlYhazgzgzgpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPKdxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYzJIWtUbIoUevXiMkXmnXnTeVHflWARoOoOzhoOoOoOoOXQfalQphiAleBdLIFBhkTzsnnmbgkndNsCBqtkdZYAXegxgxgxgxgxgxgxgxgxgxHPUzpnpUEIaKHwyYbMEItxafafyGgXHkHkHkEaHkjfdrxMWgNsPGjfcPqKetdnvlzFWXBXlpDICZfHDXyyhazgzgzgpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYIUuGuGuGiTJKtbUavtUQEJQfWBKrAZiyiyoNAfAFHvuKLusHpTEOBKrwNpRnUYLbnGRNRNRNhbUmoIotgQxkYAXegxgxgxgxgxgxgxgxgxgxHPWKWijsOHyPSeLrPMtMXUefqIjJpZHikEkEkAgZVfSXQOSXSDgZgZcMKMKMSLPLSNWoQLbbrgZyigRCyyzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYGLsVsVsVJKdYbtwYfcdYdYvHpmlWrbnJlUFZKPImubMWSKsksdYihSzHZTaLqAdtTcaLaLaLZTFiVkcOcOVkCQQdgxgxgxgxgxgxgxgxgxgxhWGJUsUsGJUsUsUsGJGJqTqTWQcYrIWQqTqTqTqTHGGeMfEMmHkGmLLHUyUyUyuhuhuhuhyuAtuMuMAtlYzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwffzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYnuUotLUopQizKjdYGIdEdYlWlWlWKPKPKPoAKPKPKPKPXQTwYgJyeuTtYZVdFPVkdgrmwwZkyVfYVkKSZJDBurhagxgxgxgxgxgxgxhahahaLXLWLWLWLWvnLWpjedooZLbHEXUrkNvhcUhhucqTeQJYWJUFMaUyUyUyUyDuwnAWuuBBAWhahabThahazgzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYjKWWlaOEaXmfCHqwiHPAQIDBDBDBDBDBoXUpgRvnvnpjXQXQXQPcXQVkVkVkVkVkVkcOcOVkcOcOVkwchahagxgxgxgxgxgxgxgxhahahahaLohahahahahahaPCedomqmNITRxAVslLahahhdWQsXzrAUUFvWUyRZESiiWNGHNcEoxIAWhahawJguzgzgzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYxyXmTVXmXmCMbZdYDWlXdYyyyyyyyyyyyyyyyyyyyyZEvnpjnpppqxmIhqKSZJZJZJZJDBZJDBZJDBelhahagxgxgxftZFRXRXRXNVApApBjhHhahahahahahaPCedIRqmNIEKJsuJKpKpwAUSWQZhJtSmUFzWUyPXmWHBkzdcrStKnwAWhahawJguzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSJKlClCJKlClCdYdQJKdYdYwYyyEBEBEBEByyEByyyyEByyEBLonpltWyrAhqwchahahahahahahahahahagxgxgxhahaPCFUIDvxIDFUhahahahahahahahahahaLoIpTWqmNIArNxXreTKTKTRmWQDdOmtvUFwmUyKvXwcuCgSRAWtKzeAWhahawJguXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYRqRvVatGVtcabVfucayyyyQHhahahahahahahahahahahaLoXQjuIEXQXQwchahahahahahahahagxgxgxgxgxhahaPCeSyrBIyrBThahahahahahahahahahaPCIpIpRItnAgiROofzNopDRSqTrkuCBoUFWhUyJdeGnCUyUyUydRErAWhahaNMguXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSMTiEoPkwdqgELqnYqkcayyyyyyyyWLhahahahahahahahaftitGPHoHoLlDBelhahahahahagxgxgxgxgxgxhahahahaLoeSItCdItBThahahahahahahahahahaANpjIpIpmxTCKTKTEvkxkxkxkxkxzrICezMaUyUyUykWUycoMaMaAWAWhahaOaguXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSSOPyrfjMyCAecaChyXcaoDVqVqoDOSgxhahahahagxgxgxoEgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxhahaIdBjNJeSnMjxnMBThahahahahahahahahahahaZEpjIpIpgagagagaHzAwVTjOkxNksqtPHMwZFvYqXkujFazivfhahahahaOaguXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPKdxhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQScacacacajeyXcaJvcgWIoDXXfIoDlcgxgxgxgxgxgxgxgxoEgxgxgxgxgxgxgxgxgxgxgxgxgxgxhahahahahahaPCFUFUFUTTOITTFUFUFUhahahahahahahahahahaANLWLWLWvnLWFYUeBcmdtuMxsEtBVvZtbinWcmdoVfBoWcvfhahahahaOaguXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaEbhahaoDTNNKCerQQnyDiUWzmlhLwKlcgxgxgxhahagxgxgxoEgxgxhahahahahahahahahahahagxgxhahahahahaLoeSTmHRmtHOIHzqRxBThahahahahahahahahahahahahahahahakPHzZdzdZoLCtWSmUFBlBlehBlBlHGgZYkvfhahahahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaPiguhaZKZKbpNYTFSABtYVoDrDCDoDOSgxgxgxgxgxgxgxgxoEgxhahahahahahahahahahahahagxgxhaguhahahaPCeSVbQtUKQtQMQtzXBThahahahahahahahahahahahahahahahaJWHzkxkxkxkxFQjtNABlRkaaveBlEfbxbuMahahahahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaZKmYBvZKGOyDDLoDoDQjQjoDlcgxgxgxgxgxgxgxgxoEhahahaguhahahahahauHhauHgxgxgxhahahahahaLoeSoeQtUKDHQMQtsMBThahahahahahahahahahahahahahahahahaYOVcsjHHvbamMKgOBloBUWMGBlwhwhwhWbWbWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaEbguhaZKZXnRZKDlwPPhoDftLWLWvnLWHZvnHEUHUHHEravnhHhahahahahahahahahahaGkhahagxgxhahaguhahaLoFUdvFEmrxWvVVBPTFUhahahahahahahahahahahahahahahahahaYOwimuZpdKGQcQTkBlBlBlBlBlvGvRLnvRmnWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSguhaZKQxZKZKoDoDoDLwLohKhKhKhKPCiMiMScwpiMLQhahahahahahahahahahahahahahahagxhahahahahahaPCFUGqGqueFUsiGqGqFUhahahahahahahahahahahahahahahahahaYOVcceHHvbrigHwWwhlfKxCAzlZCMjMjMjBwWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPKdxhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahaAskLkLvnbcLWLWEUhKhKhKhKPCpOFnrEmDrPLQhahahahahahahahahahahahagxgxgxgxgxgxgxgxhahaPCoMeDHmqhxRfwHmBVoMhahahahahahahahahahahahahahahahaYOYOvbvcvbvbPSPuEwlqfUReKmUxFVMjMjMjBwWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahahahabThahahahahahahaPCpOEpoyoSrPLQhahaguhahahahahahahahagxgxgxOcabOcgxgxgxhahaPCoMDbHmLTdHvmHmxdoMhahahahahahahahahahahahahahahahaYOVzohnsosvbbRJCXcMyxlwkQAfNbQMjMjMjQXWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaVehahahahahahahabThahahahahahahaLoiMiMNiLKiMLohahaguhahahahahahahahagxhagxOcabOcgxgxhacZhaLoxzTMHmvKVMHmHmTMtEhahaoMuxoMuxoMuxoMhahahahahahahaYOreHqPjgpvbHNMKntSPhoHlfrYStJcdcdcdRdWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahahahabThahahahahahahaPCiMFrLMAzrPLQhaguhahahahahahahahahahahagxgxgxgxgxgxhahahaPCxzpHHmvKVMHmHmpHinhahaoMHmeoOtYLHmoMhahahahahahahaYOKOHqkDFdvbBWfFgOSPgMwoqenZkJvykkBuhmWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahaguQShahahahahahahabThahahahahahahaLoiMtdTAtIrPLohahahahahahahahahahahahahahahahahahahahaguguLoxzNHHmvKVMHmHmNHtEhahaoMJBTITfoxBVoMhahahahahahahaYOreHqepgpvbsJIqgOSPgMIZBnBCBCBCBCBCBCFlhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahaftvnBjvnmRvnvnBjBjBjBjBjNJiMJgHspPrPLQhahahahahahahahahahahahahahahahahahahahahaguPCoMDbHmvKVMHmHmEToMhahaoMHmiXyKogHmoMhahahahahahaguYOUfXAazesqPsvWRgOSPccIZBCSrBCSyBCOMBCFlhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahaPCyLyLyLyLyLTeTeTeTebObObOiMhejTuTiMZEvnBjBjBjBjvnBjBjBjBjBjBjBjBjBjBjBjBjBjvnvnBjNJoMhtHmOVdHACHmBsoMhahaoMpbURDionZBoMhahahahaEQQJQJYONdLZaJAivblKMKgOwhcsIZBCBCBCBCBCBCBCFlhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahaPCyLxNZVHLBmJUwUYbFLojlbTyiMiMNioRiMIQIQIQwGIQIQwGIQIQIQwGwGoMoMuxuxuxoMoMuxuxuxoMoMoMREJqugFWrRJqzVoMoMoMoMukVMoMukHmoMoMuxoMEQEQUtayvbvbvbvbfqvbZxMKgOwhwTIZYdSraiSySnWaWaFlhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaftNJyLmAxSwOBmBOXjIsFLmoymOOldoFfiIJBfdadadaDfdadaTPdadadatrshkOYtRARARAiSECGcRARAkcCCrRadnrWsVMVJCUKXrRXDYtjAHmVMpuHmHmUgJmRAeJXoAqkdkdkdQbMJGwsgQQJlMKhJTOvvTOTOTOTOqgqgqgqguihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCyLyLsWBmBmBmIFFLFLFLxmldldldjjAdDwopCmUjyNqiqBLsLsLsLsLsNmVQHmHmHmHmHmzQVWVHVWVWVWVWLzfjVHfjsFVWVHDTLzVWVWVHVWJJVWsRVWVWlMHmHmAcSakFTLyEyEGUjanjlllljbwWTOsGboEWQoTOyesBUOVhuihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPKdxhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCyLzsSfklBmtXsOdAFLyopacxldsKaFCWvNXsOinkYUiwnQXfthRzYUYUqnshDtEFDJZaWwBbZfQzgzvMHQjFpxGFiOCFwgpsfkKLlIYhDrIwDrDrpXEmJzokkuokoQXoYeSpSpSpJiSpSpPtSpBMptkYWTpfqETOTOTOOFOFOFOFuihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaLoyLZctHXPBmvwXMczFLNQKISZldSdaFCWNvqVMNMNCnCnINMECnKbFNZzwGwGoMoMoMTlTlPvuFTlTloMoMoMoMzVJqrRFWugJqykoMoMVZoMNONONOXSNONOoMVZoMEQEQiViViVEQiViVEQtOZxMKntTOJnHyNbCpTOsTYQlxOFuihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPKdxhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCzRSFADFkBmiKKAYDFLkqLfgfldhQaFajMcQUMNejRJqrjDoiOhKbnLnLwGhahahahaTlfAABGpLpTlhahahaoMHAHmFodHeLHmRjoMhahahaNOCPXtpFZmNOhahahahahahahahahahahaMgVjZxUMsITOWrTOTOTOTOOFuXuXGVuihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaLozRxUIvXYBmBLfmZQFLSHFzCRldzmaFdVwXWHMNDDSBSBSBqJGmKbhahahahahahahaTlkIGhdxrCTlhahahaxzHmHmHmVMvKAAjRtEhahahaNODzCkPmxwNOhahahahahahahahahahahaMgUZZxMKwWieOFOFmiFevTnhOFjnUvuihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSIdvnNJyLumZMNuBmXxHnWOFLfVHCtAldfCaFfehNlrMNgsSBEErqtRlsKbhahahahahahahaTlKfNLDphyTlhahahaxzTMTMHmVMvKAArGinhahahaNOSssbYKkoNOhahahahahahahahahahahaEQEQZxnDnacEKnXKSSVXVXgTAMAMLauihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSPCOYOYOYHhQVBmBmFLOeFLFLldIfldldldaFTxMPMNMNKKcWAvKlobRGKbhahahahahahahaTlTlTlcRTlTlhahahaxzpHpHHmVMvKAAawtEhahahaNONONONONONOhahahahahahahahahahahahaEQxsixdMrhpLOFwDOFjUvFuXqtuiuihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSteOYarGxHhszjveIpeDZUJRfVpDZjveIIkwSPDQadGjQSBHWZYcjobrUKbIdBjBjLWLWvnLWLWvniqVPgohahahahaxzNHNHpbdHhfHmGytEhahahahahahahahahahahahahahahahahahahahahaCTLEdFCTCTLUuXwDxCOFvFfGuiuihahahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSuUnyKWuZDxJuyqLkFjngiraBemerctctmwENmXKoCnunbfHWZYcjobRuKbLohahahahahahahahahahahahahahahaoMlFHmVVsQZWHmNtoMhahahahahahahahahahahahahahahahahahahahahaCTmyhiRQCTwvwvwvuiwvwvwvuihahahahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSnUOYGiRlgKJNOuoayaCvoJkmJaCvXbbyRixJaxJFYPZrIzHWclcjMCWjKbLohahahahahahahahahahahahahahahajNIrIrKtjNRFIrIrjNhahahahahahahahahahahahahahahahahahahahahaoZGbHphBCThahahahahahahahahahahahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSLoOYOYOYHhRgDvDvduTvduduYWJhYWYWYWaFjSeCCnEYNXNUAIcjSBmMKbLohahahahahahahahahahahahahahahajNOyUNjlTGTEXaLDjNhahahahahahahahahahahahahahahahahahahahahaoZstTHUACThahahahahahahahahahahahaQrhaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSANvnpjdyKVmkFqDvnKUINEduMQQgIuYWMIaFvrHXCnTrjpxORJCXSBuAKbLohahahahahahahahahahahahahahahaOAbwGMrOXRatGMJGxHhahahahahahahahahahahahahahahahahahahahahaoZIXlBjECThahahahahahahahahahahahaQrhaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCzDDNCIOwDvFsXhmQduAhpGfBYWCsaFdVNvMNmTGNrqniSBcWFyKbLohahahahahahahahahahahahahahahaOAhUGMrOGMatGMLJxHhahahahahahahahahahahahahahahahahahahahahaCTwIdFCTCThahahahahahahahahahahahaQrhaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCzDEHeNaPDvaAwCHIdupicwWEYWfCaFdVZnMNMUidHdThbWpcKbKbLohahahahahahahahahahahahahahahaOAmaGGXLgrMtGjBGxHhahahahahahahahahahahahahahahahahahahahahaoZjkYvHDKihahahahahahahahahahahahaQrhahaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCdybDEgXCDvbLJXLvdubzmClDYWTaaFdVaqKbKbKbKbKbKbKbKbhaLohahahahahahahahahahahahahahahajNjNjNJoRaJojNjNjNhahahahahahahahahahahahahahahahahahahahahaoZXzODDCKihahahahahahahahahahahahaQrhahaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaLodyqpoTEtDvQZVAnEduLPdpzYYWpzaFdVFOKbOZQuKbhahahahahaLohahahahahahahahahahahahahahahahahaOAgNSWgNxHhahahahahahahahahahahahahahahahahahahahahahahaCTUEZICTCThahahahahahahahahahahahaQrhahahaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgbPbPbPbPKdxhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCdydyhcDvDvDvNzzSduduHxYWYWYWDAlSenAaAaAaAaAaAaJPJPAaLogxgxhahahahahahahahagxgxgxgxhahahaOAMAtpMAxHhahahahahahahahahahahahahahahahahahahahahahahaGdfbfbFthahahahahahahahahahahahahaQrhahahaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgbPbPbPbPtYMhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaLogudyCOpIHYDvXVWlRydumUYBYlYWtyrtgJAayAqoRwysAamcDUAavqgxgxgxhahahahagxgxgxgxgxgxgxgxhahaOAkpVCkpxHhahahahahahahahahahahahahahaguhahahahahahahagxgxgxgxgxhahahaguguhahahahaguhahahaQrhahahahahaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgbPbPbPbPbPbPtYMhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaIdNJYydymzlyDYDvzcvJpBdurKFJpKYWNFjoXWTXPbFgRhtaTXSCqZSoNBgxgxgxgxgxgxgxgxOcOcgxgxOcOcgxhahajNCbfTCbjNhahahahahahahahahahahaguguguhahahahahahahagxgxgxgxgxgxhahahahahahahahahahahahahaOahahahahahahaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgbPbPbPbPbPbPbPtYMhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaPCwswswswswsDvDvdudududuYWYWYWYWtyBasmUixxLGexFFkCiQdfhlNBgxgxgxgxgxgxgxgxababgxgxababgxhahakvSzSzSzkvhahahahahahahahahahahahahahahahahahahagxgxgxgxgxgxgxhahagxcqCTCTCTCTCThahahahaguaEhahahahahaEyEyXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgbPbPbPbPbPbPbPbPbPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaPCwsxvfnzzicJjjGfMuVhnGtsyecGtuDVERcygibibibibyJAayJyJAavqgxgxgxgxgxgxgxgxOcOcgxgxOcOcgxhahahagxgxgxhahaOPhahadPdPdPdPdPhahahahahahahahahagxgxgxgxgxgxgxgxgxgxgxfbsDeKeKlVCThahahaguhaQrhahahahaVLEyEyEyEyXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgzgbPbPbPbPbPbPbPbPbPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaPCNwzocNEeDnGDqcqcCyjmrBJSsPsPRWXHqCzfibTBcBibftLWLWLWvnhHhahahagxhahahagxgxgxgxgxgxgxgxhahahagxgxgxhahahahahaAmNylZdIBkhahahahahahahagxgxgxgxgxgxgxgxgxgxgxgxgxfbsDeKRPeKAjhahahahahaQrhahahahaVLEyEyEyEyEyEyXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgzgzgbPbPbPbPbPbPbPbPbPbPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaPCNwyRachXwsgkZlZlgkrjPkZlZlgkgktyLiaRVIxPrlibLQhahahahaguguhahahahagxhahagxgxgxgxgxgxhahahagxgxgxgxgxhagxgxgxSUgxgxgxgxgxgxgxhahagxgxgxgxgxgxgxhagxgxgxgxgxgxgxfbsDwHeKgnCThahahahahaQrhahahaVLVLEyEyEyEyEyEyEyEyEyEyEyXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgzgzgbPbPbPbPbPbPbPbPbPbPbPbPtYMhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaLoNwVnfKouwsrTzLXIMlLgeFodMiFSEGkfutNjibksgIibLQhahahahahahahahagxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxSUgxgxgxgxgxgxgxgxgxgxgxgxgxgxhahahagxgxgxgxgxgxgxcICTCTCTCTCThahahahahaQrhahahaVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgzgzgzgbPbPbPbPbPbPbPbPbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaLowslmDnwswseWBZLLBiUkrFGuqLwxEGkjLOtCibibibibLQhahahahahahahagxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxSUgxgxgxgxgxgxgxgxgxgxgxgxgxhahahahagxgxgxgxgxhahahahahahahahahahahahahaQrhahahaVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyXEXEXEXEXEXEXEXEvBzgzgzgzgzgzgzgzgzgzgbPbPbPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaPCNwySPlbGwsGgbmIObYluztmBbYXqEGgkgkgkgkftvnvnybhahahahaguhagxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxhagxgxgxgxgxgxSUgxgxgxgxgxgxgxgxgxgxgxgxhahahahahagxgxgxgxhahahahahahahahahahahahahahaQrhahaVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaPCNwznQDwewsMZbYaZWDaSeFZPTuEGEGftLWLWLWNJhahaJRhahahahahahagxgxgxgxgxgxgxhagxhahaxKwbHuHuwbQpMRhahahaxKQpQpQpaYFRWVWVFRWVWVFRhahahahahahahaguhaharupSpSBEhahahahahahahahahahahahahahaQrhahaVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaLowsbkJewswsEGyZyZEGEGEGyZyZEGfthHhahahahahahaPChahahahaguhagxgxgxgxgxhahahahahahawrnVmSNnnVnVwrhahajZaYFRWVWVFRFReqseqHseeqFRFRWVWVFRhahahahahaKeKeiZrrKehahahahahahahahahahahahahahaQrhahaVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaANTQXvXvTQvnvnvnvnvnvnvnvnLWLWNJhahahahahahahaLQhahahahaguhagxgxgxgxhahahahahahahajztiscBHHtEdKFhahawrFRFRsexYseMpseOLOLOLseIcseRVVYFRFRhahahahaOCkZhsRLZqhahahahahahahahahahahahahahaQrhahaVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahagxgxgxgxgxGEgxgxgxgxgxgxhahaguhahahahahahahaANApBjpvvnvnBjALALALALLWLWApBjBjnFfoYHtiMOmGZbEdYorcQpaYFRwtFCxEQRQRQRQRQRQRQRQRQRAVgVewFRhahahahaOCJxcfQCZqhahahahahahahahahahahahahahaQrhahaVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgWnWnWnUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPbTbTbTbTbTQrbTbTbTGEGEGEGEGEGEOflzlzlzOfGEbTvgXZXZvgXZXZvgbTbTbTbTWvbTbTbTGEGEGEGEbTbTbTbTdPdPsSdPdPzMIenVnVnVnVNnNnFRkaOLPRPfnSnSnSnSnSVKVKOsPROLYXFRiZiZKeKeKeKevYhrbabababababTbTbTbTbTbTbTbTbTbTQrbTNaNaNaNayvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvDQDQDQDQDQDQDQDQtotototototototototototototoneGsGsGsGsGsGsGsGsGscFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFgG +VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahagxgxgxOfOfOfanCxUBOfOfgxvgIPkQxtSuqMvghahahahaKChahagxgxgxgxgxhahahahadProJTzPPYcKdbPNpRDkXuufowtjZZOLPRYaqGqGqGqGqGcTcTUqPROLYRtjWGdWUhjWSQMqKzGfLNRBLmeRbahahahahahahahahahahaQrhaVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahagxgxHjcSKDkHndndYsOfOfvgGAMrWScpgCvghahahahaHShagxgxgxgxgxhahahahahadPhxlGJbJkPdHexeHeHeBrOWtDWxjcdSKgYaqGqGpkZSLAcTcTUqqYUVFpMVATwduanoAQbBBANeCEBhsLpobahahahahahahahahahahaQrhaVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaguhahagxgxHjMuxZwNvOwjjdyntzqbcbblnAOJQGvgvgXZXZvgckgxgxgxgxgxgxhahahahahadPdPqNqNqNLeXJTqYGQqGKOqtlWZoVOLCwYaqGqGoYJfWpcTcTUqCwOLkeWZiuISsuNhKRSVoHxTLNLNLNbabahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahaguhagxgxHjslkBwNcDeUgedmOfMHkhfxfxCzspjyfPlNIjOxHbgxgxgxgxgxgxgxhahahahahatiMMgPMsuSMXfOIeIenVpMpMFRttOLCwYaqGqGcTcTcTcTcTUqCwOLqjFRJAJAKeUhLFLFPeBJUhjrKhdChahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahaguhagxgxOfOfEkwNHUxoGWYEOfGYliXdzxBPwqYCuwkRhAaTHbgxgxgxgxgxgxgxhahahahahatiglbrjLPFAuEnoCmFnVhahaFRncOLCwaWJEJEBUBUBUBUBUijCwOLDMFRhahaKejiiCBFuRIMgBgckXdChahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahagxgxGEOfFIlEmVmVmKhuxixixixixihTycQBvgJwqOvgckgxgxhagxgxgxgxhahahahahanVnVYMXJXJEZXJvIxbnVhahaFRNPLxVNxnxnxnxnGXxnxnxnxnvUHKrNFRhahaKejiZUqRaDaDyijIKeKehahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahagxgxGEOfOfwaKGaeOfOfxiGlMFXGuvXBUwvgvgjgjgvgHbgxhahagxgxgxgxhahahahahahanVfgmNWqrZONrdnVnVhahaFRFRlkfsseOLOLOLWCOLOLOLsebSseFRFRhahaKeKeUlqRaDaDyitQKehahahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahahagxGEgxOfyWyWyWOfgxxiULPaAGnIXpmvvgftvnvnvnUbhahahagxgxgxhahahahahahahanVnVpMpMnVpMpMnVhahahahaFRZGZGFRFRWkWkSiWkWkFRFRZGZGFRhahahahaKeSESEKeKeSESEKehahahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +YzCfXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahaguhahaGEgxgxgxgxgxgxgxxixicGxixijgvgvgLohahahahahahaFXgxgxgxhaFXhahahahahahahahahahahahahahahahahahahahahaFRZGZGFRZGZGFRhahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +YzCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahahahabThahahahahahahagxyyZEvDvnvnvnvnNJhahahahahahahahagxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +YzCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahahahabThahahahahahahahahahahahahahahahahahahahahahahahagxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +YzCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaebnHnHnHnHnHnHnHYnnHnHnHnHnHnHnHnHnHnHnHnHnHbqnHnHnHnHnHLyhahahahagxgxhahahahapwnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHilVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +YzififCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahahahahahahahahahabThahahahahahahahahahahahahahahahahahahahahahahafQxqxqfQhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaVLVLNaVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +YzCfififCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahahahahahahahahahabThahahahahahahahahahahahahahahahahahahahahahahaROxqxqhGCfCfCfhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaVLVLVLNaVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +YzCfCfCfCfifCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahahahahahahahahahabThahahahahahahahahahahahahahahahahahahahahaCfCfROxqxqPWifCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaVLVLVLVLNaVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXECfCfCfifififCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahahahahahahahahahabThahahahahahahahahahahahahahahahahahahahaCfCfCfKwxqxqPWififififCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaVLVLVLVLVLVLNaVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXECfCfCfCfififCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahahahahahahahahahabThahahahahahahahahahahahahahahahahaCfCfCfCfCfifKwxqxqPWCfCfifififififififififififififififififCfCfCfhahahahahahahahahahahahahahahahahahahaVLVLVLVLVLVLVLVLVLVLVLVLVLVLVLVLNaVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfififififROxqxqhGCfCfCfCfCfCfCfCfCfifififCfifififififififCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwCfCfCfCfCfCfCfCfCfififCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfififCfCfCfROxqxqhGCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfififififCfCfCfCfCfCfzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwCfCfCfCfCfCfifififCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfROxqxqhGCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfifififififCfCfCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfifififCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfzwfQxqxqfQzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfififififCfCfCfCfCfCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwgxgxzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfififififififCfCfCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfifififCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwCfCfCfififCfCfCfCfCfzwzwzwzwtwzwzwgxgxgxzwtwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyCfCfCfCfCfCfCfifififififififCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfififCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwCfCfCfCfififCfCfCfCfzwzwzwzwzwzwzwzwzwzwgxgxzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfififififCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfifififCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwCfCfCfCfCfifCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwgxgxzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfifCfCfCfCfCfCfCfEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwGRzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwgxgxgxzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfififCfCfCfCfCfCfEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwgxgxzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfififCfCfCfCfCfEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwHVCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwgxgxzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfifififCfCfCfEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfififCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfHVCfififCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwgxgxzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfifCfCfCfEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfififCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfWYififCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfifCfCfCfEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfififCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfWYCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfififHVCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfififCfCfHVCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfHVEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfififCfCfCfUPzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfHVCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfififCfCfCfzwUPzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfHVCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfififCfCfCfCfCfCfzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfzwzwUPzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfifHVCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfifififCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfififififCfCfCfCfCfCfzwzwzwUPzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfWYCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfififCfCfCfCfCfCfCfCfCfCfCfifififififCfCfCfCfCfCfCfCfzwzwzwzwzwUPzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfWYifCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfifififififCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfHVififCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfififCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEygxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfHVCfififCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxEyEyEyEyEyEygxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyHVCfCfififCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyHVCfCfififCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxgxgxyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvCfCfCfifCfCfCfEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEygxgxgxyTyTyTyTWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyyvCfCfCfififCfCfCfEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEygxgxyTyTyTyTWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxEyEyEyEygxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEyEyyvEyCfCfifififCfCfEyEyEyEygxgxgxgxgxgxEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTEygxgxyTyTyTyTWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxEyEyEyEyyvEyfQjXjXFDFDFDjXjXEcfQgxgxgxgxEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTgxgxyTyTyTyTWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEygxGEgxxqxqxqxqxqxqxqxqxqxqgxgxEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTipyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLIgIgIgIgIgIgxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxGEgxxqxqxqxqxqxqxqxqxqxqgxEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyyvEyfQVDcycyJQJQJQcycyfQEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgxLxLxLgDPOPOPOMhxLxLxLxLIgIgIgIgIgIgIgIgIggG +VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyyvEyEyEyCfCfCfififCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTEyEyEyyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLIgIgIgIgxLxLgDGvWPWPWPtYPOMhxLxLxLxLIgIgIgIgIgIgIggG +VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyyvEyEyEyEyCfCfCfifCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgxLxLzaWPyTyTWPWPWPtYPOMhxLxLxLxLIgIgIgIgIggG +VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyEyEyEyEyyvEyEyEyEyEyCfCfififCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgxLxLxLzaWPWPyTyTyTWPWPWPtYMhxLxLxLxLIgIgIgIggG +VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyCfCfCfifCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLIgIgIgxLxLxLgDGvWPWPyTyTyTyTyTWPWPtYPOMhxLxLIgIgIgIggG +VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyEyEyEyEyEygxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyCfCfifCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPKdfpxhxLxLxLIgIgIgxLxLgDGvWPWPyTyTEyEyEyyTWPWPWPWPhOxLxLxLIgIgIggG +VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEygxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyCfCfififCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPKdfpfpfpxhxLxLxLxLxLIgIgIgxLxLzaWPWPyTyTEyEyEyEyyTyTyTyTWPtYMhxLxLxLIgIggG +VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEygxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyCfCfCfifCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPfpfpfpxhxLxLxLxLxLxLxLxLxLIgIgIgIgxLKapWWPyTyTyTEyEyEyEyyTyTyTyTWPtYMhxLxLxLIggG +VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyCfCfififCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTCfCfxLxLxLxLxLxLxLxLxLxLxLxLxLxLIgIgIgxLxLKapWWPyTyTyTyTEyEyEyEyyTyTyTWPtYMhxLxLIggG +VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyCfCfCfififCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTCfCfCfCfCfxLxLxLxLgDPOPOPOPOPOPOMhxLxLIgIgIgxLxLxLKapWWPWPyTyTyTyTyTyTyTyTyTWPWPhOxLxLIggG +VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyCfCfififCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfxLxLgDPOGvWPWPWPWPWPWPhOxLxLxLIgIgIgxLxLxLKapWWPWPyTyTyTyTyTyTWPWPWPWPhOxLxLIggG +VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyCfCfCfifCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfCfCfPOPOGvWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgxLxLxLKafppWWPWPWPWPWPWPWPKdfpfpxhxLxLIggG +VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfCfCfCfCfWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgxLxLxLxLKafpfpfpfpfpfpfpxhxLxLxLxLxLIggG +VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfCfyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLIgIgIgIgIgIgIgxLxLxLxLxLxLxLxLxLxLxLxLxLxLxLxLIggG +VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyCfCfififCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgIgIgxLxLxLxLxLxLxLxLxLxLxLxLIgIgIgIggG +VgXEXEXEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyAoAoCfCfCfifififCfCfCfCfififififififCfCfCfCfCfCfCfCfCfyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyAoAoAoCfCfCfCfCfCfifififififififififififififififCfCfCfyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyAoAoAoAoAoAoAoCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfififCfCfCfCfCfCfyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTEyyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyAoAoAoAoAoAoAoAoAoEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyAoAoAoAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfCfCfCfyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyAoAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfCfCfCfCfWPWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTCfCfCfCfCfCfCfWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEyTyTyTyTyTyTlwyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTCfCfCfCfCfCfCfWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyAoAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTCfCfCfCfCfCffppWWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTCfCfCfCfxLKapWWPWPWPWPKdxhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvAoAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPCfCfCfxLxLKafpfppWWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyZuEyZuEyfQxqxqfQEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyPUAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPCfCfxLxLxLxLxLKafpxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoLSxqxqHaAoAoAoAoAoAoAoEyEyEyEyEyEyEyAoAoPUAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPtYPOPOMhxLxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoAoAoLSxqxqHaAoAoAoAoAoAoAoAoEyEyEyEyAoAoAoAoPUAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoAoAoAoAoLSxqxqHaAoAoAoAoAoAoAoAoAoAoAoAoAoAoAoAoPUAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPtYPOMhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoAoAoAoAoAoLSxqxqHaAoAoAoAoAoAoAoAoAoAoAoAoAoAoAoAoPUAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoAoAoAoZuEyZuEyfQxqxqfQEyEyEyAoAoAoAoAoAoAoAoAoAoAoAoAoPUEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoAoEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgWnWnWnWniFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQiFiFiFiFiFiFyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvtsyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvPUPUPUPUPUPUPUyvyvyvyvyvyvyvyvyvyvyvyvGEGEGEyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvDQDQDQDQDQDQDQtotototototototototototoneGsGsGsGsGsGscFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFgG +VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyTyTyjyTyTyTyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyhEEyEyEyEyEyEyEyEyEyEyEyuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyzCyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyhEEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEXNuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEXNXNXNuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYPOMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEXNXNXNXNuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyyTyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEXNXNXNXNXNXNuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEXNXNXNXNXNXNuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEXNXNXNXNXNXNXNuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYPOMhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIggG +VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIggG +VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLIgIgIgIgIgIgIgIgIgIgIggG +VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLIgIgIgIgIgIgIgIgIgIggG +VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIggG +VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYxLxLxLxLxLxLIgIgIgIgIgIgIgIggG +VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLIgIgIgIgIgIgIggG +VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLIgIgIgIgIggG +VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEuEyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYPOMhxLxLxLxLxLIgIgIgIggG +VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLxLgG +VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLgG +VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLgG +VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYPOPOMhxLxLxLgG +VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYPOPOPOgG +VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEgG +VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEVg +VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEyTyTyTyTuEuEXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEXEVg +VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEyTEyEyyTyTuEXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEXEVg +VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEyTyTEyEyyTuEXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEXEVg +VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEuEyTEyEyyTuEXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEXEXEVg +VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEyTyTEyyTuEXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEXEXEVg +VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEuEyTyTyTuEXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEXEXEVg +VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPXEXEXEXEXEVg +VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPXEXEXEXEXEXEVg +VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPXEXEXEXEXEXEVg +VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEEyyTEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPXEXEXEXEXEXEVg +VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPXEXEXEXEXEXEVg +VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEVg +VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyTyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEEyEyEyEyEyEyyTyTEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEVg +VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEEyEyEyEyEyEyEyEyyTEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEVg +VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEVg +VgXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyyTyTyTEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEVg +VgXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyTyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEVg +VgXEXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyTyTyTyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEuEuEXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEXEVg +VgXEXEXEXEXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyTyTyTyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEuEuEXNXNXNXNuEuEuEuEuEuEuEuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEXEXEXEVg +VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyTyThChChCyTyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEuEXNXNuEuEuEuEuEuEuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyThChChCyTyTyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEVg +VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyTflhCvkhCFAyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNuEuEuEuEuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyflhCvkhCFAyTyvEyEyEyEyEyEyEyEyEyEyEyEyEyXEXEXEXEXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEVg +VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjXEXEXEXEXEbvyjyjyjbvyjyjyjSkyjyjyjbvyjyjyjKBlAJHlAKByjyjyjbvyjyjyjbvyjyjyjbvyjyjyjbvyjyjyjbvyjyjyjbvyjyjyjbvyjyjyjbvyjuEuEuEXNXNuEuEuEyjbvyjyjEybvEyEyEybvEyEyEybvEyEyEybvEyEyEybvEyEyEyKBlAjHlAKBEyyvEybvEyEyEybvEyEyEybvXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEEyEyEyEyEyEyEyXEXEXEXEXEXEXEXEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEVg +VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjXEXEXEXEXEXEXEXEXEXEXEXEXEXEyjyjyjyjyjyjyjXEXEXEXEXEbvbvbvbvbvbvbvbvbvbvbvSkbvbvbvbvbvbvbvbvhChChCbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvuEuEXNXNuEuEbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvhChChCbvbvSkbvbvbvbvbvbvbvbvbvbvbvXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEVg +VgIGXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbvbvbvbvbvbvbvbvbvbvbvSkbvbvbvbvbvbvbvbvDPhCFHbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvuEuEXNXNuEuEbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvDPhCFHbvbvSkbvbvbvbvbvbvbvbvbvbvbvXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEVg +VgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVbvhChChCbvrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVbvRrRrRrRrRrRrbvrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVbvhChChCbvrVrVrVrVrVrVrVrVrVrVrVrVrVVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVg "} diff --git a/maps/southern_cross/southern_cross-6.dmm b/maps/southern_cross/southern_cross-6.dmm index 7af01a8044..8a2f270f4b 100644 --- a/maps/southern_cross/southern_cross-6.dmm +++ b/maps/southern_cross/southern_cross-6.dmm @@ -1,5 +1,59 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( +/turf/simulated/wall/solidrock, +/area/surface/outpost/wall) +"ab" = ( +/turf/simulated/mineral/sif, +/area/surface/cave/unexplored/deep) +"ac" = ( +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/cave/explored/deep) +"ad" = ( +/turf/simulated/wall/solidrock, +/area/surface/cave/unexplored/deep) +"ae" = ( +/turf/simulated/mineral/sif, +/area/surface/cave/unexplored/normal) +"af" = ( +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/cave/explored/normal) +"ag" = ( +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/cave/unexplored/normal) +"ah" = ( +/obj/machinery/conveyor{ + id = "anolongstorage" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology) +"ai" = ( +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology) +"aj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology) +"ak" = ( +/obj/machinery/conveyor_switch{ + id = "anolongstorage"; + req_access = list(65) + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology) +"al" = ( +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology) +"am" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology) +"an" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology) +"ao" = ( /obj/machinery/access_button{ command = "cycle_exterior"; frequency = 1397; @@ -20,7 +74,253 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology) -"ab" = ( +"ap" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"aq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"ar" = ( +/obj/machinery/conveyor{ + id = "anolongstorage" + }, +/obj/structure/plasticflaps/mining, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"as" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology) +"at" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology) +"au" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/computer/guestpass{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology) +"av" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/anomaly) +"aw" = ( +/obj/machinery/conveyor{ + id = "anolongstorage" + }, +/obj/structure/plasticflaps/mining, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/anomaly) +"ax" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/anomaly) +"ay" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"az" = ( +/obj/effect/floor_decal/corner/purple/full{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"aA" = ( +/obj/structure/closet/excavation, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"aB" = ( +/obj/structure/closet/excavation, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"aC" = ( +/obj/structure/closet/excavation, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/machinery/alarm{ + pixel_y = 23 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"aD" = ( +/obj/machinery/conveyor_switch{ + id = "anolongstorage"; + req_access = list(65) + }, +/obj/effect/floor_decal/corner/purple{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"aE" = ( +/obj/machinery/conveyor{ + id = "anolongstorage" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"aF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/camera/network/research_outpost{ + c_tag = "OPR - Xenoarch Airlock 2"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology) +"aG" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology) +"aH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology) +"aI" = ( +/obj/machinery/conveyor{ + id = "anolongstorage" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/anomaly) +"aJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/conveyor_switch{ + id = "anolongstorage"; + req_access = list(65) + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/anomaly) +"aK" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/anomaly) +"aL" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/anomaly) +"aM" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/anomaly) +"aN" = ( +/turf/simulated/wall, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"aO" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"aP" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"aQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/machinery/alarm{ + pixel_y = 23 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"aR" = ( +/obj/effect/floor_decal/corner/purple/full{ + dir = 8 + }, +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"aS" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"aT" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"aU" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"aV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"aW" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"aX" = ( /obj/machinery/door/airlock/research{ autoclose = 0; frequency = 1397; @@ -41,594 +341,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology) -"ac" = ( -/obj/effect/map_effect/portal/master/side_a/caves_to_wilderness, -/turf/simulated/wall/solidrock, -/area/surface/outpost/wall) -"ad" = ( -/obj/effect/map_effect/portal/line/side_a, -/turf/simulated/wall/solidrock, -/area/surface/outpost/wall) -"ae" = ( -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "xenoarch1_airlock_exterior"; - locked = 1; - name = "Research Exterior Airlock" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "xenoarch1_airlock_control"; - name = "Xenoarch Access Button"; - pixel_y = -24; - req_access = null - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"af" = ( -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "xenoarch1_airlock_interior"; - locked = 1; - name = "Research Interior Airlock" - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "xenoarch1_airlock_control"; - name = "Research Access Button"; - pixel_x = -6; - pixel_y = -26; - req_access = null - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"ag" = ( -/obj/machinery/computer/area_atmos, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/anomaly) -"ah" = ( -/obj/machinery/computer/crew{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/medical) -"ai" = ( -/obj/machinery/chemical_dispenser/full, -/obj/structure/sign/warning/nosmoking_2{ - pixel_x = -32 - }, -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"ap" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"aq" = ( -/obj/effect/map_effect/portal/line/side_a, -/turf/simulated/shuttle/wall/voidcraft, -/area/surface/outpost/wall/checkpoint) -"au" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 1; - icon_state = "freezer" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"aw" = ( -/obj/effect/map_effect/perma_light/concentrated/incandescent, -/obj/effect/map_effect/portal/line/side_a, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"ax" = ( -/obj/effect/zone_divider, -/turf/simulated/wall/solidrock, -/area/surface/outpost/wall) -"ay" = ( -/obj/effect/map_effect/portal/master/side_a/caves_to_wilderness/river, -/turf/simulated/wall/solidrock, -/area/surface/outpost/wall) -"aC" = ( -/obj/effect/map_effect/perma_light/concentrated/incandescent, -/obj/effect/map_effect/portal/line/side_a, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/outpost/wall/checkpoint) -"aH" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/cave/explored/normal) -"aS" = ( -/obj/effect/map_effect/portal/line/side_a, -/turf/simulated/wall/solidrock, -/area/surface/outpost/wall/checkpoint) -"aU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/neutral, -/area/surface/outpost/research/xenoarcheology) -"bt" = ( -/turf/simulated/wall/solidrock, -/area/surface/cave/unexplored/deep) -"bu" = ( -/turf/simulated/shuttle/wall/voidcraft, -/area/surface/outpost/wall/checkpoint) -"bv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"bw" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/outpost/mining_main/cave) -"bE" = ( -/obj/item/stack/flag/green, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/cave/explored/deep) -"bF" = ( -/obj/machinery/conveyor{ - id = "anolongstorage" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology) -"bH" = ( -/turf/simulated/mineral/sif, -/area/surface/cave/explored/deep) -"bP" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/steel, -/obj/random/tool, -/obj/random/tool, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Xenoarchaeology SMES" - }, -/obj/item/weapon/airlock_electronics, -/obj/item/weapon/airlock_electronics, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"bR" = ( -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology) -"bU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology) -"bV" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"bY" = ( -/obj/machinery/conveyor_switch{ - id = "anolongstorage"; - req_access = list(65) - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology) -"cf" = ( -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology) -"cv" = ( -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2" - }, -/area/surface/outpost/mining_main/cave) -"cF" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/rust/part_rusted1, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"cH" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"cL" = ( -/turf/simulated/wall, -/area/surface/outpost/research/xenoarcheology/restroom) -"cS" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/outpost/mining_main/cave) -"dy" = ( -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/anomaly_container, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"dA" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"dO" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"dT" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 1 - }, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/cave/explored/normal) -"dW" = ( -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/cave/explored/normal) -"dY" = ( -/obj/machinery/conveyor{ - id = "anolongstorage" - }, -/obj/structure/plasticflaps/mining, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"eo" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"ep" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"es" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"eK" = ( -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/outpost/wall) -"eV" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/computer/guestpass{ - pixel_x = 30 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"eZ" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"fc" = ( -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/outpost/research/xenoarcheology/exterior) -"fn" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/research/xenoarcheology/anomaly) -"fr" = ( -/obj/machinery/conveyor{ - id = "anolongstorage" - }, -/obj/structure/plasticflaps/mining, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/anomaly) -"fE" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/anomaly) -"fK" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/outpost/research/xenoarcheology/exterior) -"fN" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/research/xenoarcheology/longtermstorage) -"gc" = ( -/obj/structure/closet/excavation, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"gm" = ( -/obj/structure/closet/excavation, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/alarm{ - pixel_y = 23 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"gp" = ( -/obj/machinery/conveyor_switch{ - id = "anolongstorage"; - req_access = list(65) - }, -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"gr" = ( -/obj/machinery/conveyor{ - id = "anolongstorage" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"gz" = ( -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2" - }, -/area/surface/outpost/research/xenoarcheology/exterior) -"gH" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Xenoarch Airlock 2"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"gR" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"gU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"ha" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/cave/unexplored/deep) -"hb" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"hg" = ( -/obj/machinery/conveyor{ - id = "anolongstorage" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/anomaly) -"hq" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology) -"hD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/conveyor_switch{ - id = "anolongstorage"; - req_access = list(65) - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/anomaly) -"hH" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"hN" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"hO" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_c) -"hR" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"hU" = ( -/turf/simulated/wall, -/area/surface/outpost/research/xenoarcheology/longtermstorage) -"hW" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"ie" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/longtermstorage) -"ig" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/outpost/mining_main/cave) -"ih" = ( -/turf/simulated/floor/tiled/neutral, -/area/surface/outpost/research/xenoarcheology) -"il" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/longtermstorage) -"it" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/machinery/alarm{ - pixel_y = 23 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/longtermstorage) -"iv" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"iy" = ( -/turf/simulated/mineral/sif, -/area/surface/cave/unexplored/deep) -"iA" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/disposalpipe/trunk, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"iD" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"iE" = ( +"aY" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -28 }, @@ -640,7 +353,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"iF" = ( +"aZ" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 }, @@ -649,129 +362,85 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"iG" = ( +"ba" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"ja" = ( +"bb" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"jf" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"jq" = ( +"bc" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"jA" = ( -/turf/simulated/wall, -/area/surface/outpost/research/xenoarcheology/analysis) -"jE" = ( -/obj/structure/table/rack, -/obj/item/weapon/storage/toolbox/emergency, -/obj/item/clothing/accessory/armband/science, -/obj/item/clothing/glasses/science, -/obj/item/device/suit_cooling_unit, -/obj/item/weapon/extinguisher, -/obj/item/device/flashlight, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/emergencystorage) -"jF" = ( +"bd" = ( /obj/structure/sign/warning/nosmoking_2, /turf/simulated/wall, /area/surface/outpost/research/xenoarcheology/longtermstorage) -"jI" = ( +"be" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, /area/surface/outpost/research/xenoarcheology/longtermstorage) -"jN" = ( +"bf" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, /area/surface/outpost/research/xenoarcheology/longtermstorage) -"jP" = ( -/turf/simulated/wall/solidrock, -/area/surface/cave/unexplored/normal) -"jQ" = ( +"bg" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/surface/outpost/research/xenoarcheology/longtermstorage) -"jV" = ( +"bh" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/structure/closet/crate, /turf/simulated/floor/tiled/dark, /area/surface/outpost/research/xenoarcheology/longtermstorage) -"kc" = ( -/obj/machinery/space_heater, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" +"bi" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 9 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 +/obj/machinery/status_display{ + pixel_x = -32 }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/emergencystorage) -"ke" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"kk" = ( -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"km" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"bj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"bk" = ( +/obj/item/weapon/storage/excavation, +/obj/item/weapon/pickaxe, +/obj/item/weapon/tool/wrench, +/obj/item/device/measuring_tape, +/obj/item/stack/flag/yellow, +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"bl" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/exp_prep) -"kq" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/outpost/wall/checkpoint) -"kv" = ( +"bm" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/exp_prep) -"kx" = ( -/obj/machinery/atmospherics/pipe/tank/phoron{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"kA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/noticeboard/anomaly{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"kD" = ( +"bn" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/disposalpipe/segment{ dir = 4 @@ -779,7 +448,7 @@ /obj/effect/wingrille_spawn/reinforced, /turf/simulated/floor/plating, /area/surface/outpost/research/xenoarcheology/exp_prep) -"kG" = ( +"bo" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -794,50 +463,7 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"kN" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Outpost Maintenance Hatch"; - normalspeed = 0; - req_one_access = list(1,5,10,12,31,47,48,50) - }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2" - }, -/area/surface/outpost/research/xenoarcheology/exterior) -"kO" = ( -/obj/machinery/atmospherics/unary/heater{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"kT" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Sample Preparation" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"kV" = ( -/obj/structure/closet/toolcloset, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"la" = ( +"bp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -855,13 +481,7 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"lf" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"ll" = ( +"bq" = ( /obj/machinery/shower{ pixel_y = 3 }, @@ -874,38 +494,13 @@ }, /turf/simulated/floor/tiled/freezer, /area/surface/outpost/research/xenoarcheology) -"ly" = ( +"br" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, /area/surface/outpost/research/xenoarcheology/anomaly) -"lI" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"lT" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"lV" = ( +"bs" = ( /obj/machinery/light{ dir = 8 }, @@ -917,7 +512,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"mf" = ( +"bt" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, @@ -937,7 +532,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"mg" = ( +"bu" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -954,7 +549,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"mh" = ( +"bv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -976,7 +571,7 @@ }, /turf/simulated/floor/tiled/dark, /area/surface/outpost/research/xenoarcheology/longtermstorage) -"mi" = ( +"bw" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -994,17 +589,7 @@ }, /turf/simulated/floor/tiled/dark, /area/surface/outpost/research/xenoarcheology/longtermstorage) -"mj" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 1; - start_pressure = 740 - }, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"ml" = ( +"bx" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -1018,20 +603,7 @@ }, /turf/simulated/floor/tiled/dark, /area/surface/outpost/research/xenoarcheology/longtermstorage) -"mv" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"mI" = ( -/turf/simulated/mineral/sif, -/area/surface/cave/unexplored/normal) -"mM" = ( -/obj/machinery/sleep_console, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/medical) -"na" = ( +"by" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -1042,7 +614,7 @@ }, /turf/simulated/floor/tiled/dark, /area/surface/outpost/research/xenoarcheology/longtermstorage) -"nb" = ( +"bz" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -1058,31 +630,23 @@ }, /turf/simulated/floor/tiled/dark, /area/surface/outpost/research/xenoarcheology/longtermstorage) -"nc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Anomalous Materials 1"; - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 8 +"bA" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"bB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, /turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"ns" = ( -/turf/simulated/wall/solidrock, -/area/surface/outpost/wall) -"nu" = ( -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/cave/explored/deep) -"ny" = ( +/area/surface/outpost/research/xenoarcheology/exp_prep) +"bC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"bD" = ( /obj/effect/floor_decal/corner/purple{ dir = 10 }, @@ -1094,7 +658,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/exp_prep) -"nE" = ( +"bE" = ( /obj/effect/floor_decal/corner/purple{ dir = 10 }, @@ -1106,22 +670,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/exp_prep) -"nF" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"nH" = ( -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/outpost/wall/checkpoint) -"nJ" = ( +"bF" = ( /obj/effect/floor_decal/corner/purple{ dir = 8 }, @@ -1138,7 +687,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/exp_prep) -"nK" = ( +"bG" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/blue{ d1 = 4; @@ -1157,7 +706,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/exp_prep) -"nV" = ( +"bH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -1174,7 +723,7 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"nX" = ( +"bI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -1188,92 +737,23 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"nZ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Sample Preparation"; - req_access = list(65) - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"oe" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"om" = ( +"bJ" = ( /obj/machinery/space_heater, /obj/effect/floor_decal/corner/purple{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"oo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"op" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/outpost/research/xenoarcheology/exterior) -"os" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/outpost/mining_main/cave) -"ow" = ( +"bK" = ( /obj/machinery/door/firedoor/glass, /obj/effect/wingrille_spawn/reinforced, /turf/simulated/floor/plating, /area/surface/outpost/research/xenoarcheology/anomaly) -"oB" = ( +"bL" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"oJ" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"oN" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"oR" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"oS" = ( +"bM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/blue{ @@ -1286,50 +766,15 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"oZ" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/lights/bulbs{ - pixel_y = 5 - }, -/obj/item/weapon/storage/toolbox/emergency{ - pixel_y = 3; - starts_with = list(/obj/item/weapon/tool/crowbar/red,/obj/item/weapon/extinguisher/mini,/obj/item/device/radio,/obj/item/weapon/light/bulb) - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2" - }, -/area/surface/outpost/research/xenoarcheology/exterior) -"pb" = ( +"bN" = ( /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"pe" = ( +"bO" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/portables_connector, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"py" = ( -/turf/simulated/wall/solidrock, -/area/surface/outpost/wall/checkpoint) -"pF" = ( -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/item/weapon/reagent_containers/dropper{ - pixel_y = -4 - }, -/obj/structure/table/glass, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"pO" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 1; - start_pressure = 740 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"pP" = ( +"bP" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/machinery/firealarm{ dir = 1; @@ -1338,30 +783,13 @@ /obj/structure/anomaly_container, /turf/simulated/floor/tiled/dark, /area/surface/outpost/research/xenoarcheology/longtermstorage) -"pS" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/machinery/recharge_station, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"pU" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"qa" = ( +"bQ" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/machinery/light/small, /obj/structure/anomaly_container, /turf/simulated/floor/tiled/dark, /area/surface/outpost/research/xenoarcheology/longtermstorage) -"qe" = ( +"bR" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -1372,7 +800,7 @@ }, /turf/simulated/floor/tiled/dark, /area/surface/outpost/research/xenoarcheology/longtermstorage) -"qi" = ( +"bS" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -1381,30 +809,7 @@ /obj/structure/anomaly_container, /turf/simulated/floor/tiled/dark, /area/surface/outpost/research/xenoarcheology/longtermstorage) -"qq" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2" - }, -/area/surface/outpost/mining_main/cave) -"qz" = ( -/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"qF" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/cave/explored/deep) -"qR" = ( +"bT" = ( /obj/effect/floor_decal/corner/purple/full, /obj/machinery/suspension_gen, /obj/machinery/ai_status_display{ @@ -1412,17 +817,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/exp_prep) -"qW" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/machinery/floodlight, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"re" = ( +"bU" = ( /obj/machinery/suspension_gen, /obj/effect/floor_decal/corner/purple{ dir = 10 @@ -1432,23 +827,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/exp_prep) -"rg" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"rp" = ( -/obj/structure/closet/excavation, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"rx" = ( +"bV" = ( /obj/effect/floor_decal/corner/purple{ dir = 10 }, @@ -1459,7 +838,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/exp_prep) -"rz" = ( +"bW" = ( /obj/item/weapon/storage/excavation, /obj/item/weapon/pickaxe, /obj/item/weapon/tool/wrench, @@ -1482,13 +861,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/exp_prep) -"rE" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/outpost/mining_main/cave) -"rG" = ( +"bX" = ( /obj/structure/table/rack{ dir = 8; layer = 2.6 @@ -1505,15 +878,7 @@ /obj/machinery/door/window/northleft, /turf/simulated/floor/tiled/dark, /area/surface/outpost/research/xenoarcheology/exp_prep) -"rM" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/cave/unexplored/normal) -"rT" = ( -/obj/machinery/light/small, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/outpost/research/xenoarcheology/exterior) -"rX" = ( +"bY" = ( /obj/structure/table/rack{ dir = 8; layer = 2.6 @@ -1530,11 +895,7 @@ /obj/machinery/door/window/northright, /turf/simulated/floor/tiled/dark, /area/surface/outpost/research/xenoarcheology/exp_prep) -"sb" = ( -/obj/item/stack/flag/green, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/cave/explored/normal) -"se" = ( +"bZ" = ( /obj/structure/table/steel, /obj/item/device/suit_cooling_unit, /obj/machinery/power/apc{ @@ -1552,7 +913,7 @@ /obj/item/device/gps/science, /turf/simulated/floor/tiled/dark, /area/surface/outpost/research/xenoarcheology/exp_prep) -"sm" = ( +"ca" = ( /obj/structure/window/reinforced, /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 @@ -1562,7 +923,24 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"sp" = ( +"cb" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/wingrille_spawn/reinforced, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular/open{ + closed_layer = 10; + id = "biohazardshutters"; + layer = 1; + name = "Biohazard Shutters"; + open_layer = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/isolation_a) +"cc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/blue{ @@ -1572,22 +950,7 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"sv" = ( -/obj/item/clothing/glasses/meson, -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/emergencystorage) -"sD" = ( -/obj/machinery/radiocarbon_spectrometer, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/analysis) -"sG" = ( +"cd" = ( /obj/effect/floor_decal/corner/purple{ dir = 6 }, @@ -1597,15 +960,7 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"sK" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 6; - tag_north = 1; - tag_west = 2 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"sO" = ( +"ce" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/power/emitter{ anchored = 1; @@ -1619,73 +974,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"sU" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/medical) -"tc" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Sample Preparation"; - req_access = list(65) - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"td" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"tf" = ( -/obj/item/weapon/reagent_containers/glass/bottle/toxin, -/obj/item/weapon/reagent_containers/glass/beaker/sulphuric{ - name = "beaker 'sulphuric acid'" - }, -/obj/structure/table/glass, -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/light_switch{ - pixel_x = -36 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"tl" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/machinery/cell_charger, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/outpost/mining_main/cave) -"tp" = ( +"cf" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, @@ -1693,14 +982,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"tu" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/machinery/floodlight, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/outpost/mining_main/cave) -"tw" = ( +"cg" = ( /obj/machinery/atmospherics/omni/atmos_filter{ tag_east = 1; tag_north = 2; @@ -1709,10 +991,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"tC" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/research/xenoarcheology/restroom) -"uh" = ( +"ch" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, @@ -1720,10 +999,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"uo" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"ur" = ( +"ci" = ( /obj/structure/table/rack, /obj/item/clothing/suit/bio_suit/anomaly, /obj/item/clothing/head/bio_hood/anomaly, @@ -1745,7 +1021,7 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"uB" = ( +"cj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/blue{ d1 = 1; @@ -1757,7 +1033,7 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"uG" = ( +"ck" = ( /obj/machinery/camera/network/research_outpost{ c_tag = "OPR - Xenoarch Hallway 2"; dir = 8 @@ -1768,7 +1044,7 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"uK" = ( +"cl" = ( /obj/effect/floor_decal/corner/purple{ dir = 4 }, @@ -1789,12 +1065,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"uY" = ( -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2" - }, -/area/surface/outpost/mining_main/cave) -"ve" = ( +"cm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/blue{ d1 = 1; @@ -1809,18 +1080,16 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"vx" = ( +"cn" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/portable_atmospherics/powered/scrubber/huge, /turf/simulated/floor/tiled/dark, /area/surface/outpost/research/xenoarcheology/anomaly) -"vQ" = ( -/obj/effect/map_effect/portal/master/side_b/caves_to_plains/river{ - dir = 1 - }, -/turf/simulated/wall/solidrock, -/area/surface/cave/unexplored/normal) -"vV" = ( +"co" = ( +/obj/machinery/computer/area_atmos, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"cp" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -1845,19 +1114,14 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"wd" = ( -/obj/structure/showcase/sign{ - pixel_y = -5 +"cq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 }, -/turf/simulated/shuttle/wall/voidcraft, -/area/surface/outpost/wall/checkpoint) -"wp" = ( /obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/door/airlock/research{ + name = "Isolation Room 1"; + req_access = list(65) }, /obj/machinery/door/blast/regular/open{ closed_layer = 10; @@ -1866,9 +1130,9 @@ name = "Biohazard Shutters"; open_layer = 1 }, -/turf/simulated/floor/plating, +/turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_a) -"wx" = ( +"cr" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -1884,33 +1148,72 @@ }, /turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_a) -"wJ" = ( +"cs" = ( /obj/structure/bed, /turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_a) -"wK" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/emergencystorage) -"wU" = ( +"ct" = ( /obj/structure/table/standard, /obj/item/device/flashlight/lamp, /turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_a) -"wZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Xenoarch Airlock 1"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"xb" = ( +"cu" = ( /turf/simulated/wall/r_wall, /area/surface/outpost/research/xenoarcheology/isolation_a) -"xk" = ( +"cv" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/cave) +"cw" = ( +/obj/effect/map_effect/perma_light/concentrated/incandescent, +/obj/effect/map_effect/portal/line/side_a, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall/checkpoint) +"cx" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/surface/outpost/wall/checkpoint) +"cy" = ( +/obj/effect/map_effect/portal/line/side_a, +/turf/simulated/shuttle/wall/voidcraft, +/area/surface/outpost/wall/checkpoint) +"cz" = ( +/obj/effect/map_effect/perma_light/concentrated/incandescent, +/obj/effect/map_effect/portal/line/side_a, +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/surface/outpost/wall/checkpoint) +"cA" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/medical) +"cB" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/medical) +"cC" = ( +/obj/machinery/sleep_console, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/medical) +"cD" = ( +/obj/structure/table/rack, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/weapon/storage/firstaid/regular, +/obj/random/medical/lite, +/obj/structure/extinguisher_cabinet{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/medical) +"cE" = ( +/turf/simulated/wall, +/area/surface/outpost/research/xenoarcheology/medical) +"cF" = ( /obj/structure/closet/secure_closet/xenoarchaeologist{ req_access = list(47) }, @@ -1929,7 +1232,7 @@ }, /turf/simulated/floor/tiled/neutral, /area/surface/outpost/research/xenoarcheology) -"xz" = ( +"cG" = ( /obj/structure/closet/secure_closet/xenoarchaeologist{ req_access = list(47) }, @@ -1942,19 +1245,19 @@ }, /turf/simulated/floor/tiled/neutral, /area/surface/outpost/research/xenoarcheology) -"xE" = ( +"cH" = ( /obj/effect/floor_decal/corner/purple/full{ dir = 1 }, /obj/structure/bookcase/manuals/xenoarchaeology, /turf/simulated/floor/tiled/neutral, /area/surface/outpost/research/xenoarcheology) -"xL" = ( +"cI" = ( /obj/machinery/door/firedoor/glass, /obj/effect/wingrille_spawn/reinforced, /turf/simulated/floor/plating, /area/surface/outpost/research/xenoarcheology) -"xR" = ( +"cJ" = ( /obj/structure/table/rack, /obj/item/clothing/suit/bio_suit/anomaly, /obj/item/clothing/head/bio_hood/anomaly, @@ -1967,7 +1270,7 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"xS" = ( +"cK" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 2; @@ -1986,13 +1289,7 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"xX" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"yd" = ( +"cL" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -2009,7 +1306,7 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"yk" = ( +"cM" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/blue{ d1 = 4; @@ -2028,7 +1325,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"yl" = ( +"cN" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/cable/blue{ d1 = 4; @@ -2048,21 +1345,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"yn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/medical) -"ys" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/medical) -"yw" = ( +"cO" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/blue{ @@ -2080,7 +1363,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"yy" = ( +"cP" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/cable/blue{ d1 = 4; @@ -2092,7 +1375,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"yC" = ( +"cQ" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/cable/blue{ d1 = 4; @@ -2107,38 +1390,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"yH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/steel, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"yP" = ( -/obj/machinery/door/airlock{ - name = "Research Restroom" - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"yY" = ( +"cR" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, @@ -2160,60 +1412,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"zb" = ( -/obj/machinery/light/small, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/outpost/mining_main/cave) -"zf" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"zk" = ( -/obj/structure/table/steel, -/obj/item/weapon/tool/screwdriver, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/wrench, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/outpost/mining_main/cave) -"zl" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"zm" = ( -/obj/vehicle/train/engine{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/outpost/mining_main/cave) -"zs" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/heavyduty{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/outpost/mining_main/cave) -"zy" = ( -/obj/effect/zone_divider, -/obj/item/stack/flag/green, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/cave/explored/normal) -"zI" = ( +"cS" = ( /obj/machinery/atmospherics/valve/digital/open{ dir = 4 }, @@ -2225,15 +1424,9 @@ }, /turf/simulated/floor/plating, /area/surface/outpost/research/xenoarcheology/anomaly) -"zJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, +"cT" = ( /obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/research{ - name = "Isolation Room 1"; - req_access = list(65) - }, +/obj/effect/wingrille_spawn/reinforced, /obj/machinery/door/blast/regular/open{ closed_layer = 10; id = "biohazardshutters"; @@ -2241,33 +1434,59 @@ name = "Biohazard Shutters"; open_layer = 1 }, -/turf/simulated/floor/reinforced, +/turf/simulated/floor/plating, /area/surface/outpost/research/xenoarcheology/isolation_a) -"zU" = ( +"cU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, /turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_a) -"zV" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"zZ" = ( +"cV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 10 }, /turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_a) -"Af" = ( +"cW" = ( /turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_a) -"AC" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/research/xenoarcheology) -"AN" = ( +"cX" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall/checkpoint) +"cY" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall/checkpoint) +"cZ" = ( +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall/checkpoint) +"da" = ( +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/medical) +"db" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/medical) +"dc" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/medical) +"dd" = ( /obj/machinery/light{ dir = 8 }, @@ -2277,16 +1496,13 @@ }, /turf/simulated/floor/tiled/neutral, /area/surface/outpost/research/xenoarcheology) -"AO" = ( +"de" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /turf/simulated/floor/tiled/neutral, /area/surface/outpost/research/xenoarcheology) -"AP" = ( -/turf/simulated/wall, -/area/surface/outpost/research/xenoarcheology/medical) -"AZ" = ( +"df" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -2295,7 +1511,7 @@ }, /turf/simulated/floor/tiled/neutral, /area/surface/outpost/research/xenoarcheology) -"Bc" = ( +"dg" = ( /obj/structure/table/rack, /obj/item/clothing/suit/bio_suit/anomaly, /obj/item/clothing/head/bio_hood/anomaly, @@ -2305,7 +1521,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"Bh" = ( +"dh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/blue{ d1 = 1; @@ -2317,7 +1533,7 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"Br" = ( +"di" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -2327,41 +1543,17 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"Bu" = ( +"dj" = ( /obj/structure/table/standard, /obj/item/clothing/head/welding, /obj/item/weapon/weldingtool, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology/anomaly) -"BH" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/floor_decal/corner/beige/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"BO" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/cave/explored/normal) -"BQ" = ( +"dk" = ( /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology/anomaly) -"BY" = ( -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/cave/explored/deep) -"BZ" = ( +"dl" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/dropper{ pixel_y = -4 @@ -2369,31 +1561,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology/anomaly) -"Ce" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"Cg" = ( -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2" - }, -/area/surface/outpost/research/xenoarcheology) -"Ch" = ( -/obj/machinery/atmospherics/binary/pump, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"Ci" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 1; - target_pressure = 200 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"Cj" = ( +"dm" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, @@ -2407,46 +1575,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"Cn" = ( -/turf/simulated/wall, -/area/surface/outpost/research/xenoarcheology/smes) -"Cr" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/emergencystorage) -"CG" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/random/powercell, -/obj/random/maintenance/clean, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/light_switch{ - name = "light switch "; - pixel_x = 36 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"CP" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/cave/unexplored/normal) -"CR" = ( +"dn" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, @@ -2458,140 +1587,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"CS" = ( -/obj/structure/cable/heavyduty{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2" - }, -/area/surface/outpost/research/xenoarcheology/exterior) -"CV" = ( -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"CY" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/blast/regular/open{ - closed_layer = 10; - id = "biohazardshutters"; - layer = 1; - name = "Biohazard Shutters"; - open_layer = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/isolation_a) -"Dj" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2" - }, -/area/surface/outpost/mining_main/cave) -"Dr" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_a) -"Dv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"DD" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"DH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "isolation_one"; - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_a) -"DQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Isolation Cell 1"; - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_a) -"Ec" = ( -/obj/effect/zone_divider, -/obj/item/stack/flag/green, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/cave/explored/deep) -"Em" = ( -/obj/structure/bed/chair/office/light, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/light_switch{ - pixel_x = -36 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/medical) -"Es" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/medical) -"Eu" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"Ez" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/medical) -"EK" = ( +"do" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -2610,28 +1606,104 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology/medical) -"EZ" = ( -/turf/simulated/shuttle/wall/voidcraft/hard_corner, +"dp" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_a) +"dq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, +/obj/machinery/alarm/monitor/isolation{ + alarm_id = "isolation_one"; + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_a) +"dr" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8 + }, +/obj/machinery/camera/network/research_outpost{ + c_tag = "OPR - Isolation Cell 1"; + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_a) +"ds" = ( +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/surface/cave/explored/deep) +"dt" = ( +/obj/machinery/door/airlock/voidcraft{ + name = "Wilderness Containment" + }, +/turf/simulated/shuttle/floor/voidcraft/external, /area/surface/outpost/wall/checkpoint) -"Fd" = ( -/obj/machinery/newscaster{ - pixel_x = -30 +"du" = ( +/obj/structure/bed/chair/office/light, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + pixel_x = -36 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology/medical) -"Fi" = ( +"dv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /obj/machinery/hologram/holopad, /obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"Fj" = ( -/obj/item/weapon/weldpack, -/obj/machinery/light/small{ +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/medical) +"dw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/emergencystorage) -"Fo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/medical) +"dx" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/item/weapon/tool/screwdriver{ + pixel_y = 15 + }, +/obj/item/weapon/melee/baton/loaded, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/device/multitool, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"dy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -2643,7 +1715,26 @@ }, /turf/simulated/floor/tiled/neutral, /area/surface/outpost/research/xenoarcheology) -"Fp" = ( +"dz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology) +"dA" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -2669,13 +1760,7 @@ /obj/item/weapon/hand_labeler, /turf/simulated/floor/tiled/neutral, /area/surface/outpost/research/xenoarcheology) -"Fq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"Fu" = ( +"dB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor/glass, @@ -2690,112 +1775,7 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"FD" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/item/weapon/tool/screwdriver{ - pixel_y = 15 - }, -/obj/item/weapon/melee/baton/loaded, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/device/multitool, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/anomaly) -"FK" = ( -/obj/item/weapon/storage/excavation, -/obj/item/weapon/pickaxe, -/obj/item/weapon/tool/wrench, -/obj/item/device/measuring_tape, -/obj/item/stack/flag/yellow, -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"FR" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2" - }, -/area/surface/outpost/research/xenoarcheology/exterior) -"FV" = ( -/obj/machinery/artifact_scanpad, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/anomaly) -"Gg" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/door/window/westright, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"Gn" = ( -/obj/structure/table/standard, -/obj/item/weapon/towel{ - color = "#800080"; - name = "purple towel" - }, -/obj/item/weapon/towel{ - color = "#800080"; - name = "purple towel" - }, -/obj/item/weapon/towel{ - color = "#800080"; - name = "purple towel" - }, -/obj/random/soap, -/obj/random/soap, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"Gp" = ( -/obj/machinery/radiocarbon_spectrometer, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/analysis) -"Gs" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/structure/ore_box, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/outpost/mining_main/cave) -"Gx" = ( -/obj/machinery/artifact_analyser, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/anomaly) -"GF" = ( -/obj/structure/table/standard, -/obj/item/weapon/flame/lighter/random, -/obj/item/weapon/tool/crowbar, -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/anomaly) -"GO" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/anomaly) -"GV" = ( +"dC" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, @@ -2811,136 +1791,68 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"GX" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2" - }, -/area/surface/outpost/research/xenoarcheology/exterior) -"GY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/neutral, -/area/surface/outpost/research/xenoarcheology) -"Hb" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/item/weapon/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/weapon/clipboard, -/obj/item/weapon/pen, -/obj/item/device/taperecorder, -/obj/item/weapon/folder, -/obj/item/weapon/stamp, -/turf/simulated/floor/tiled/neutral, -/area/surface/outpost/research/xenoarcheology) -"Hc" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"Hg" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/analysis) -"Hp" = ( -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/cave/explored/normal) -"Hv" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"Hz" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"HE" = ( -/obj/structure/reagent_dispensers/coolanttank, -/obj/effect/floor_decal/corner/lime{ - dir = 4 - }, -/obj/machinery/light{ +"dD" = ( +/obj/effect/floor_decal/industrial/warning/dust{ dir = 1 }, +/obj/machinery/floodlight, +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outpost/mining_main/cave) +"dE" = ( +/obj/machinery/artifact_scanpad, /turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"HK" = ( -/obj/structure/reagent_dispensers/coolanttank, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"HQ" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/cave/unexplored/deep) -"Ib" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"Ic" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"Ih" = ( -/obj/structure/table/reinforced, -/obj/item/device/flashlight/lamp, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"Ir" = ( -/obj/effect/floor_decal/corner/beige, +"dF" = ( +/obj/machinery/artifact_analyser, /turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"Iz" = ( +/area/surface/outpost/research/xenoarcheology/anomaly) +"dG" = ( +/obj/machinery/artifact_harvester, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/bluegrid, +/area/surface/outpost/research/xenoarcheology/anomaly) +"dH" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/anomaly) +"dJ" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/high, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 2; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outpost/mining_main/cave) +"dK" = ( +/obj/machinery/computer/crew{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/medical) +"dL" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -2958,28 +1870,116 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology/medical) -"IB" = ( +"dM" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/o2, +/obj/machinery/vending/wallmed1{ + name = "NanoMed Wall"; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/medical) +"dN" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/medical) +"dO" = ( +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology) +"dP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology) +"dQ" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/weapon/clipboard, +/obj/item/weapon/pen, +/obj/item/device/taperecorder, +/obj/item/weapon/folder, +/obj/item/weapon/stamp, +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology) +"dR" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"dS" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"dT" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"dU" = ( /obj/structure/table/reinforced, -/obj/item/clothing/gloves/sterile/latex, +/obj/item/device/flashlight/lamp, /obj/structure/window/reinforced{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/item/weapon/storage/box/monkeycubes, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"IH" = ( -/obj/machinery/door/airlock/voidcraft{ - name = "Wilderness Containment" +"dV" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 }, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"IW" = ( +/obj/item/weapon/cell/high, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 2; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outpost/mining_main/cave) +"dW" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8 }, @@ -2989,11 +1989,7 @@ }, /turf/simulated/floor/plating, /area/surface/outpost/research/xenoarcheology/anomaly) -"Jl" = ( -/obj/item/weapon/banner/nt, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"Jn" = ( +"dX" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -3005,10 +2001,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"Jr" = ( -/turf/simulated/wall, -/area/surface/outpost/research/xenoarcheology/emergencystorage) -"JI" = ( +"dY" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 }, @@ -3024,7 +2017,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"JS" = ( +"dZ" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/structure/cable/blue{ d1 = 4; @@ -3033,43 +2026,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"Ka" = ( -/obj/structure/table/steel, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"Kv" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock{ - name = "Emergency Storage" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/emergencystorage) -"Kx" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 5; - tag_north = 1; - tag_south = 2 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"KC" = ( -/obj/item/weapon/banner/virgov, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"KF" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/research/xenoarcheology/emergencystorage) -"KI" = ( +"ea" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/wingrille_spawn/reinforced, /obj/structure/cable/blue{ @@ -3079,7 +2036,7 @@ }, /turf/simulated/floor/plating, /area/surface/outpost/research/xenoarcheology/isolation_b) -"KK" = ( +"eb" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -3095,44 +2052,52 @@ }, /turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_b) -"KX" = ( -/obj/structure/closet/crate, -/obj/item/stack/material/phoron{ - amount = 25 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"Ld" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "isolation_one"; - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_c) -"Lv" = ( +"ec" = ( /obj/machinery/artifact_scanpad, /turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_b) -"LE" = ( +"ed" = ( /obj/machinery/artifact_analyser, /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_b) -"LI" = ( +"ee" = ( /obj/machinery/door/blast/regular{ id = "xenoarch_cell2" }, /turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_b) -"LJ" = ( +"ef" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/surface/outpost/wall/checkpoint) +"eg" = ( +/obj/structure/showcase/sign{ + pixel_y = -5 + }, +/turf/simulated/shuttle/wall/voidcraft, +/area/surface/outpost/wall/checkpoint) +"eh" = ( +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/outpost/research/xenoarcheology/exterior) +"ei" = ( +/obj/item/weapon/banner/nt, +/obj/effect/zone_divider, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/outpost/research/xenoarcheology/exterior) +"ej" = ( +/obj/structure/sign/greencross{ + desc = "White cross in a green field, you can get medical aid here."; + name = "First-Aid" + }, +/turf/simulated/wall, +/area/surface/outpost/research/xenoarcheology/medical) +"ek" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/neutral, /area/surface/outpost/research/xenoarcheology) -"LK" = ( +"el" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/blue{ d1 = 1; @@ -3143,47 +2108,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/neutral, /area/surface/outpost/research/xenoarcheology) -"LO" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"LU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"LV" = ( -/obj/machinery/chem_master, -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"Mh" = ( +"em" = ( /obj/structure/table/standard, /obj/structure/window/reinforced, /obj/effect/floor_decal/corner/purple{ @@ -3207,22 +2132,10 @@ }, /turf/simulated/floor/tiled/neutral, /area/surface/outpost/research/xenoarcheology) -"Ml" = ( +"en" = ( /turf/simulated/wall, /area/surface/outpost/research/xenoarcheology) -"Mw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/wall, -/area/surface/outpost/research/xenoarcheology/smes) -"MI" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"Na" = ( +"eo" = ( /obj/effect/floor_decal/corner/purple{ dir = 9 }, @@ -3232,19 +2145,7 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"Nb" = ( -/obj/structure/cable/ender{ - icon_state = "1-2"; - id = "surface_cave" - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-4" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2" - }, -/area/surface/outpost/mining_main/cave) -"Nj" = ( +"ep" = ( /obj/structure/table/reinforced, /obj/machinery/computer/atmoscontrol/laptop{ monitored_alarm_ids = list("isolation_one","isolation_two","isolation_three"); @@ -3259,18 +2160,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"NA" = ( -/obj/structure/curtain/open/shower, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/shower{ - dir = 4; - pixel_x = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"ND" = ( +"eq" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/industrial/outline/grey, /obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ @@ -3278,7 +2168,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"NE" = ( +"er" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, @@ -3289,74 +2179,14 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"NQ" = ( -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"NW" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/research/xenoarcheology/smes) -"NX" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/weapon/storage/firstaid/fire, -/obj/item/weapon/storage/firstaid/adv{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/weapon/storage/firstaid/o2, -/obj/machinery/vending/wallmed1{ - name = "NanoMed Wall"; - pixel_y = -28 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/medical) -"NY" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"NZ" = ( +"es" = ( /obj/machinery/atmospherics/valve/digital/open{ dir = 4 }, /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/plating, /area/surface/outpost/research/xenoarcheology/anomaly) -"Oc" = ( -/obj/structure/cable, -/obj/machinery/power/port_gen/pacman, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"Od" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"Oo" = ( +"et" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, @@ -3367,67 +2197,61 @@ }, /turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_b) -"Op" = ( -/obj/machinery/radiocarbon_spectrometer, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/analysis) -"Or" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/floor_decal/corner/purple, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/anomaly_container, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"OA" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 1; - start_pressure = 740 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"OE" = ( +"eu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, /turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_b) -"ON" = ( +"ev" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 10 }, /turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_b) -"OO" = ( +"ew" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_b) -"OP" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/emergencystorage) -"OS" = ( -/obj/vehicle/train/trolley{ +"ex" = ( +/obj/effect/zone_divider, +/turf/simulated/wall/solidrock, +/area/surface/outpost/wall) +"ey" = ( +/obj/structure/table/steel, +/obj/item/weapon/tool/screwdriver, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/wrench, +/obj/effect/floor_decal/industrial/warning/dust{ dir = 1 }, /turf/simulated/floor/tiled/asteroid_steel, /area/surface/outpost/mining_main/cave) -"OV" = ( +"ez" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology) +"eA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/camera/network/research_outpost{ + c_tag = "OPR - Xenoarch Airlock 1"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology) +"eB" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"eC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/blue{ d1 = 1; @@ -3440,34 +2264,28 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"Pe" = ( +"eD" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/corner/purple{ dir = 5 }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"Pk" = ( +"eE" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/corner/purple{ dir = 5 }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"Pp" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/outpost/mining_main/cave) -"Pt" = ( +"eF" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/corner/purple{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"Px" = ( +"eG" = ( /obj/structure/table/reinforced, /obj/item/weapon/paper_bin, /obj/item/device/camera, @@ -3481,7 +2299,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"PC" = ( +"eH" = ( /obj/structure/table/reinforced, /obj/item/weapon/folder, /obj/item/weapon/pen, @@ -3494,49 +2312,7 @@ /obj/item/device/geiger, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"PD" = ( -/obj/machinery/mining/drill/loaded, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/outpost/mining_main/cave) -"PE" = ( -/obj/item/stack/nanopaste, -/obj/item/stack/nanopaste, -/obj/item/stack/nanopaste, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/structure/closet/crate/secure/science{ - req_access = list(65) - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/analysis) -"PF" = ( -/obj/structure/table/rack, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/weapon/storage/toolbox/emergency, -/obj/item/weapon/storage/firstaid/regular, -/obj/random/medical/lite, -/obj/structure/extinguisher_cabinet{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/medical) -"PO" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/heavyduty{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"PR" = ( +"eI" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4 }, @@ -3544,7 +2320,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/surface/outpost/research/xenoarcheology/anomaly) -"PT" = ( +"eJ" = ( /obj/structure/window/reinforced, /obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ @@ -3552,7 +2328,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"PW" = ( +"eK" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, @@ -3563,31 +2339,25 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"PY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"PZ" = ( +"eL" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"Qm" = ( +"eM" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/wingrille_spawn/reinforced, /turf/simulated/floor/plating, /area/surface/outpost/research/xenoarcheology/isolation_b) -"Qn" = ( +"eN" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 4 }, /obj/machinery/light, /turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_b) -"Qx" = ( +"eO" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/yellow, /obj/machinery/alarm/monitor/isolation{ alarm_id = "isolation_two"; @@ -3596,7 +2366,7 @@ }, /turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_b) -"QA" = ( +"eP" = ( /obj/machinery/atmospherics/unary/vent_scrubber{ dir = 8 }, @@ -3606,19 +2376,61 @@ }, /turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_b) -"QC" = ( +"eQ" = ( +/obj/machinery/door/airlock/research{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "xenoarch1_airlock_exterior"; + locked = 1; + name = "Research Exterior Airlock" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "xenoarch1_airlock_control"; + name = "Xenoarch Access Button"; + pixel_y = -24; + req_access = null + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology) +"eR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/rust/part_rusted1, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology) +"eS" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology) -"QG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 +"eT" = ( +/obj/machinery/door/airlock/research{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "xenoarch1_airlock_interior"; + locked = 1; + name = "Research Interior Airlock" }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"QL" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "xenoarch1_airlock_control"; + name = "Research Access Button"; + pixel_x = -6; + pixel_y = -26; + req_access = null + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology) +"eU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -3632,51 +2444,13 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"QS" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Isolation Cell 3"; - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_c) -"Rb" = ( -/obj/machinery/power/smes/buildable/outpost_substation{ - RCon_tag = "Outpost - Xenoarch"; - charge = 500000; - input_attempt = 1; - input_level = 150000; - output_level = 150000 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"Rm" = ( +"eV" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"Rz" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"RB" = ( +"eW" = ( /obj/structure/cable/blue{ d1 = 2; d2 = 4; @@ -3693,35 +2467,7 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"RK" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2" - }, -/area/surface/outpost/mining_main/cave) -"RV" = ( -/obj/effect/map_effect/portal/master/side_b/caves_to_plains{ - dir = 1 - }, -/turf/simulated/wall/solidrock, -/area/surface/cave/unexplored/normal) -"RW" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"Se" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/obj/structure/dispenser/oxygen, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"Sh" = ( -/obj/item/weapon/banner/nt, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/outpost/research/xenoarcheology/exterior) -"Sn" = ( +"eX" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -3733,7 +2479,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"Sp" = ( +"eY" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/blue{ d1 = 4; @@ -3748,7 +2494,7 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"Sw" = ( +"eZ" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -3760,15 +2506,7 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"ST" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 7; - tag_north = 1; - tag_south = 2 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"SX" = ( +"fa" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 8; @@ -3789,19 +2527,7 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"SY" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 1 - }, -/turf/simulated/wall/solidrock, -/area/surface/cave/unexplored/normal) -"Tb" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/outpost/mining_main/cave) -"Te" = ( +"fb" = ( /obj/effect/floor_decal/corner/purple{ dir = 6 }, @@ -3811,20 +2537,7 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"Tf" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"Tm" = ( -/obj/machinery/artifact_harvester, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/ai_status_display{ - pixel_x = -32 - }, -/turf/simulated/floor/bluegrid, -/area/surface/outpost/research/xenoarcheology/anomaly) -"To" = ( +"fe" = ( /obj/item/weapon/anobattery{ pixel_x = -6; pixel_y = 2 @@ -3844,7 +2557,7 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology/anomaly) -"Tp" = ( +"ff" = ( /obj/item/weapon/anodevice{ pixel_x = 3; pixel_y = 3 @@ -3853,14 +2566,14 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology/anomaly) -"Tu" = ( +"fg" = ( /obj/machinery/artifact_harvester, /obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ dir = 8 }, /turf/simulated/floor/bluegrid, /area/surface/outpost/research/xenoarcheology/anomaly) -"Tw" = ( +"fh" = ( /obj/effect/floor_decal/industrial/warning/full, /obj/structure/cable/blue{ d1 = 1; @@ -3872,7 +2585,7 @@ }, /turf/simulated/floor/plating, /area/surface/outpost/research/xenoarcheology/anomaly) -"Tx" = ( +"fi" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, @@ -3882,10 +2595,50 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"Ty" = ( +"fj" = ( /turf/simulated/wall/r_wall, /area/surface/outpost/research/xenoarcheology/isolation_b) -"TF" = ( +"fk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology) +"fl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology) +"fm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"fn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/noticeboard/anomaly{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"fo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/blue{ d1 = 1; @@ -3895,7 +2648,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"TH" = ( +"fp" = ( /obj/effect/floor_decal/corner/purple, /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 @@ -3903,25 +2656,20 @@ /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"TN" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/medical) -"Ud" = ( +"fq" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/corner/purple{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"Uo" = ( +"fr" = ( /obj/effect/floor_decal/corner/purple{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"Uq" = ( +"fs" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 2; @@ -3933,22 +2681,7 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"Us" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"Uz" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2" - }, -/area/surface/outpost/mining_main/cave) -"UB" = ( +"ft" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -3957,22 +2690,17 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"UE" = ( +"fu" = ( /obj/machinery/artifact_scanpad, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/bluegrid, /area/surface/outpost/research/xenoarcheology/anomaly) -"UF" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/isolation_c) -"Vr" = ( +"fv" = ( /obj/machinery/artifact_scanpad, /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /turf/simulated/floor/bluegrid, /area/surface/outpost/research/xenoarcheology/anomaly) -"Vx" = ( +"fw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -3986,7 +2714,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"Vz" = ( +"fx" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -4001,7 +2729,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"VA" = ( +"fy" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/wingrille_spawn/reinforced, /obj/structure/cable/blue{ @@ -4011,7 +2739,7 @@ }, /turf/simulated/floor/plating, /area/surface/outpost/research/xenoarcheology/isolation_c) -"VH" = ( +"fz" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -4027,45 +2755,33 @@ }, /turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_c) -"VI" = ( +"fA" = ( /obj/machinery/artifact_scanpad, /turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_c) -"VU" = ( +"fB" = ( /obj/machinery/artifact_analyser, /turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_c) -"VW" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/research/xenoarcheology/analysis) -"Ww" = ( -/obj/structure/sign/greencross{ - desc = "White cross in a green field, you can get medical aid here."; - name = "First-Aid" - }, -/turf/simulated/wall, -/area/surface/outpost/research/xenoarcheology/medical) -"WD" = ( +"fC" = ( /turf/simulated/wall/r_wall, /area/surface/outpost/research/xenoarcheology/isolation_c) -"WQ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +"fD" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/smes) +"fE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"Xc" = ( +/turf/simulated/wall, +/area/surface/outpost/research/xenoarcheology/smes) +"fF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/wall, /area/surface/outpost/research/xenoarcheology/smes) -"Xl" = ( +"fG" = ( /obj/machinery/door/firedoor/border_only, /obj/machinery/atmospherics/pipe/simple/hidden/universal, /obj/structure/cable/blue{ @@ -4079,46 +2795,11 @@ }, /turf/simulated/floor/plating, /area/surface/outpost/research/xenoarcheology/smes) -"XA" = ( +"fH" = ( /obj/structure/sign/warning/high_voltage, /turf/simulated/wall, /area/surface/outpost/research/xenoarcheology/smes) -"XI" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/cave) -"XL" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/obj/effect/floor_decal/corner/beige/full, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"XR" = ( -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/outpost/mining_main/cave) -"Yd" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2" - }, -/area/surface/outpost/research/xenoarcheology/exterior) -"Yg" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 1 - }, -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/cave) -"Yl" = ( +"fI" = ( /obj/machinery/recharge_station, /obj/effect/floor_decal/corner/purple{ dir = 9 @@ -4128,7 +2809,7 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"Yt" = ( +"fJ" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 2; @@ -4147,7 +2828,7 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"Yz" = ( +"fK" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -4165,7 +2846,7 @@ }, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology) -"YB" = ( +"fL" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -4184,16 +2865,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"YE" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/outpost/research/xenoarcheology/exterior) -"YG" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/research/xenoarcheology/medical) -"YH" = ( +"fM" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -4208,11 +2880,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"YT" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/cave/explored/deep) -"Za" = ( +"fN" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -4229,7 +2897,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"Zd" = ( +"fO" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -4241,7 +2909,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"Zj" = ( +"fP" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -4251,7 +2919,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"Zm" = ( +"fQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, @@ -4263,28 +2931,7 @@ }, /turf/simulated/floor/tiled, /area/surface/outpost/research/xenoarcheology/anomaly) -"Zr" = ( -/obj/item/stack/flag/red{ - amount = 1 - }, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/cave/explored/deep) -"Zt" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 1 - }, -/obj/effect/map_effect/perma_light/concentrated/incandescent, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2" - }, -/area/surface/outpost/mining_main/cave) -"Zw" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/outpost/research/xenoarcheology/exterior) -"Zy" = ( +"fR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, @@ -4295,22 +2942,85 @@ }, /turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_c) -"ZB" = ( +"fS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, /turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_c) -"ZD" = ( +"fT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 10 }, /turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_c) -"ZE" = ( +"fU" = ( /turf/simulated/floor/reinforced, /area/surface/outpost/research/xenoarcheology/isolation_c) -"ZJ" = ( +"fV" = ( +/obj/machinery/power/smes/buildable/outpost_substation{ + RCon_tag = "Outpost - Xenoarch"; + charge = 500000; + input_attempt = 1; + input_level = 150000; + output_level = 150000 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"fW" = ( +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/anomaly_container, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"fX" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/steel, +/obj/random/tool, +/obj/random/tool, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/machinery/camera/network/research_outpost{ + c_tag = "OPR - Xenoarchaeology SMES" + }, +/obj/item/weapon/airlock_electronics, +/obj/item/weapon/airlock_electronics, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"fY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/steel, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"fZ" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -4325,7 +3035,7 @@ /obj/structure/anomaly_container, /turf/simulated/floor/plating, /area/surface/outpost/research/xenoarcheology/smes) -"ZQ" = ( +"ga" = ( /obj/machinery/atmospherics/binary/pump/on{ target_pressure = 200 }, @@ -4344,66059 +3054,67402 @@ }, /turf/simulated/floor/plating, /area/surface/outpost/research/xenoarcheology/smes) -"ZR" = ( +"gb" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/random/powercell, +/obj/random/maintenance/clean, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_x = 36 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"gc" = ( +/turf/simulated/wall, +/area/surface/outpost/research/xenoarcheology/smes) +"gd" = ( +/turf/simulated/wall, +/area/surface/outpost/research/xenoarcheology/restroom) +"ge" = ( +/obj/machinery/door/airlock{ + name = "Research Restroom" + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/research/xenoarcheology/restroom) +"gf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/camera/network/research_outpost{ + c_tag = "OPR - Anomalous Materials 1"; + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -21 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/anomaly) +"gg" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/anomaly) +"gh" = ( +/obj/machinery/atmospherics/unary/heater{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/anomaly) +"gi" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 1; + icon_state = "freezer" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/anomaly) +"gj" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/purple, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/anomaly_container, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/anomaly) +"gk" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/isolation_c) +"gl" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_c) +"gm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, +/obj/machinery/alarm/monitor/isolation{ + alarm_id = "isolation_one"; + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_c) +"gn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8 + }, +/obj/machinery/camera/network/research_outpost{ + c_tag = "OPR - Isolation Cell 3"; + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_c) +"go" = ( +/obj/item/stack/flag/green, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/cave/explored/deep) +"gp" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outpost/mining_main/cave) +"gq" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outpost/mining_main/cave) +"gr" = ( +/obj/item/stack/flag/red{ + amount = 1 + }, +/obj/effect/zone_divider, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/cave/explored/deep) +"gs" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outpost/mining_main/cave) +"gt" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outpost/mining_main/cave) +"gu" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/heavyduty{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"gv" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"gw" = ( +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"gx" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1; + target_pressure = 200 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"gy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"gz" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"gA" = ( +/obj/structure/table/steel, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"gB" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 11; + pixel_y = 24 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/research/xenoarcheology/restroom) +"gC" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/research/xenoarcheology/restroom) +"gD" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/research/xenoarcheology/restroom) +"gE" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/restroom) +"gF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/analysis) +"gG" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Sample Preparation"; + req_access = list(65) + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/surface/outpost/research/xenoarcheology/analysis) -"ZY" = ( +"gH" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Sample Preparation"; + req_access = list(65) + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"gI" = ( +/turf/simulated/wall, +/area/surface/outpost/research/xenoarcheology/analysis) +"gJ" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/analysis) +"gK" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/emergencystorage) +"gL" = ( +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"gM" = ( +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/research/xenoarcheology/exterior) +"gN" = ( +/obj/structure/cable, +/obj/machinery/power/port_gen/pacman, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"gO" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"gP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"gQ" = ( +/obj/machinery/atmospherics/binary/pump, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"gR" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 7; + tag_north = 1; + tag_south = 2 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"gS" = ( +/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"gT" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/research/xenoarcheology/restroom) +"gU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/research/xenoarcheology/restroom) +"gV" = ( +/obj/structure/table/standard, +/obj/item/weapon/towel{ + color = "#800080"; + name = "purple towel" + }, +/obj/item/weapon/towel{ + color = "#800080"; + name = "purple towel" + }, +/obj/item/weapon/towel{ + color = "#800080"; + name = "purple towel" + }, +/obj/random/soap, +/obj/random/soap, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/research/xenoarcheology/restroom) +"gW" = ( +/obj/item/weapon/reagent_containers/glass/bottle/toxin, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric{ + name = "beaker 'sulphuric acid'" + }, +/obj/structure/table/glass, +/obj/effect/floor_decal/corner/beige{ + dir = 9 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + pixel_x = -36 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"gX" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"gY" = ( +/obj/effect/floor_decal/corner/beige{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"gZ" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/research_outpost{ + c_tag = "OPR - Sample Preparation" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"ha" = ( +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"hb" = ( +/obj/structure/reagent_dispensers/coolanttank, +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"hc" = ( +/obj/structure/reagent_dispensers/coolanttank, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"hd" = ( +/turf/simulated/wall, +/area/surface/outpost/research/xenoarcheology/emergencystorage) +"he" = ( +/obj/machinery/space_heater, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/emergencystorage) +"hf" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/emergencystorage) +"hg" = ( +/obj/structure/closet/crate, +/obj/item/stack/material/phoron{ + amount = 25 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"hh" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"hi" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"hj" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 5; + tag_north = 1; + tag_south = 2 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"hk" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"hl" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/research/xenoarcheology/restroom) +"hm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/research/xenoarcheology/restroom) +"hn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/research/xenoarcheology/restroom) +"ho" = ( +/obj/machinery/chemical_dispenser/full, +/obj/structure/sign/warning/nosmoking_2{ + pixel_x = -32 + }, +/obj/effect/floor_decal/corner/beige{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"hp" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"hq" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"hr" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/door/window/westright, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"hs" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"ht" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"hu" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"hv" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock{ + name = "Emergency Storage" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/emergencystorage) +"hw" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/emergencystorage) +"hx" = ( +/obj/item/weapon/weldpack, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/emergencystorage) +"hy" = ( +/obj/structure/closet/toolcloset, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"hz" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/sterile/latex, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/item/weapon/storage/box/monkeycubes, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/anomaly) +"hA" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"hB" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"hC" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 6; + tag_north = 1; + tag_west = 2 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"hD" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"hE" = ( +/obj/structure/curtain/open/shower, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/shower{ + dir = 4; + pixel_x = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/research/xenoarcheology/restroom) +"hF" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/machinery/recharge_station, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/research/xenoarcheology/restroom) +"hG" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/research/xenoarcheology/restroom) +"hH" = ( +/obj/machinery/chem_master, +/obj/effect/floor_decal/corner/beige{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"hI" = ( +/obj/item/weapon/stool/padded, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"hJ" = ( +/obj/effect/floor_decal/corner/beige, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"hK" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"hL" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"hM" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"hN" = ( +/obj/item/clothing/glasses/meson, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/emergencystorage) +"hO" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/emergencystorage) +"hP" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"hQ" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1; + start_pressure = 740 + }, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"hR" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1; + start_pressure = 740 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"hS" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1; + start_pressure = 740 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"hT" = ( +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"hU" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"hV" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -21 + }, +/obj/effect/floor_decal/corner/beige/full, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"hW" = ( +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper{ + pixel_y = -4 + }, +/obj/structure/table/glass, +/obj/effect/floor_decal/corner/beige{ + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"hX" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/beige/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"hY" = ( +/obj/machinery/radiocarbon_spectrometer, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/analysis) +"hZ" = ( +/obj/item/stack/nanopaste, +/obj/item/stack/nanopaste, +/obj/item/stack/nanopaste, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/structure/closet/crate/secure/science{ + req_access = list(65) + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/analysis) +"ia" = ( +/obj/machinery/radiocarbon_spectrometer, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/analysis) +"ib" = ( +/obj/machinery/radiocarbon_spectrometer, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/analysis) +"ic" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/clothing/accessory/armband/science, +/obj/item/clothing/glasses/science, +/obj/item/device/suit_cooling_unit, +/obj/item/weapon/extinguisher, +/obj/item/device/flashlight, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/emergencystorage) +"id" = ( +/obj/effect/zone_divider, +/turf/simulated/mineral/sif, +/area/surface/cave/unexplored/deep) +"ie" = ( +/obj/effect/zone_divider, +/turf/simulated/mineral/sif, +/area/surface/cave/unexplored/normal) +"if" = ( +/obj/item/stack/flag/green, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/cave/explored/normal) +"ig" = ( +/obj/item/stack/flag/red{ + amount = 1 + }, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/cave/explored/normal) +"ih" = ( +/obj/structure/table/standard, +/obj/item/weapon/flame/lighter/random, +/obj/item/weapon/tool/crowbar, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"ii" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outpost/mining_main/cave) +"ij" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/mining_main/cave) +"ik" = ( +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outpost/mining_main/cave) +"il" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/research/xenoarcheology/exterior) +"im" = ( +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outpost/mining_main/cave) +"in" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/mining_main/cave) +"io" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"ip" = ( +/obj/effect/map_effect/portal/line/side_b{ + dir = 1 + }, +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/cave) +"iq" = ( +/obj/vehicle/train/engine{ + dir = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outpost/mining_main/cave) +"ir" = ( /obj/machinery/mining/brace, /turf/simulated/floor/tiled/asteroid_steel, /area/surface/outpost/mining_main/cave) +"is" = ( +/obj/machinery/mining/drill, +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outpost/mining_main/cave) +"it" = ( +/obj/vehicle/train/trolley{ + dir = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outpost/mining_main/cave) +"iw" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/heavyduty{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outpost/mining_main/cave) +"ix" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outpost/mining_main/cave) +"iz" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outpost/mining_main/cave) +"iA" = ( +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/mining_main/cave) +"iB" = ( +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/surface/outpost/wall) +"iH" = ( +/obj/effect/map_effect/portal/master/side_b/caves_to_plains/river{ + dir = 1 + }, +/turf/simulated/wall/solidrock, +/area/surface/cave/unexplored/normal) +"ky" = ( +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/cave/explored/deep) +"kQ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/zone_divider, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/mining_main/cave) +"kX" = ( +/turf/simulated/wall/solidrock, +/area/surface/outpost/wall/checkpoint) +"ld" = ( +/obj/effect/zone_divider, +/obj/effect/zone_divider, +/turf/simulated/mineral/sif, +/area/surface/cave/unexplored/normal) +"lV" = ( +/obj/effect/zone_divider, +/obj/effect/zone_divider, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/cave/explored/normal) +"md" = ( +/turf/simulated/wall/solidrock, +/area/surface/cave/unexplored/normal) +"nx" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/outpost/research/xenoarcheology/exterior) +"og" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/mining_main/cave) +"ot" = ( +/obj/effect/zone_divider, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/cave/explored/deep) +"oy" = ( +/obj/item/stack/flag/green, +/obj/effect/zone_divider, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/cave/explored/deep) +"pQ" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"pV" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Outpost Maintenance Hatch"; + normalspeed = 0; + req_one_access = list(1,5,10,12,31,47,48,50) + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/research/xenoarcheology/exterior) +"qC" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/surface/outpost/wall/checkpoint) +"qH" = ( +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/surface/outpost/wall/checkpoint) +"rd" = ( +/obj/effect/map_effect/portal/line/side_a, +/turf/simulated/wall/solidrock, +/area/surface/outpost/wall) +"sj" = ( +/obj/effect/map_effect/portal/master/side_a/caves_to_wilderness, +/turf/simulated/wall/solidrock, +/area/surface/outpost/wall) +"tf" = ( +/obj/effect/zone_divider, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/outpost/research/xenoarcheology/exterior) +"tl" = ( +/obj/structure/cable/heavyduty{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/research/xenoarcheology/exterior) +"xh" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/mining_main/cave) +"zJ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/research/xenoarcheology/exterior) +"zL" = ( +/obj/effect/zone_divider, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/cave/explored/normal) +"BT" = ( +/obj/effect/map_effect/portal/line/side_b{ + dir = 1 + }, +/obj/effect/map_effect/perma_light/concentrated/incandescent, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/mining_main/cave) +"Co" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/mining_main/cave) +"Cx" = ( +/obj/effect/map_effect/portal/line/side_b{ + dir = 1 + }, +/turf/simulated/wall/solidrock, +/area/surface/cave/unexplored/normal) +"Dg" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/zone_divider, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/research/xenoarcheology/exterior) +"EC" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/outpost/research/xenoarcheology/exterior) +"EJ" = ( +/obj/item/weapon/banner/nt, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/cave/explored/deep) +"EX" = ( +/obj/effect/zone_divider, +/obj/effect/zone_divider, +/turf/simulated/mineral/sif, +/area/surface/cave/unexplored/deep) +"FH" = ( +/obj/item/weapon/banner/virgov, +/obj/effect/zone_divider, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/cave/explored/deep) +"FU" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/outpost/research/xenoarcheology/exterior) +"Hs" = ( +/obj/effect/map_effect/portal/master/side_b/caves_to_plains{ + dir = 1 + }, +/turf/simulated/wall/solidrock, +/area/surface/cave/unexplored/normal) +"Jk" = ( +/obj/effect/map_effect/portal/line/side_a, +/turf/simulated/wall/solidrock, +/area/surface/outpost/wall/checkpoint) +"Nm" = ( +/obj/effect/map_effect/portal/line/side_b{ + dir = 1 + }, +/obj/effect/map_effect/perma_light/concentrated/incandescent, +/obj/effect/zone_divider, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/mining_main/cave) +"NL" = ( +/obj/effect/zone_divider, +/obj/effect/zone_divider, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/cave/explored/deep) +"Ox" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/surface/cave/explored/deep) +"Ph" = ( +/obj/machinery/light/small, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/outpost/research/xenoarcheology/exterior) +"PH" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/bulbs{ + pixel_y = 5 + }, +/obj/item/weapon/storage/toolbox/emergency{ + pixel_y = 3; + starts_with = list(/obj/item/weapon/tool/crowbar/red,/obj/item/weapon/extinguisher/mini,/obj/item/device/radio,/obj/item/weapon/light/bulb) + }, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/research/xenoarcheology/exterior) +"Qy" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/research/xenoarcheology/exterior) +"RX" = ( +/obj/structure/cable/ender{ + icon_state = "1-2"; + id = "surface_cave" + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/mining_main/cave) +"Ug" = ( +/obj/effect/map_effect/portal/master/side_a/caves_to_wilderness/river, +/turf/simulated/wall/solidrock, +/area/surface/outpost/wall) +"VK" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/mining_main/cave) +"VP" = ( +/obj/effect/map_effect/portal/line/side_b{ + dir = 1 + }, +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"YY" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/research/xenoarcheology/exterior) +"Zo" = ( +/obj/item/stack/flag/green, +/obj/effect/zone_divider, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/cave/explored/normal) (1,1,1) = {" -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ax -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ax -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ax -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ex +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ex +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ex +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ex +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ex +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ex +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ex +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa "} (2,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (3,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (4,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (5,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (6,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (7,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (8,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (9,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (10,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (11,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (12,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (13,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (14,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (15,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (16,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (17,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (18,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (19,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (20,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (21,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (22,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (23,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -iy -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (24,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (25,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (26,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (27,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (28,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (29,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (30,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (31,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (32,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +ex +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +EX +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +EX +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +EX +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +EX +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ld +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +zL +zL +zL +zL +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ld +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ld +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ex "} (33,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (34,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (35,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (36,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (37,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (38,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (39,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (40,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (41,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (42,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (43,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (44,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (45,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (46,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (47,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -bE -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (48,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (49,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -bE -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (50,1,1) = {" -ac -bt -bt -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -bE -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (51,1,1) = {" -ad -bt -bt -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -bE -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (52,1,1) = {" -aq -bu -bu -bu -EZ -Jl -nu -nu -nu -bE -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -bE -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (53,1,1) = {" -aw -kk -kk -xX -IH -kk -kk -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -bE -nu -nu -nu -nu -nu -nu -nu -iy -HQ -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (54,1,1) = {" -aw -kk -kk -kk -wd -kk -kk -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -HQ -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (55,1,1) = {" -aw -kk -kk -zV -IH -kk -kk -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -HQ -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (56,1,1) = {" -aq -bu -bu -bu -EZ -KC -nu -nu -nu -bE -nu -nu -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -YT -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (57,1,1) = {" -ad -bt -bt -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -bE -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -YT -nu -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (58,1,1) = {" -ad -bt -bt -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -YT -nu -bE -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -sb -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (59,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -YT -nu -nu -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (60,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -bE -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -YT -nu -nu -nu -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -bE -nu -nu -nu -nu -nu -nu -nu -nu -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (61,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -bE -YT -nu -nu -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -Hp -mI -sb -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (62,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -YT -nu -nu -nu -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -nu -iy -Hp -mI -mI -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (63,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -YT -nu -nu -nu -nu -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -bE -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (64,1,1) = {" -ax -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -YT -YT -YT -YT -YT -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -ha -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -Ec -YT -YT -YT -YT -YT -YT -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -ha -HQ -YT -YT -YT -HQ -HQ -HQ -YT -YT -YT -YT -YT -HQ -HQ -HQ -YT -YT -YT -YT -YT -YT -YT -YT -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -rM -rM -rM -rM -BO -BO -BO -BO -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -BO -BO -BO -BO -BO -zy -rM -rM -rM -rM -rM -rM -CP -rM -rM -BO -BO -BO -BO -BO -rM -rM -rM -rM -BO -BO -BO -BO -BO -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -ax +ex +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +EX +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +EX +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +EX +id +id +id +id +id +id +id +id +id +id +ot +ot +ot +ot +ot +ot +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +EX +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ld +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ld +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ld +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ex "} (65,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -nu -nu -nu -nu -iy -iy -iy -nu -nu -nu -nu -bE -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -rM -sb -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (66,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -bE -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -nu -nu -nu -nu -nu -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -BO -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (67,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -bE -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -bE -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -nu -nu -nu -nu -iy -iy -nu -nu -nu -nu -nu -bE -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -Hp -Hp -mI -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -BO -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (68,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -nu -nu -nu -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -BO -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (69,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -bE -YT -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -nu -nu -nu -nu -bE -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -BO -sb -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -Hp -Hp -sb -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (70,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -YT -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -iy -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -sb -Hp -Hp -mI -mI -mI -mI -rM -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (71,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -rM -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (72,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -nu -nu -bE -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -sb -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -Hp -sb -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (73,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -bE -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (74,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -Hp -Hp -Hp -Hp -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (75,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -sb -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -Hp -Hp -Hp -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (76,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -bE -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -Hp -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -Hp -Hp -Hp -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (77,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -Hp -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -Hp -Hp -mI -mI -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (78,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -Hp -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -Hp -Hp -Hp -mI -mI -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -sb -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (79,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -iy -nu -nu -nu -nu -nu -bE -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -iy -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -Hp -Hp -Hp -mI -mI -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (80,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -bE -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (81,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -bE -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -sb -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (82,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -bE -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -sb -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (83,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (84,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (85,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -bE -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -Hp -Hp -Hp -Hp -sb -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -Hp -Hp -Hp -Hp -mI -mI -mI -mI -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (86,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -Hp -Hp -Hp -mI -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (87,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -Hp -mI -mI -mI -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (88,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -mI -mI -mI -mI -mI -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ot +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (89,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -mI -mI -mI -mI -mI -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ot +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (90,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -bE -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ot +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ie +af +af +af +af +af +ae +ae +ae +ae +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (91,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ot +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +ae +ae +ae +af +af +af +af +af +zL +af +af +af +af +af +ae +ae +ae +ae +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (92,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -bE -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ot +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +ae +af +af +af +af +af +zL +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (93,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -nu -iy -iy -iy -iy -iy -iy -iy -nu -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ot +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +zL +af +ae +ae +ae +ae +af +af +af +af +af +ae +ae +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (94,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -nu -iy -iy -iy -iy -nu -YT -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ot +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (95,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -YT -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -bE -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -XI -ig -Tb -Tb -Tb -Tb -Tb -Tb -Tb -Tb -cS -XI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ot +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +if +af +if +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +ae +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (96,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -YT -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -tu -XR -XR -XR -ZY -XR -ZY -XR -ZY -XR -XR -Gs -mI -mI -mI -mI -mI -mI -mI -ns +ex +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +EX +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +EX +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +ot +ot +ot +ot +NL +ot +ot +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +EX +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +zL +ie +ie +ie +ie +ld +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +zL +ie +ie +ie +zL +zL +zL +zL +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ld +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ld +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ex "} (97,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -YT -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -YT -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -os -XR -XR -XR -PD -XR -PD -XR -PD -XR -XR -Gs -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ot +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +ae +ae +ae +ae +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (98,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -nu -iy -iy -iy -YT -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -YT -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -sb -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -tl -XR -XR -XR -ZY -XR -ZY -XR -ZY -XR -zs -XI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ot +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +ae +ae +ae +ae +ae +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (99,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -iy -iy -YT -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -YT -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -zk -XR -XR -XR -XR -XR -XR -XR -XR -XR -rE -Gs -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ot +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (100,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -YT -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -sb -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -tu -XR -XR -XR -zm -OS -OS -OS -XR -XR -rE -Gs -mI -mI -mI -mI -mI -jP -RV -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ot +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +ae +ae +ae +ae +ie +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (101,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -YT -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -XI -bw -Pp -Pp -Pp -Pp -Pp -Pp -Pp -Pp -zb -XI -mI -mI -mI -mI -mI -jP -SY -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +id +ab +ab +ab +ab +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +ae +ae +ae +zL +af +af +af +ae +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (102,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -YT -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -cv -Uz -Uz -Uz -Uz -Uz -Nb -XI -Yg -XI +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +zL +af +ae +ae +ae +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (103,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -YT -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -Hp -Hp -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -Yd -fc -fc -fc -fc -fc -RK -qq -Zt -uY +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +ie +ae +ae +ae +ae +ae +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (104,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -Yd -fc -fc -fc -fc -uY -RK -uY -Zt -uY +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +ae +ae +ae +ie +ae +ae +ae +ae +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (105,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -mI -mI -fc -fc -fc -fK -fc -fc -fc -fc -fc -fc -fc -fK -Sh -Cg -Cg -Cg -Sh -fK -Yd -fc -fc -fc -fc -fc -RK -Dj -Zt -uY +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +ae +ae +ae +ie +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (106,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -mI -fc -fc -fc -RW -RW -RW -RW -RW -RW -YG -YG -YG -YG -YG -hq +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id ae -AC -NW -NW -PO -NW -NW -NW -NW -NW -kN -XI -Yg -XI +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +ae +ae +ie +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (107,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -mI -fc -fc -RW -RW -Se -qW -td -qR -RW -sU -Fd -Em -ah -TN -zl -cF -dO -NW -Rb -Rz -Oc -KX -kV -NW -NW -Yd -jP -SY -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +ae +ie +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (108,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -fc -fc -fc -fc -cH -oe -mv -uo -uo -re -RW -mM -yn -Es -Iz -TN -wZ -QC -nF -NW -dy -NQ -NQ -NQ -NQ -dA -NW -Yd -jP -SY -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +ae +ie +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (109,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -fc -fc -fc -fc -rT -RW -rp -uo -rg -PY -rx -RW -PF -ys -Ez -NX -YG -hq +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae af -AC -NW -bP -NQ -jf -jf -Fq -mj -NW -Yd -oZ -mI -ns +af +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +ae +zL +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (110,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -fc -fc -fc -fc -fc -fc -RW -gc -Fi -FK -bv -rz -RW -AP -AP -EK -TN -Ww -oJ -QL -oo -Mw -yH -Ci -gU -Dv -Tf -OA -NW -CS -gz -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +zL +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (111,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -fc -fc -fc -fc -fc -fc -RW -gm -uo -km -ny -rG -RW -xk -AN -Fo -ih -LJ -oJ -Rm -kA -Xc -ZJ -QG -Ch -MI -lf -pO -NW -FR -gz -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +zL +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (112,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -sb -Hp -fc -fc -fc -fc -fc -fc -cH -gp -iv -uo -nE -rX -RW -xz -AO -aU -GY -LK -OV -RB -TF -Xl -ZQ -zf -ST -Kx -sK -CV -NW -fc -fc -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +zL +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (113,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -fc -fc -fc -bF -bF -bF -dY -gr -iA -kv -nJ -se -RW -xE -AZ -Fp -Hb -Mh -Pe -Sn -TH -XA -CG -Ka -qz -eo -kx -DD -NW -fc -fc -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (114,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -fc -fc -fc -bR -bY -AC -RW -RW -RW -kD -nK -RW -RW -xL -hq -AC -xL -Ml -Pk -Sp -Ud -NW -Cn -cL -cL -cL -cL -NW -NW -fc -fc -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (115,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -fc -fc -fc -bR -bR -hq -ep -gH -hq -kG -nV -sm -ur -xR -Bc -hq -Hc -Na -Pt -Sw -Uo -Yl -cL -LO -WQ -lI -NA -tC -fc -fc -fc -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (116,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -sb -mI -mI -Hp -Hp -Hp -Hp -Hp -mI -Hp -Hp -sb -fc -fc -fc -bU -bU aa -es -gR ab -la -nX -sp -uB -xS -Bh -Fu -Hz -Hz -Hz -SX -Uq -Yt -yP -oR -Ic -LU -pS -tC -Zw -fc -fc -mI -ns +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (117,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -fc -fc -fc -bU -cf -AC -eV -hb -AC -ll -om -sG -uG -yd -Br -hq -Ib -Ib -Ib -Te -UB -Yz -cL -ke -Gn -hW -iD -tC -fc -fc -fc -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +id +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (118,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -fc -fc -fc -bR -bY -AC -fn -fn -fn -ly -ow -fn -fn -yk -fE -fn -fE -ow -fE -fn -fE -YB -fn -tC -cL -cL -cL -VW -VW -fc -fc -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ab +ab +ab +ab +id +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +cv +gp +gs +gs +gs +gs +gs +gs +gs +gs +ii +cv +ae +ae +ae +ae +ae +ae +ae +aa "} (119,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -sb -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -fc -fc -fc -bF -bF -bF -fr -hg -iE -lV -oB -sO -uK -yl -Bu -FD -Ih -Nj -Px -Tm -UE -YH -nc -Hg -tf -ai -LV -XL -VW -fc -fc -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ab +ab +ab +id +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +dD +im +im +im +ir +im +ir +im +ir +im +im +iz +ae +ae +ae +ae +ae +ae +ae +aa "} (120,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -fc -fc -fc -fc -fc -fc -fE -hD -iF -mf -oS -oS -ve -yw -BQ -FV -IB -pb -PC -To -BQ -Za -eZ -tc -lT -NY -Eu -pF -Hg -fc -fc -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ab +ac +ot +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +dV +im +im +im +is +im +is +im +is +im +im +iz +ae +ae +ae +ae +ae +ae +ae +aa "} (121,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -fc -fc -fc -fc -fc -rT -fn -hH -iG -mg -pb -tp -vx -yy -BQ -Gx -IW -pb -PR -Tp -BQ -Zd -kO -Hg -Us -Od -Ir -BH -VW -Zw -fc -mI -ns +aa +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ot +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +go +ac +ac +ac +ac +ac +ot +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +af +af +af +af +af +af +af +af +af +af +zL +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +dJ +im +im +im +ir +im +ir +im +ir +im +iw +cv +ae +ae +ae +ae +ae +ae +ae +aa "} (122,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -fc -fc -fc -fc -fc -fc -fn -hN -ja -mg -pe -tw -vx -yC -BZ -GF -Jn -ND -PT -Tu -Vr -Zj -au -Hg -kT -Gg -ap -sD -VW -fc -fc -mI -ns +sj +ad +ad +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ot +ac +go +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ot +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +ae +af +af +af +af +af +af +af +af +zL +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ey +im +im +im +im +im +im +im +im +im +ix +iz +ae +ae +ae +ae +ae +ae +ae +aa "} (123,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -fc -fc -fc -fc -fc -fc -fE -hR -jq -mg -pb -uh -ag -yY -Cj -GO -JI -NE -PW -Tw -Vx -Zm -pb -nZ -ZR -Hv -pU -PE -Hg -fc -fc -mI -ns +rd +ad +ad +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +go +ac +ac +ac +ac +ac +ac +ac +ot +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ot +af +af +af +af +af +af +ae +af +ae +ae +af +af +af +af +ae +ae +ae +ae +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +zL +af +af +af +af +af +af +ae +ae +ae +ae +ae +dD +im +im +im +iq +it +it +it +im +im +ix +iz +ae +ae +ae +ae +ae +md +Hs +aa "} (124,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -fc -fc -fc -fc -fc -fc -fN -hU -jF -mh -hU -hU -vV -zI -CR -GV -JS -NZ -PZ -Tx -Vz -NZ -Or -jA -HE -bV -oN -Gp -VW -fc -fc -mI -ns +cy +cx +cx +cx +ef +EJ +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ac +go +ac +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ot +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ot +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +ae +ae +zL +af +af +af +af +af +af +af +af +ae +ae +ae +cv +gq +gt +gt +gt +gt +gt +gt +gt +gt +ik +cv +ae +ae +ae +ae +ae +md +Cx +aa "} (125,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -fc -fc -fc -fc -fc -fc -fN +cw +cZ +cZ +cX +dt +cZ +ky +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ot +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ot +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ot +ig +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +if +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae ie -jI -mi -pP -fN -wp -zJ -CY -xb -KI -Oo -Qm -Ty -VA -Zy -UF -VW -HK -Ce -pU -Op -VW -fc -fc -mI -ns +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +if +af +af +if +ae +ae +ie +af +af +af +af +af +af +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +ij +in +in +in +in +in +RX +cv +ip +cv "} (126,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -fc -fc -fc -fc -fc -fN +cw +cZ +cZ +cZ +eg +cZ +ky +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ot +ac +ac +ac +ab +ab +ab +ab +ab +go +ac +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +go +ac +ac +ac +ac +ac +ac +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +ae +ie +ae +ae +af +af +af +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh il -jN -ml -qa -fN -wx -zU -Dr -xb -KK -OE -Qn -Ty -VH -ZB -hO -KF -Jr -Kv -Jr -Jr -KF -fc -fc -mI -ns +eh +eh +eh +eh +eh +VK +Co +BT +iA "} (127,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -fc -fc -fc -fc -rT -fN -it -jQ -na -qe -fN -wJ -zZ -DH -xb -Lv -ON -Qx -Ty -VI -ZD -Ld -KF -kc -OP -sv -jE -KF -Zw -fc -mI -ns +cw +cZ +cZ +cY +dt +cZ +ky +ac +ac +ac +go +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ot +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ac +ac +ac +ac +ac +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +af +af +af +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +ae +ie +ae +ae +af +af +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +il +eh +eh +eh +eh +iA +VK +iA +BT +iA "} (128,1,1) = {" -ax -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -YT -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -ha -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -YT -YT -YT -YT -YT -YT -YT -YT -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -YT -YT -YT -YT -YT -YT -YT -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -ha -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -YT -YT -YT -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -CP -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -BO -BO -BO -BO -BO -BO -BO -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -op -op -op -op -op -fN -fN -jV -nb -qi -fN -wU -Af -DQ -xb -LE -OO -QA -Ty -VU -ZE -QS -KF -wK -Fj -Cr -KF -KF -op -op -rM -ax +cy +cx +cx +cx +ef +FH +ot +ot +ot +ot +ot +ot +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +EX +id +ot +ot +ot +ot +ot +ot +ot +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +oy +ot +ot +ot +ot +EX +id +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +id +id +id +id +id +id +ot +ot +ot +ot +ot +ot +NL +ot +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +EX +ie +ie +ie +zL +zL +ie +ie +ie +ie +ie +ie +zL +zL +zL +zL +zL +zL +zL +zL +zL +zL +zL +zL +zL +zL +ie +ie +ie +ie +ie +ie +ld +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ld +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +zL +zL +zL +ie +ie +ie +ld +ie +ie +zL +tf +tf +tf +EC +tf +tf +tf +tf +tf +tf +tf +EC +ei +Qy +Qy +Qy +ei +EC +Dg +tf +tf +tf +tf +tf +kQ +og +Nm +xh "} (129,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -fc -fc -fc -fc -fc -fN -fN -fN -fN -fN -xb -xb -xb -xb -LI -LI -LI -Ty -WD -WD -WD -KF -KF -KF -KF -KF -fc -fc -fc -mI -ns +rd +ad +ad +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ot +ab +ab +ab +ab +ac +ac +ab +ab +go +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ot +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +if +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +ae +ae +ie +ae +af +eh +eh +eh +ap +ap +ap +ap +ap +ap +cA +cA +cA +cA +cA +an +eQ +am +fD +fD +gu +fD +fD +fD +fD +fD +pV +cv +ip +cv "} (130,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -fc -fc -fc -fc -fc -YE -fc -fc -fc -fc -fc -fc -GX -gz -gz -gz -GX -fc -fc -fc -fc -fc -fc -YE -fc -fc -fc -fc -mI -ns +rd +ad +ad +ad +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ot +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ot +ac +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ot +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +ae +ae +ie +ae +af +eh +eh +ap +ap +aR +bi +bA +bT +ap +cB +da +du +dK +dN +ez +eR +fk +fD +fV +gv +gN +hg +hy +fD +fD +il +md +Cx +aa "} (131,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -iy -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -mI -ns +aa +ad +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ot +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ot +ac +ac +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +ae +ae +ie +af +af +eh +eh +aq +az +aS +aT +aT +bU +ap +cC +db +dv +dL +dN +eA +eS +fl +fD +fW +gw +gw +gw +gw +hP +fD +il +md +Cx +aa "} (132,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -fc -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +go +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ot +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ot +ac +ac +ac +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +ae +ae +zL +af +af +eh +Ph +ap +aA +aT +bj +bB +bV +ap +cD +dc +dw +dM +cA +an +eT +am +fD +fX +gw +gO +gO +io +hQ +fD +il +PH +md +aa "} (133,1,1) = {" -ns -iy -iy -iy -iy -iy -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -sb -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -fc -fc -fc -mI -mI -fc -fc -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ac +ac +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ot +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ac +ac +ac +ac +ab +ab +ab +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +zL +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +ae +ae +zL +af +af +eh +eh +ap +aB +aU +bk +bC +bW +ap +cE +cE +do +dN +ej +eB +eU +fm +fE +fY +gx +gP +hh +hA +hR +fD +tl +eh +md +aa "} (134,1,1) = {" -ns -iy -iy -iy -iy -iy -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ot +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ac +ac +ac +ac +ab +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +ae +ae +af +af +af +af +zL +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +tf +eh +eh +eh +eh +ap +aC +aT +bl +bD +bX +ap +cF +dd +dy +dO +ek +eB +eV +fn +fF +fZ +gy +gQ +hi +hB +hS +fD +YY +eh +md +aa "} (135,1,1) = {" -ns -iy -iy -iy -iy -iy -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -Hp -mI -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +zL +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +ae +af +tf +eh +eh +eh +eh +aq +aD +aV +aT +bE +bY +ap +cG +de +dz +dP +el +eC +eW +fo +fG +ga +gz +gR +hj +hC +hT +fD +eh +eh +ae +aa "} (136,1,1) = {" -ns -iy -iy -iy -iy -iy -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -Hp -Hp -mI -Hp -Hp -sb -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -sb -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +af +tf +eh +ah +ah +ah +ar +aE +aW +bm +bF +bZ +ap +cH +df +dA +dQ +em +eD +eX +fp +fH +gb +gA +gS +hk +hD +hU +fD +eh +eh +ae +aa "} (137,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +tf +eh +ai +ak +am +ap +ap +ap +bn +bG +ap +ap +cI +an +am +cI +en +eE +eY +fq +fD +gc +gd +gd +gd +gd +fD +fD +eh +eh +ae +aa "} (138,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -Hp -sb -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +af +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +if +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +tf +eh +ai +ai +an +as +aF +an +bo +bH +ca +ci +cJ +dg +an +dR +eo +eF +eZ +fr +fI +gd +gB +gT +hl +hE +gE +eh +eh +eh +ae +aa "} (139,1,1) = {" -ns -iy -iy -iy -iy -iy -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +af +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +tf +eh +aj +aj +ao +at +aG +aX +bp +bI +cc +cj +cK +dh +dB +dS +dS +dS +fa +fs +fJ +ge +gC +gU +hm +hF +gE +nx +eh +eh +ae +aa "} (140,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -Hp -Hp -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ot +af +af +af +af +af +af +af +ae +ae +ae +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +tf +eh +aj +al +am +au +aH +am +bq +bJ +cd +ck +cL +di +an +dT +dT +dT +fb +ft +fK +gd +gD +gV +hn +hG +gE +eh +eh +eh +ae +aa "} (141,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ac +ac +ac +ac +ac +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ot +ig +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +tf +eh +ai +ak +am +av +av +av +br +bK +av +av +cM +ax +av +ax +bK +ax +av +ax +fL +av +gE +gd +gd +gd +gJ +gJ +eh +eh +ae +aa "} (142,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +id +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +tf +eh +ah +ah +ah +aw +aI +aY +bs +bL +ce +cl +cN +dj +dx +dU +ep +eG +dG +fu +fM +gf +gF +gW +ho +hH +hV +gJ +eh +eh +ae +aa "} (143,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +tf +eh +eh +eh +eh +ax +aJ +aZ +bt +bM +bM +cm +cO +dk +dE +hz +bN +eH +fe +dk +fN +gg +gG +gX +hp +hI +hW +gF +eh +eh +ae +aa "} (144,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ac +ac +ac +ac +ab +ab +ac +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +tf +eh +eh +eh +Ph +av +aK +ba +bu +bN +cf +cn +cP +dk +dF +dW +bN +eI +ff +dk +fO +gh +gF +gY +hq +hJ +hX +gJ +nx +eh +ae +aa "} (145,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ot +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +go +ac +ac +go +ab +ab +ac +ac +ab +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +zL +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +zL +af +af +eh +eh +av +aL +bb +bu +bO +cg +cn +cQ +dl +ih +dX +eq +eJ +fg +fv +fP +gi +gF +gZ +hr +hK +hY +gJ +eh +eh +ae +aa "} (146,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ab +ac +ot +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +af +af +af +zL +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +zL +af +af +eh +eh +ax +aM +bc +bu +bN +ch +co +cR +dm +dH +dY +er +eK +fh +fw +fQ +bN +gH +ha +hs +hL +hZ +gF +eh +eh +ae +aa "} (147,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ot +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +zL +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +zL +af +af +eh +eh +ay +aN +bd +bv +aN +aN +cp +cS +dn +dC +dZ +es +eL +fi +fx +es +gj +gI +hb +ht +hM +ia +gJ +eh +eh +ae +aa "} (148,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ot +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +zL +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +zL +af +af +eh +eh +ay +aO +be +bw +bP +ay +cb +cq +cT +cu +ea +et +eM +fj +fy +fR +gk +gJ +hc +hu +hL +ib +gJ +eh +eh +ae +aa "} (149,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -sb -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +zL +af +af +eh +eh +ay +aP +bf +bx +bQ +ay +cr +cU +dp +cu +eb +eu +eN +fj +fz +fS +gl +gK +hd +hv +hd +hd +gK +eh +eh +ae +aa "} (150,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -rM -mI -mI -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +if +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +zL +af +af +eh +Ph +ay +aQ +bg +by +bR +ay +cs +cV +dq +cu +ec +ev +eO +fj +fA +fT +gm +gK +he +hw +hN +ic +gK +nx +eh +ae +aa "} (151,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -rM -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ac +ac +ac +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +zL +af +af +eh +eh +ay +ay +bh +bz +bS +ay +ct +cW +dr +cu +ed +ew +eP +fj +fB +fU +gn +gK +hf +hx +hO +gK +gK +eh +eh +ae +aa "} (152,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -sb -Hp -Hp -Hp -Hp -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -rM -mI -mI -sb -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ac +ac +ac +ac +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +zL +af +af +eh +eh +eh +ay +ay +ay +ay +ay +cu +cu +cu +cu +ee +ee +ee +fj +fC +fC +fC +gK +gK +gK +gK +gK +eh +eh +eh +ae +aa "} (153,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -BO -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ac +ac +ac +ac +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +if +af +af +Zo +ae +af +af +eh +eh +eh +FU +eh +eh +eh +eh +eh +eh +zJ +gM +gM +gM +zJ +eh +eh +eh +eh +eh +eh +FU +eh +eh +eh +ae +ae +aa "} (154,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -BO -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ot +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ie +ae +ae +af +af +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +eh +ae +ae +aa "} (155,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -rM -mI -mI -sb -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ac +ac +ot +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +ie +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (156,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ab +ab +ab +ac +ac +ac +ot +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (157,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ac +ac +ac +ac +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +if +af +af +af +af +if +ae +ae +af +af +af +af +af +ae +af +af +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (158,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -BO -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (159,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -BO -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +if +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (160,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -BO -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +ex +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +EX +id +id +id +id +id +id +id +id +id +id +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +id +id +id +id +id +id +id +id +id +id +id +EX +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +EX +id +id +id +id +id +id +id +id +id +id +id +ot +ot +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +EX +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ld +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ld +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +zL +zL +zL +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ld +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ex "} (161,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -BO -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ab +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (162,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -BO -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (163,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -BO -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (164,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -BO -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (165,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -BO -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ot +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (166,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -BO -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ot +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (167,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -BO -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ot +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (168,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -BO -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (169,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -BO -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (170,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (171,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (172,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (173,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (174,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -sb -Hp -Hp -Hp -Hp -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (175,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -bE -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (176,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (177,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -sb -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (178,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -bE -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -sb -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (179,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -sb -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (180,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -YT -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (181,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -YT -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (182,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -YT -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (183,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -YT -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (184,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -YT -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (185,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -bE -nu -nu -nu -nu -nu -nu -nu -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (186,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (187,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (188,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -iy -nu -nu -nu -nu -nu -nu -bE -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (189,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +zL +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (190,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +zL +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (191,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +zL +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (192,1,1) = {" -ax -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -ha -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -YT -YT -YT -YT -YT -YT -YT -YT -YT -HQ -HQ -HQ -HQ -ha -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HQ -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -CP -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -rM -ax +ex +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +EX +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +EX +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +EX +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +ot +ot +id +id +id +id +EX +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ld +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +zL +zL +zL +lV +zL +zL +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ld +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ex "} (193,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +zL +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (194,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +zL +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (195,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +zL +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (196,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (197,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (198,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (199,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (200,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ot +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (201,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ab +ot +ig +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (202,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +id +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (203,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ot +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (204,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ot +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (205,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (206,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (207,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (208,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -bE -nu -nu -nu -bE -nu -nu -nu -bE -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (209,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +ae +ae +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (210,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (211,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (212,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (213,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (214,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (215,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (216,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (217,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +af +zL +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (218,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +af +af +af +zL +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (219,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +zL +af +af +af +af +af +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (220,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ie +ae +ae +ae +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (221,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (222,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +af +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (223,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (224,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +ex +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +EX +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +EX +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +EX +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +id +EX +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +zL +zL +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ld +ie +zL +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ld +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ld +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ie +ex "} (225,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (226,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +zL +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (227,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +zL +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (228,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +zL +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (229,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -bE -nu -nu -nu -bE -nu -nu -nu -bE -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +zL +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (230,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (231,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (232,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (233,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (234,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (235,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (236,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (237,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (238,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -YT -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (239,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -YT -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (240,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +md +md +aa "} (241,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +Ug +ad +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +md +iH +aa "} (242,1,1) = {" -ay -bt -bt -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -jP -vQ -ns +rd +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ot +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +md +Cx +aa "} (243,1,1) = {" -ad -bt -bt -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -bH -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -jP -SY -ns +cy +cx +eg +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gr +af +gL +gL +gL +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +ae +ae +md +Cx +aa "} (244,1,1) = {" -aq -bu -wd -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -Zr -nu -BY -BY -BY -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -bE -nu -nu -nu -bE -nu -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -jP -SY -ns +cz +qC +qH +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ab +ab +ds +ds +ds +ds +ds +ds +Ox +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +Ox +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +Ox +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +Ox +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +pQ +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +pQ +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +pQ +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +VP +iB "} (245,1,1) = {" -aC -kq -nH -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -qF -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -qF -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -aH -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dT -eK +cz +qH +qH +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +Ox +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +Ox +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +Ox +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +Ox +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +pQ +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +pQ +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +pQ +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +VP +iB "} (246,1,1) = {" -aC -nH -nH -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -qF -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -qF -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -aH -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dT -eK +cz +qH +qH +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +Ox +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ab +ab +ab +ds +ds +ds +ds +ds +Ox +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +Ox +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +ds +Ox +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +pQ +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +pQ +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +pQ +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +VP +iB "} (247,1,1) = {" -aC -nH -nH -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -qF -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -qF -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -BY -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -aH -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dW -dT -eK +Jk +kX +kX +ac +ac +ab +ab +ab +ab +ab +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +af +af +ie +ae +ae +ae +ae +ae +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +af +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +md +Cx +aa "} (248,1,1) = {" -aS -py -py -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -nu -YT -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -BO -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -jP -SY -ns +rd +ad +ad +ac +ac +ac +ab +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +af +af +af +af +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +af +af +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +md +Cx +aa "} (249,1,1) = {" +rd ad -bt -bt -nu -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -nu -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -nu -nu -nu -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -BO -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -Hp -Hp -Hp -Hp -Hp -Hp -Hp -mI -mI -mI -mI -mI -mI -mI -mI -mI -jP -SY -ns +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +md +Cx +aa "} (250,1,1) = {" +aa ad -bt -bt -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -jP -SY -ns +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +md +md +aa "} (251,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (252,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (253,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (254,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (255,1,1) = {" -ns -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -HQ -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -iy -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -rM -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -mI -ns +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +id +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ie +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa "} (256,1,1) = {" -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ax -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ax -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ax -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns -ns +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ex +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ex +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ex +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ex +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ex +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ex +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ex +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa "} diff --git a/maps/southern_cross/southern_cross-8.dmm b/maps/southern_cross/southern_cross-8.dmm index f82b846942..98cd746846 100644 --- a/maps/southern_cross/southern_cross-8.dmm +++ b/maps/southern_cross/southern_cross-8.dmm @@ -4065,6 +4065,38 @@ icon_state = "vault" }, /area/centcom/specops) +"eos" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/taser, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/weapon/storage/backpack/ert/security, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/clothing/glasses/sunglasses/sechud/tactical{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/gun/energy/ionrifle, +/obj/item/weapon/cell/device/weapon/empproof, +/obj/item/weapon/cell/device/weapon/empproof, +/obj/item/weapon/cell/device/weapon/empproof, +/obj/item/weapon/handcuffs, +/obj/item/weapon/handcuffs, +/obj/item/clothing/accessory/storage/webbing, +/obj/item/clothing/under/ert, +/obj/item/device/radio/headset/ert/alt, +/obj/item/clothing/shoes/boots/swat, +/obj/item/clothing/gloves/swat, +/obj/item/clothing/mask/balaclava/tactical, +/obj/item/weapon/reagent_containers/spray/pepper, +/obj/item/clothing/accessory/holster/leg, +/obj/item/weapon/card/id/centcom/ERT, +/obj/item/weapon/melee/baton, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/specops) "eoN" = ( /obj/effect/floor_decal/corner/red/full{ dir = 4 @@ -4427,6 +4459,21 @@ icon_state = "wood" }, /area/skipjack_station) +"eQB" = ( +/obj/structure/table/rack, +/obj/item/ammo_magazine/hectate/ap, +/obj/item/ammo_magazine/hectate/ap, +/obj/item/ammo_magazine/hectate/ap, +/obj/item/ammo_magazine/hectate/ap, +/obj/item/ammo_magazine/hectate/ap, +/obj/item/ammo_magazine/hectate/ap, +/obj/item/ammo_magazine/hectate/ap, +/obj/item/ammo_magazine/hectate/ap, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/specops) "eQT" = ( /obj/structure/closet/crate/medical, /obj/item/weapon/surgical/circular_saw, @@ -14753,6 +14800,17 @@ icon_state = "white" }, /area/ninja_dojo/dojo) +"shL" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/automatic/serdy/hectate, +/obj/item/weapon/gun/projectile/automatic/serdy/hectate, +/obj/item/weapon/gun/projectile/automatic/serdy/hectate, +/obj/item/weapon/gun/projectile/automatic/serdy/hectate, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/specops) "shS" = ( /obj/item/frame/light, /turf/unsimulated/floor{ @@ -16695,8 +16753,8 @@ /area/holodeck/source_basketball) "uOy" = ( /obj/machinery/door/airlock/centcom{ - icon_state = "door_locked"; - locked = 1 + name = "Special Operations"; + req_access = list(103) }, /turf/unsimulated/floor{ icon_state = "dark" @@ -39692,12 +39750,12 @@ vFi vFi vFi vFi -vFi -vFi -vFi -vFi -vFi -vFi +nZC +eQB +eos +eos +eos +eos nZC jSV uOy @@ -39950,15 +40008,15 @@ vFi vFi vFi vFi -vFi -vFi -vFi -vFi -vFi -vFi nZC +eos +vHC +vHC +vHC +vHC +uOy jSV -nZC +oSH vHC vHC vHC @@ -40208,12 +40266,12 @@ vFi vFi vFi vFi -vFi -vFi -vFi -vFi -vFi -vFi +nZC +shL +eos +eos +eos +eos nZC jSV uOy @@ -40466,9 +40524,9 @@ vFi vFi vFi vFi -vFi -vFi -vFi +nZC +nZC +nZC nZC nZC nZC diff --git a/maps/stellar_delight/stellar_delight1.dmm b/maps/stellar_delight/stellar_delight1.dmm index c6ab9705a2..3b0600bcea 100644 --- a/maps/stellar_delight/stellar_delight1.dmm +++ b/maps/stellar_delight/stellar_delight1.dmm @@ -874,6 +874,18 @@ }, /turf/simulated/floor/tiled/eris, /area/stellardelight/deck1/researchhall) +"bO" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) "bP" = ( /obj/machinery/light{ dir = 4 @@ -1814,6 +1826,9 @@ dir = 1; icon_state = "pipe-c" }, +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, /turf/simulated/floor/tiled/techmaint, /area/stellardelight/deck1/aft) "dQ" = ( @@ -3344,6 +3359,12 @@ "hg" = ( /turf/simulated/floor/tiled/techmaint, /area/stellardelight/deck1/aft) +"hh" = ( +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) "hi" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -4577,6 +4598,9 @@ /obj/structure/cable/pink{ icon_state = "1-2" }, +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, /turf/simulated/floor, /area/maintenance/stellardelight/deck1/starboardfore) "jx" = ( @@ -6043,6 +6067,9 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, /turf/simulated/floor/tiled/techmaint, /area/stellardelight/deck1/aft) "mE" = ( @@ -6776,6 +6803,12 @@ /obj/structure/flora/pottedplant/stoutbush, /turf/simulated/floor/tiled/techmaint, /area/stellardelight/deck1/port) +"og" = ( +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/security_port) "oh" = ( /obj/structure/cable/white{ icon_state = "4-8" @@ -11791,6 +11824,16 @@ }, /turf/simulated/floor/lino, /area/chapel/office) +"yW" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/milspec/color/emerald/half{ + dir = 4 + }, +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) "yX" = ( /obj/effect/shuttle_landmark/premade/sd/deck1/aft, /turf/space, @@ -12405,6 +12448,9 @@ color = "#42038a"; icon_state = "1-8" }, +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, /turf/simulated/floor, /area/maintenance/stellardelight/deck1/exploration) "Ah" = ( @@ -13924,6 +13970,18 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, /area/stellardelight/deck1/port) +"Dr" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portaft) "Ds" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/angled_bay/standard/color{ @@ -15715,6 +15773,9 @@ /obj/structure/cable/green{ icon_state = "1-2" }, +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, /turf/simulated/floor/tiled/techmaint, /area/stellardelight/deck1/fore) "Hy" = ( @@ -16322,6 +16383,9 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, /turf/simulated/floor, /area/maintenance/stellardelight/deck1/starboardcent) "IH" = ( @@ -18012,6 +18076,18 @@ }, /turf/simulated/floor/tiled/techmaint, /area/stellardelight/deck1/fore) +"Mn" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) "Mq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -18088,6 +18164,12 @@ }, /turf/simulated/floor/tiled/dark, /area/security/security_cell_hallway) +"MC" = ( +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) "MD" = ( /obj/structure/cable/green{ icon_state = "2-4" @@ -21823,6 +21905,23 @@ }, /turf/simulated/floor, /area/maintenance/stellardelight/deck1/starboardcent) +"Uv" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-4" + }, +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardaft) "Uw" = ( /obj/structure/cable/yellow{ icon_state = "1-4" @@ -31340,7 +31439,7 @@ pP qq UQ Tb -qq +Mn PL DQ XM @@ -31743,7 +31842,7 @@ RL Ib To bQ -To +Dr aO Ib To @@ -32442,7 +32541,7 @@ fc eC eE gY -gY +hh km QB gY @@ -32565,7 +32664,7 @@ Ii ks Te vx -wf +og Bf Yv yV @@ -33021,7 +33120,7 @@ Vw ug ob nS -Ov +bO zM GX Fv @@ -36007,7 +36106,7 @@ LE xx id yx -ei +MC ou Yt ei @@ -36032,7 +36131,7 @@ kv jg XJ DK -XJ +yW XJ Hp RA @@ -37150,7 +37249,7 @@ Dv Dv Dv Dv -Qz +Uv Dv lT Dv diff --git a/maps/stellar_delight/stellar_delight2.dmm b/maps/stellar_delight/stellar_delight2.dmm index 35409e2504..b99e5f9cb1 100644 --- a/maps/stellar_delight/stellar_delight2.dmm +++ b/maps/stellar_delight/stellar_delight2.dmm @@ -7746,6 +7746,9 @@ /area/stellardelight/deck2/central) "rl" = ( /obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, /turf/simulated/floor, /area/maintenance/stellardelight/deck2/starboardfore) "rm" = ( @@ -8859,6 +8862,9 @@ /obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 4 }, +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/stellardelight/deck2/port) "tQ" = ( @@ -14086,6 +14092,18 @@ /obj/structure/medical_stand, /turf/simulated/floor/tiled/eris/white/bluecorner, /area/stellardelight/deck2/triage) +"FI" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portaft) "FJ" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ @@ -15882,6 +15900,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/eris/steel/cargo, /area/quartermaster/storage) +"Jw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) "Jx" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; @@ -21266,6 +21293,16 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) +"VD" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portfore) "VE" = ( /obj/structure/cable/blue{ icon_state = "4-8" @@ -21841,6 +21878,15 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/stellardelight/deck2/fuelstorage) +"WV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) "WW" = ( /obj/machinery/power/apc/angled{ dir = 8 @@ -22114,6 +22160,15 @@ }, /turf/simulated/floor/tiled, /area/storage/art) +"XE" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) "XF" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/firstaid/adv{ @@ -30232,7 +30287,7 @@ Gv Gv Gv Uv -Gv +VD yz KL WP @@ -30387,7 +30442,7 @@ Yh Yh Yh AP -Yh +FI Yh Yh uL @@ -30679,7 +30734,7 @@ zp eL fr vU -MD +WV MD fR IC @@ -35498,8 +35553,13 @@ us aL zS Wy +<<<<<<< HEAD Mk Mk +======= +xh +XE +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures Mk fs Tk @@ -35511,7 +35571,7 @@ LH Mk pm Mk -Mk +XE lv Aj LI @@ -35792,7 +35852,7 @@ Ie HS am Cc -aM +Jw aM FT pj diff --git a/maps/stellar_delight/stellar_delight3.dmm b/maps/stellar_delight/stellar_delight3.dmm index e0a350f536..ee0eed2947 100644 --- a/maps/stellar_delight/stellar_delight3.dmm +++ b/maps/stellar_delight/stellar_delight3.dmm @@ -124,6 +124,10 @@ }, /turf/simulated/floor/tiled, /area/holodeck_control) +"ap" = ( +/obj/machinery/vending/altevian, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarroomb) "at" = ( /obj/structure/table/darkglass, /turf/simulated/floor/tiled/dark, @@ -1571,6 +1575,9 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, /turf/simulated/open, /area/crew_quarters/bar) "gh" = ( @@ -2428,6 +2435,13 @@ }, /turf/simulated/floor/tiled/steel_ridged, /area/crew_quarters/heads/chief) +"jo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) "jp" = ( /obj/structure/closet, /obj/random/contraband, @@ -4841,6 +4855,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/open, /area/stellardelight/deck2/port) +"rW" = ( +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portfore) "rX" = ( /obj/machinery/light{ dir = 1 @@ -5162,6 +5182,9 @@ /obj/structure/cable/blue{ icon_state = "1-4" }, +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, /turf/simulated/floor, /area/maintenance/stellardelight/deck3/starboardfore) "tg" = ( @@ -7027,7 +7050,7 @@ /obj/machinery/power/apc{ pixel_y = -28; req_access = null; - req_one_access = list(11, 67) + req_one_access = list(11,67) }, /obj/structure/cable/green, /obj/effect/floor_decal/fancy_shuttle{ @@ -9956,7 +9979,7 @@ /obj/machinery/power/apc{ pixel_y = -28; req_access = null; - req_one_access = list(11, 67) + req_one_access = list(11,67) }, /obj/structure/cable/green{ icon_state = "0-4" @@ -10245,6 +10268,12 @@ }, /turf/simulated/floor, /area/maintenance/stellardelight/deck3/starboardfore) +"Lo" = ( +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) "Lr" = ( /obj/effect/shuttle_landmark/premade/sd/deck3/starboardairlock, /turf/space, @@ -11339,6 +11368,9 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, /turf/simulated/floor, /area/maintenance/stellardelight/deck3/starboardcent) "OI" = ( @@ -12171,6 +12203,9 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, /turf/simulated/floor, /area/maintenance/stellardelight/deck3/portcent) "RN" = ( @@ -13632,6 +13667,9 @@ icon_state = "1-2" }, /obj/effect/landmark/vermin, +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, /turf/simulated/open, /area/crew_quarters/bar) "Xd" = ( @@ -21552,7 +21590,7 @@ pf Ns Ns Ns -Ns +rW Ns eF IP @@ -21591,7 +21629,7 @@ IN xi dE dE -dE +Lo dE dE dE @@ -26091,7 +26129,7 @@ tF Sb Nz Jx -FE +ap sR FE Ef @@ -26986,7 +27024,7 @@ if if Ne iS -iS +jo Kz Dk qY diff --git a/maps/stellar_delight/stellar_delight_jobs.dm b/maps/stellar_delight/stellar_delight_jobs.dm index 2541edfd9c..312fc0befa 100644 --- a/maps/stellar_delight/stellar_delight_jobs.dm +++ b/maps/stellar_delight/stellar_delight_jobs.dm @@ -27,4 +27,7 @@ alt_titles = list("Brig Sentry" = /datum/alt_title/brig_sentry, "Armory Superintendent" = /datum/alt_title/armory_superintendent, "Master-at-Arms" = /datum/alt_title/master_at_arms) /datum/alt_title/master_at_arms - title = "Master-at-Arms" \ No newline at end of file + title = "Master-at-Arms" + +/datum/job/pilot/get_request_reasons() + return list("Moving Stellar Delight") \ No newline at end of file diff --git a/maps/submaps/admin_use_vr/fun.dm b/maps/submaps/admin_use_vr/fun.dm index 7fc4b52bdd..511bf49880 100644 --- a/maps/submaps/admin_use_vr/fun.dm +++ b/maps/submaps/admin_use_vr/fun.dm @@ -3,8 +3,15 @@ requires_power = 0 dynamic_lighting = 0 +/area/submap/casino_event + name = "\improper Space Casino" + requires_power = 0 + dynamic_lighting = 0 - +/datum/map_template/admin_use/casino + name = "Lucky 7 Casino" + desc = "A casino to gamble your life away." + mappath = 'maps/submaps/admin_use_vr/lucky_7.dmm' // NEVER EVER use these on an actual included map. // These are for admins to use when they make quick maps and upload the .dmm files for loading diff --git a/maps/submaps/admin_use_vr/lucky_7.dmm b/maps/submaps/admin_use_vr/lucky_7.dmm new file mode 100644 index 0000000000..356e3cb461 --- /dev/null +++ b/maps/submaps/admin_use_vr/lucky_7.dmm @@ -0,0 +1,631 @@ +"aa" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/tiled,/area/submap/casino_event) +"ab" = (/obj/structure/table/borosilicate,/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/submap/casino_event) +"ac" = (/obj/structure/table/borosilicate,/obj/structure/dancepole,/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/submap/casino_event) +"ad" = (/obj/structure/table/borosilicate,/turf/simulated/floor/tiled/eris/steel/bar_light,/area/submap/casino_event) +"ae" = (/turf/simulated/wall,/area/submap/casino_event) +"af" = (/obj/structure/table/bench/padded,/obj/effect/floor_decal/spline/plain,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/submap/casino_event) +"ag" = (/obj/structure/table/bench/padded,/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/submap/casino_event) +"ah" = (/obj/structure/table/bench/padded,/obj/effect/floor_decal/spline/plain,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/submap/casino_event) +"ai" = (/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"aj" = (/obj/structure/bed/chair/bay/comfy/blue,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"ak" = (/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"al" = (/obj/structure/table/darkglass,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"am" = (/obj/structure/bed/chair/bay/comfy/blue{dir = 1},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"an" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"ao" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"ap" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"aq" = (/turf/simulated/floor/carpet/retro,/area/submap/casino_event) +"ar" = (/obj/machinery/computer/arcade/orion_trail,/turf/simulated/floor/carpet/retro,/area/submap/casino_event) +"as" = (/obj/machinery/computer/arcade/battle,/turf/simulated/floor/carpet/retro,/area/submap/casino_event) +"at" = (/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/carpet/retro,/area/submap/casino_event) +"au" = (/obj/structure/flora/pottedplant/largebush,/turf/simulated/floor/carpet/retro,/area/submap/casino_event) +"av" = (/obj/machinery/door/morgue{dir = 2; name = "Private Room"; req_access = null},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"aw" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/retro,/area/submap/casino_event) +"ax" = (/obj/item/weapon/stool/baystool/padded{dir = 1},/turf/simulated/floor/carpet/retro,/area/submap/casino_event) +"ay" = (/obj/structure/flora/pottedplant/tall,/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"az" = (/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"aA" = (/obj/structure/table/woodentable,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"aB" = (/obj/machinery/door/airlock{name = "Arcade"},/turf/simulated/floor/carpet/retro,/area/submap/casino_event) +"aC" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/carpet/retro,/area/submap/casino_event) +"aD" = (/obj/structure/table/gamblingtable,/turf/simulated/floor/carpet/retro,/area/submap/casino_event) +"aE" = (/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/carpet/retro,/area/submap/casino_event) +"aF" = (/obj/machinery/clawmachine,/turf/simulated/floor/carpet/retro,/area/submap/casino_event) +"aG" = (/obj/structure/table/woodentable,/obj/machinery/light,/turf/simulated/floor/carpet/retro,/area/submap/casino_event) +"aH" = (/obj/structure/table/gamblingtable,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/machinery/light,/turf/simulated/floor/carpet/retro,/area/submap/casino_event) +"aI" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"aJ" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"aK" = (/obj/structure/flora/pottedplant/tall,/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"aL" = (/obj/structure/closet,/obj/random/junk,/obj/random/junk,/obj/random/maintenance,/turf/simulated/floor/plating,/area/submap/casino_event) +"aM" = (/obj/structure/closet,/obj/random/junk,/obj/random/junk,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/submap/casino_event) +"aN" = (/obj/structure/table/steel,/obj/random/junk,/obj/random/maintenance,/turf/simulated/floor/plating,/area/submap/casino_event) +"aO" = (/turf/simulated/floor/plating,/area/submap/casino_event) +"aP" = (/obj/random/junk,/turf/simulated/floor/plating,/area/submap/casino_event) +"aQ" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"aR" = (/obj/structure/table/woodentable,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"aS" = (/obj/effect/decal/cleanable/blood/oil,/turf/simulated/floor/plating,/area/submap/casino_event) +"aT" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/submap/casino_event) +"aU" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"aV" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/submap/casino_event) +"aW" = (/obj/random/trash,/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/obj/random/junk,/turf/simulated/floor/plating,/area/submap/casino_event) +"aX" = (/obj/random/trash,/obj/random/trash,/turf/simulated/floor/plating,/area/submap/casino_event) +"aY" = (/obj/random/trash,/obj/machinery/light/small{dir = 4},/obj/random/junk,/turf/simulated/floor/plating,/area/submap/casino_event) +"aZ" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"ba" = (/obj/structure/window/basic,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"bb" = (/obj/machinery/door/airlock{id_tag = "L7 PGR 1"; name = "Private Game Room 1"},/turf/simulated/floor/carpet/purple,/area/submap/casino_event) +"bc" = (/obj/machinery/door/airlock{id_tag = "L7 PGR 2"; name = "Private Game Room 2"},/turf/simulated/floor/carpet/green,/area/submap/casino_event) +"bd" = (/obj/machinery/door/airlock{id_tag = "L7 PGR 3"; name = "Private Game Room 3"},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"be" = (/obj/random/trash,/obj/random/trash,/obj/machinery/light/small,/obj/structure/railing{dir = 8},/obj/random/junk,/turf/simulated/floor/plating,/area/submap/casino_event) +"bf" = (/obj/random/trash,/obj/random/trash,/obj/random/junk,/obj/random/junk,/turf/simulated/floor/plating,/area/submap/casino_event) +"bg" = (/obj/random/trash_pile,/obj/random/trash,/obj/random/trash,/obj/random/junk,/turf/simulated/floor/plating,/area/submap/casino_event) +"bh" = (/obj/machinery/slot_machine,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"bi" = (/obj/machinery/slot_machine,/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"bj" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/book/manual/wizzoffguide,/obj/item/weapon/deck/wizoff,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/pill_bottle/dice,/obj/item/weapon/deck/cards/casino,/obj/item/weapon/deck/cah,/obj/item/weapon/deck/cah/black,/obj/item/weapon/storage/dicecup,/turf/simulated/floor/carpet/purple,/area/submap/casino_event) +"bk" = (/turf/simulated/floor/carpet/purple,/area/submap/casino_event) +"bl" = (/obj/machinery/button/remote/airlock{id = "L7 PGR 1"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/carpet/purple,/area/submap/casino_event) +"bm" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/book/manual/wizzoffguide,/obj/item/weapon/deck/wizoff,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/pill_bottle/dice,/obj/item/weapon/deck/cards/casino,/obj/item/weapon/deck/cah,/obj/item/weapon/deck/cah/black,/obj/item/weapon/storage/dicecup,/turf/simulated/floor/carpet/green,/area/submap/casino_event) +"bn" = (/turf/simulated/floor/carpet/green,/area/submap/casino_event) +"bo" = (/obj/machinery/button/remote/airlock{id = "L7 PGR 2"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/carpet/green,/area/submap/casino_event) +"bp" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/book/manual/wizzoffguide,/obj/item/weapon/deck/wizoff,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/pill_bottle/dice,/obj/item/weapon/deck/cards/casino,/obj/item/weapon/deck/cah,/obj/item/weapon/deck/cah/black,/obj/item/weapon/storage/dicecup,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"bq" = (/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"br" = (/obj/machinery/button/remote/airlock{id = "L7 PGR 3"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"bs" = (/obj/structure/railing{dir = 1},/obj/random/trash_pile,/turf/simulated/floor/plating,/area/submap/casino_event) +"bt" = (/obj/random/trash_pile,/obj/random/trash,/obj/random/junk,/obj/random/junk,/turf/simulated/floor/plating,/area/submap/casino_event) +"bu" = (/obj/random/trash,/obj/random/junk,/turf/simulated/floor/plating,/area/submap/casino_event) +"bv" = (/obj/item/weapon/stool/baystool/padded{dir = 1},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"bw" = (/obj/structure/bed/chair/comfy/beige,/turf/simulated/floor/carpet/purple,/area/submap/casino_event) +"bx" = (/obj/structure/bed/chair/comfy/beige,/turf/simulated/floor/carpet/green,/area/submap/casino_event) +"by" = (/obj/structure/bed/chair/comfy/beige,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"bz" = (/obj/machinery/door/airlock/maintenance/common{name = "Trash Collection"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/submap/casino_event) +"bA" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/carpet/purple,/area/submap/casino_event) +"bB" = (/obj/structure/table/gamblingtable,/turf/simulated/floor/carpet/purple,/area/submap/casino_event) +"bC" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/carpet/purple,/area/submap/casino_event) +"bD" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/carpet/green,/area/submap/casino_event) +"bE" = (/obj/structure/table/gamblingtable,/turf/simulated/floor/carpet/green,/area/submap/casino_event) +"bF" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/carpet/green,/area/submap/casino_event) +"bG" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"bH" = (/obj/structure/table/gamblingtable,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"bI" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"bJ" = (/obj/random/trash_pile,/turf/simulated/floor/plating,/area/submap/casino_event) +"bK" = (/obj/random/trash_pile,/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/plating,/area/submap/casino_event) +"bL" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/submap/casino_event) +"bM" = (/obj/effect/floor_decal/rust,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/submap/casino_event) +"bN" = (/obj/effect/floor_decal/rust,/obj/random/trash_pile,/turf/simulated/floor/plating,/area/submap/casino_event) +"bO" = (/obj/effect/floor_decal/rust,/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/submap/casino_event) +"bP" = (/obj/effect/floor_decal/rust,/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/submap/casino_event) +"bQ" = (/obj/machinery/vending/cola,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"bR" = (/obj/structure/bed/chair/sofa/left/black{dir = 4},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"bS" = (/obj/structure/table/woodentable,/obj/item/weapon/book/manual/casino,/obj/item/weapon/pen,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"bT" = (/obj/structure/bed/chair/sofa/right/black{dir = 8},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"bU" = (/obj/structure/mirror{pixel_y = 38},/obj/structure/sink{pixel_y = 20},/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"bV" = (/obj/structure/toilet{pixel_y = 10},/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"bW" = (/obj/structure/table/woodentable,/obj/item/trash/asian_bowl,/obj/item/weapon/material/kitchen/utensil/fork/plastic,/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"bX" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/purple,/area/submap/casino_event) +"bY" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/carpet/purple,/area/submap/casino_event) +"bZ" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/purple,/area/submap/casino_event) +"ca" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/green,/area/submap/casino_event) +"cb" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/carpet/green,/area/submap/casino_event) +"cc" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/green,/area/submap/casino_event) +"cd" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"ce" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"cf" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"cg" = (/obj/structure/closet,/obj/random/junk,/obj/random/junk,/obj/random/maintenance,/obj/random/maintenance,/obj/effect/floor_decal/rust,/obj/random/contraband,/turf/simulated/floor/plating,/area/submap/casino_event) +"ch" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/submap/casino_event) +"ci" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"cj" = (/obj/structure/bed/chair/sofa/black{dir = 4},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"ck" = (/obj/structure/table/woodentable,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"cl" = (/obj/structure/bed/chair/sofa/black{dir = 8},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"cm" = (/obj/machinery/door/airlock{id_tag = "br bathroom"; name = "Bathroom"},/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"cn" = (/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"co" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"cp" = (/obj/structure/closet,/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/random/maintenance,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/submap/casino_event) +"cq" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/plating,/area/submap/casino_event) +"cr" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/submap/casino_event) +"cs" = (/obj/structure/bed/chair/sofa/right/black{dir = 4},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"ct" = (/obj/structure/bed/chair/sofa/left/black{dir = 8},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"cu" = (/obj/structure/table/standard,/obj/machinery/button/remote/airlock{id = "br bathroom"; name = "Bathroom Lock"; pixel_x = -20; pixel_y = 10; specialfunctions = 4},/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"cv" = (/obj/machinery/vending/wallmed1/public{pixel_x = 28},/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"cw" = (/obj/structure/bed/chair/comfy/beige{dir = 1; icon_state = "comfychair_preview"},/turf/simulated/floor/carpet/purple,/area/submap/casino_event) +"cx" = (/obj/structure/bed/chair/comfy/beige{dir = 1; icon_state = "comfychair_preview"},/obj/machinery/light,/turf/simulated/floor/carpet/purple,/area/submap/casino_event) +"cy" = (/obj/structure/bed/chair/comfy/beige{dir = 1; icon_state = "comfychair_preview"},/turf/simulated/floor/carpet/green,/area/submap/casino_event) +"cz" = (/obj/structure/bed/chair/comfy/beige{dir = 1; icon_state = "comfychair_preview"},/obj/machinery/light,/turf/simulated/floor/carpet/green,/area/submap/casino_event) +"cA" = (/obj/structure/bed/chair/comfy/beige{dir = 1},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"cB" = (/obj/structure/bed/chair/comfy/beige{dir = 1},/obj/machinery/light,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"cC" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/plating,/area/submap/casino_event) +"cD" = (/turf/simulated/wall/r_wall,/area/submap/casino_event) +"cE" = (/obj/structure/table/steel,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/blood/oil,/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/submap/casino_event) +"cF" = (/obj/structure/table/rack/steel,/obj/random/maintenance,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/submap/casino_event) +"cG" = (/turf/simulated/floor/tiled,/area/submap/casino_event) +"cH" = (/obj/effect/floor_decal/corner/lightorange{dir = 5},/obj/effect/floor_decal/borderfloor/shifted{dir = 1},/obj/effect/floor_decal/corner/lightorange/border/shifted{dir = 1},/obj/structure/closet/secure_closet/brig{id = "Cell 2"},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"cI" = (/obj/effect/floor_decal/borderfloor/shifted{dir = 1},/obj/effect/floor_decal/corner/lightorange/border/shifted{dir = 1},/obj/effect/floor_decal/corner/lightorange{dir = 5},/obj/machinery/light/small{dir = 1},/obj/structure/bed/padded,/obj/item/weapon/bedsheet,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"cJ" = (/obj/effect/floor_decal/corner/lightorange{dir = 5},/obj/effect/floor_decal/borderfloor/shifted{dir = 1},/obj/effect/floor_decal/corner/lightorange/border/shifted{dir = 1},/obj/structure/table/steel,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"cK" = (/obj/structure/table/steel,/obj/random/maintenance/engineering,/obj/random/junk,/obj/effect/floor_decal/rust,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/submap/casino_event) +"cL" = (/obj/effect/floor_decal/rust,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/submap/casino_event) +"cM" = (/obj/structure/table/rack/steel,/obj/random/maintenance,/obj/random/junk,/obj/random/junk,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/blood/oil,/obj/random/contraband,/turf/simulated/floor/plating,/area/submap/casino_event) +"cN" = (/obj/structure/table/rack/shelf,/obj/item/device/slow_sizegun,/obj/item/device/slow_sizegun,/obj/item/device/slow_sizegun,/obj/item/weapon/gun/energy/sizegun,/obj/item/weapon/gun/energy/sizegun,/obj/item/weapon/gun/energy/sizegun,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"cO" = (/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"cP" = (/obj/machinery/casino_prize_dispenser,/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"cQ" = (/obj/effect/floor_decal/spline/plain,/obj/structure/table/woodentable,/obj/item/weapon/material/ashtray/glass,/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"cR" = (/obj/machinery/casino_prize_dispenser,/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"cS" = (/obj/machinery/casinosentientprize_handler{casinosentientprize_sale = "enabled"; pixel_y = 32},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"cT" = (/obj/machinery/chipmachine{pixel_y = 32},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"cU" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/security,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"cV" = (/obj/structure/table/rack/shelf,/obj/item/weapon/storage/box/roulette_balls_cheat,/obj/item/weapon/storage/box/roulette_balls_cheat,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"cW" = (/obj/structure/table/rack/shelf,/obj/item/weapon/deck/cards/casino,/obj/item/weapon/deck/cards/casino,/obj/item/weapon/deck/cards/casino,/obj/item/weapon/deck/cards/casino,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"cX" = (/obj/structure/table/rack/shelf,/obj/item/weapon/deck/cah,/obj/item/weapon/deck/cah,/obj/item/weapon/deck/cah/black,/obj/item/weapon/deck/schnapsen,/obj/item/weapon/deck/wizoff,/obj/item/weapon/deck/tarot,/obj/item/weapon/deck/egy,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"cY" = (/obj/structure/table/rack/shelf,/obj/item/weapon/gun/energy/mouseray/metamorphosis/advanced,/obj/item/weapon/gun/energy/mouseray/metamorphosis/advanced,/obj/item/weapon/gun/energy/mouseray/metamorphosis/advanced,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"cZ" = (/obj/effect/floor_decal/spline/plain{dir = 9},/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"da" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/submap/casino_event) +"db" = (/obj/structure/table/steel,/obj/item/weapon/spacecasinocash/c1000{pixel_x = -3; pixel_y = -3},/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000{pixel_x = 3; pixel_y = 3},/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/turf/simulated/floor/tiled/techfloor,/area/submap/casino_event) +"dc" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/submap/casino_event) +"dd" = (/obj/structure/table/rack/steel,/obj/item/weapon/spacecash/c1000{pixel_x = 6; pixel_y = 6},/obj/item/weapon/spacecash/c1000{pixel_x = 3; pixel_y = 3},/obj/item/weapon/spacecash/c1000,/turf/simulated/floor/tiled/techfloor,/area/submap/casino_event) +"de" = (/obj/structure/closet,/obj/random/junk,/obj/random/junk,/obj/random/maintenance,/obj/random/maintenance/engineering,/obj/item/device/flashlight/color,/obj/structure/railing{dir = 4},/turf/simulated/floor/plating,/area/submap/casino_event) +"df" = (/obj/structure/table/rack/shelf,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"dg" = (/obj/structure/table/rack/shelf,/obj/item/device/bodysnatcher,/obj/item/device/bodysnatcher,/obj/item/device/sleevemate,/obj/item/device/sleevemate,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"dh" = (/obj/structure/flora/pottedplant/unusual,/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"di" = (/obj/structure/bed/chair/wood{dir = 4},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"dj" = (/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"dk" = (/obj/machinery/light/floortube{dir = 8},/obj/structure/casino_table/roulette_chart,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"dl" = (/obj/structure/casino_table/roulette_table,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"dm" = (/obj/structure/casino_table/craps,/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/obj/machinery/light/floortube{dir = 8},/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/obj/item/weapon/storage/dicecup,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"dn" = (/obj/structure/casino_table/craps{dir = 1},/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"do" = (/obj/structure/table/woodentable,/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"dp" = (/obj/machinery/shower{pixel_y = 20},/obj/structure/curtain/open/shower,/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 6},/obj/random/soap,/turf/simulated/floor/tiled,/area/submap/casino_event) +"dq" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/green,/area/submap/casino_event) +"dr" = (/obj/machinery/chipmachine{pixel_y = 32},/obj/machinery/atm{pixel_x = 32},/turf/simulated/floor/carpet/green,/area/submap/casino_event) +"ds" = (/obj/structure/toilet{pixel_y = 10},/turf/simulated/floor/tiled/kafel_full,/area/submap/casino_event) +"dt" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/purple,/area/submap/casino_event) +"du" = (/obj/machinery/chipmachine{pixel_y = 32},/obj/machinery/atm{pixel_x = 32},/turf/simulated/floor/carpet/purple,/area/submap/casino_event) +"dv" = (/obj/structure/sink{dir = 8; pixel_x = -13; pixel_y = -4},/obj/structure/mirror{pixel_x = -24},/turf/simulated/floor/tiled/kafel_full,/area/submap/casino_event) +"dw" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"dx" = (/obj/machinery/chipmachine{pixel_y = 32},/obj/machinery/atm{pixel_x = 32},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"dy" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/kafel_full,/area/submap/casino_event) +"dz" = (/turf/simulated/floor/carpet/sblucarpet,/area/submap/casino_event) +"dA" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/sblucarpet,/area/submap/casino_event) +"dB" = (/obj/machinery/chipmachine{pixel_y = 32},/obj/machinery/atm{pixel_x = 32},/turf/simulated/floor/carpet/sblucarpet,/area/submap/casino_event) +"dC" = (/obj/machinery/door/airlock{id_tag = "br bathroom"; name = "Bathroom"},/turf/simulated/floor/tiled/kafel_full,/area/submap/casino_event) +"dD" = (/turf/simulated/floor/carpet/purcarpet,/area/submap/casino_event) +"dE" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/purcarpet,/area/submap/casino_event) +"dF" = (/obj/machinery/chipmachine{pixel_y = 32},/obj/machinery/atm{pixel_x = 32},/turf/simulated/floor/carpet/purcarpet,/area/submap/casino_event) +"dG" = (/obj/effect/floor_decal/corner/lightorange{dir = 5},/obj/effect/floor_decal/borderfloor/shifted{dir = 1},/obj/effect/floor_decal/corner/lightorange/border/shifted{dir = 1},/obj/structure/closet/secure_closet/brig{id = "Cell 1"},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"dH" = (/obj/structure/table/steel,/obj/item/stack/material/diamond{amount = 50; pixel_x = -5; pixel_y = -5},/obj/item/stack/material/diamond{amount = 50},/obj/item/stack/material/diamond{amount = 50; pixel_x = 5; pixel_y = 5},/turf/simulated/floor/tiled/techfloor,/area/submap/casino_event) +"dI" = (/turf/simulated/floor/tiled/techfloor,/area/submap/casino_event) +"dJ" = (/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/engineering,/obj/structure/table/rack/steel,/obj/random/contraband,/obj/structure/railing,/obj/structure/railing{dir = 4},/turf/simulated/floor/plating,/area/submap/casino_event) +"dK" = (/obj/structure/table/rack/shelf,/obj/item/weapon/storage/box/roulette_balls_fancy,/obj/item/weapon/storage/box/roulette_balls_fancy,/obj/item/weapon/storage/box/roulette_balls_fancy,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"dL" = (/obj/structure/table/rack/shelf,/obj/item/weapon/storage/pill_bottle/dice,/obj/item/weapon/storage/pill_bottle/dice,/obj/item/weapon/storage/pill_bottle/dice,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"dM" = (/obj/structure/table/woodentable,/obj/item/trash/asian_bowl,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"dN" = (/obj/structure/table/woodentable,/obj/item/weapon/material/kitchen/utensil/fork/plastic,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"dO" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"dP" = (/obj/structure/casino_table/blackjack_r{dir = 4},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"dQ" = (/obj/item/weapon/stool/padded{dir = 8},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"dR" = (/obj/effect/floor_decal/spline/plain{dir = 10},/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"dS" = (/obj/structure/casino_table/roulette_chart,/turf/simulated/floor/carpet/green,/area/submap/casino_event) +"dT" = (/obj/structure/casino_table/roulette_table,/turf/simulated/floor/carpet/green,/area/submap/casino_event) +"dU" = (/obj/structure/casino_table/roulette_chart,/turf/simulated/floor/carpet/purple,/area/submap/casino_event) +"dV" = (/obj/structure/casino_table/roulette_table,/turf/simulated/floor/carpet/purple,/area/submap/casino_event) +"dW" = (/obj/structure/casino_table/roulette_chart,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"dX" = (/obj/structure/casino_table/roulette_table,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"dY" = (/obj/structure/casino_table/craps,/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/turf/simulated/floor/carpet/sblucarpet,/area/submap/casino_event) +"dZ" = (/obj/structure/casino_table/craps{dir = 1},/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/turf/simulated/floor/carpet/sblucarpet,/area/submap/casino_event) +"ea" = (/obj/structure/casino_table/craps,/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/turf/simulated/floor/carpet/purcarpet,/area/submap/casino_event) +"eb" = (/obj/structure/casino_table/craps{dir = 1},/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/turf/simulated/floor/carpet/purcarpet,/area/submap/casino_event) +"ec" = (/obj/structure/table/steel,/obj/random/cash/huge{pixel_y = 8},/obj/random/cash/huge,/obj/item/weapon/bikehorn{pixel_x = -7; pixel_y = 7},/turf/simulated/floor/tiled/techfloor,/area/submap/casino_event) +"ed" = (/obj/structure/table/rack/shelf,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/pill_bottle/dice_nerd,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"ee" = (/obj/machinery/door/airlock{name = "Breakroom"; req_access = list(101)},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"ef" = (/obj/item/weapon/stool/padded{dir = 4},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"eg" = (/obj/structure/casino_table/blackjack_m{dir = 4},/obj/item/weapon/deck/cards/casino,/obj/machinery/light/floortube{dir = 8},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"eh" = (/obj/machinery/button/remote/airlock{id = "roulette_1"; name = "Door Lock"; pixel_x = 24; pixel_y = -26; specialfunctions = 4},/turf/simulated/floor/carpet/green,/area/submap/casino_event) +"ei" = (/obj/machinery/button/remote/airlock{id = "roulette_2"; name = "Door Lock"; pixel_x = 24; pixel_y = -26; specialfunctions = 4},/turf/simulated/floor/carpet/purple,/area/submap/casino_event) +"ej" = (/obj/machinery/button/remote/airlock{id = "roulette_3"; name = "Door Lock"; pixel_x = 24; pixel_y = -26; specialfunctions = 4},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"ek" = (/obj/machinery/button/remote/airlock{id = "craps_1"; name = "Door Lock"; pixel_x = 24; pixel_y = -26; specialfunctions = 4},/turf/simulated/floor/carpet/sblucarpet,/area/submap/casino_event) +"el" = (/obj/machinery/button/remote/airlock{id = "craps_2"; name = "Door Lock"; pixel_x = 24; pixel_y = -26; specialfunctions = 4},/turf/simulated/floor/carpet/purcarpet,/area/submap/casino_event) +"em" = (/obj/machinery/door/airlock/highsecurity{locked = 1; name = "Safe"; req_access = list(101); req_one_access = null},/turf/simulated/floor/tiled/techfloor,/area/submap/casino_event) +"en" = (/obj/structure/table/rack/shelf,/obj/item/weapon/storage/box/roulette_balls_normal,/obj/item/weapon/storage/box/roulette_balls_normal,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"eo" = (/obj/structure/table/rack/shelf,/obj/item/weapon/storage/dicecup,/obj/item/weapon/storage/dicecup,/obj/item/weapon/storage/dicecup,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"ep" = (/obj/structure/table/rack/shelf,/obj/item/weapon/spacecash/c1000,/obj/item/weapon/spacecash/c1000,/obj/item/weapon/spacecash/c1000,/obj/item/weapon/spacecash/c1000,/obj/item/weapon/spacecash/c1000,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"eq" = (/obj/structure/table/woodentable,/obj/random/drinkbottle,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"er" = (/obj/structure/casino_table/blackjack_l{dir = 4},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"es" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/storage/box/roulette_balls_normal,/obj/item/weapon/storage/box/roulette_balls_fancy,/obj/item/weapon/storage/box/roulette_balls_cheat,/turf/simulated/floor/carpet/green,/area/submap/casino_event) +"et" = (/obj/structure/casino_table/craps{dir = 1},/obj/item/weapon/dice,/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"eu" = (/obj/machinery/door/airlock{id_tag = "roulette_1"; name = "Private Roulette Room 1"},/turf/simulated/floor/carpet/green,/area/submap/casino_event) +"ev" = (/obj/machinery/door/airlock{id_tag = "roulette_2"; name = "Private Roulette Room 2"},/turf/simulated/floor/carpet/purple,/area/submap/casino_event) +"ew" = (/obj/machinery/door/airlock{id_tag = "roulette_3"; name = "Private Roulette Room 3"},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"ex" = (/obj/machinery/door/airlock{id_tag = "craps_1"; name = "Private Craps Room 1"},/turf/simulated/floor/carpet/sblucarpet,/area/submap/casino_event) +"ey" = (/obj/machinery/door/airlock{id_tag = "craps_2"; name = "Private Craps Room 2"},/turf/simulated/floor/carpet/purcarpet,/area/submap/casino_event) +"ez" = (/obj/machinery/door/airlock/glass_security{req_access = list(101); req_one_access = null},/turf/simulated/floor/tiled,/area/submap/casino_event) +"eA" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 4},/obj/structure/flora/pottedplant/unusual,/turf/simulated/floor/tiled,/area/submap/casino_event) +"eB" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/submap/casino_event) +"eC" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/red/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/submap/casino_event) +"eD" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/machinery/vending/security{dir = 8; req_access = list(101)},/turf/simulated/floor/tiled,/area/submap/casino_event) +"eE" = (/obj/structure/table/woodentable,/obj/random/maintenance/foodstuff,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"eF" = (/obj/structure/flora/pottedplant/tropical,/turf/simulated/floor/tiled,/area/submap/casino_event) +"eG" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/submap/casino_event) +"eH" = (/obj/machinery/door/airlock/maintenance/common,/obj/effect/floor_decal/rust,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/submap/casino_event) +"eI" = (/obj/structure/coatrack,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"eJ" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/submap/casino_event) +"eK" = (/obj/structure/table/reinforced,/obj/item/device/radio/headset/casino,/obj/item/device/radio/headset/casino,/obj/item/device/radio/headset/casino,/obj/item/device/radio/headset/casino,/obj/item/device/radio/headset/casino/bowman,/obj/item/device/radio/headset/casino/bowman,/turf/simulated/floor/tiled,/area/submap/casino_event) +"eL" = (/obj/structure/table/glass,/obj/machinery/vending/wallmed1/public{pixel_y = -32},/obj/item/weapon/backup_implanter,/obj/item/weapon/backup_implanter,/obj/item/weapon/backup_implanter,/obj/item/weapon/backup_implanter,/obj/item/weapon/backup_implanter,/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"eM" = (/obj/random/trash_pile,/obj/random/maintenance,/obj/effect/floor_decal/rust,/obj/structure/railing{dir = 4},/turf/simulated/floor/plating,/area/submap/casino_event) +"eN" = (/turf/simulated/floor/lino,/area/submap/casino_event) +"eO" = (/obj/structure/casino_table/craps{dir = 1},/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"eP" = (/obj/structure/closet,/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"eQ" = (/obj/machinery/light{dir = 1},/obj/machinery/vending/loadout/uniform,/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"eR" = (/obj/machinery/transhuman/autoresleever,/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"eS" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/red/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 1},/obj/machinery/vending/wallmed1/public{pixel_y = 28},/obj/structure/table/rack,/obj/item/weapon/spacecasinocash/c500,/obj/item/weapon/spacecasinocash/c500,/obj/item/weapon/spacecasinocash/c500,/turf/simulated/floor/tiled,/area/submap/casino_event) +"eT" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/submap/casino_event) +"eU" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/red/border{dir = 5},/obj/structure/closet/firecloset,/turf/simulated/floor/tiled,/area/submap/casino_event) +"eV" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/submap/casino_event) +"eW" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/obj/item/device/radio,/turf/simulated/floor/tiled,/area/submap/casino_event) +"eX" = (/obj/structure/bed/chair/office/light{dir = 4},/turf/simulated/floor/tiled,/area/submap/casino_event) +"eY" = (/obj/item/modular_computer/console{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/submap/casino_event) +"eZ" = (/obj/random/trash_pile,/obj/effect/floor_decal/rust,/obj/structure/railing{dir = 4},/turf/simulated/floor/plating,/area/submap/casino_event) +"fa" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/wood,/area/submap/casino_event) +"fb" = (/obj/structure/table/woodentable,/obj/item/trash/bowl,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"fc" = (/obj/machinery/door/airlock{id_tag = "blackjack_1"; name = "Private Blackjack Room 1"},/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) +"fd" = (/obj/machinery/door/airlock{id_tag = "blackjack_2"; name = "Private Blackjack Room 2"},/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) +"fe" = (/obj/machinery/door/airlock{id_tag = "blackjack_3"; name = "Private Blackjack Room 3"},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"ff" = (/obj/structure/table/reinforced,/obj/machinery/button/remote/blast_door{id = "casino_check"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/submap/casino_event) +"fg" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/submap/casino_event) +"fh" = (/obj/structure/table/reinforced,/obj/item/ammo_magazine/m45{pixel_x = -5; pixel_y = -3},/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45{pixel_x = 5; pixel_y = 3},/turf/simulated/floor/tiled,/area/submap/casino_event) +"fi" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/structure/table/reinforced,/obj/item/weapon/handcuffs{pixel_y = -5},/obj/item/weapon/handcuffs,/obj/item/weapon/handcuffs{pixel_y = 5},/turf/simulated/floor/tiled,/area/submap/casino_event) +"fj" = (/obj/structure/casino_table/blackjack_m{dir = 4},/obj/machinery/light/floortube{dir = 8},/obj/item/weapon/deck/cards/casino,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"fk" = (/obj/machinery/chipmachine{pixel_x = -32},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) +"fl" = (/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) +"fm" = (/obj/machinery/button/remote/airlock{id = "blackjack_1"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) +"fn" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/storage/box/roulette_balls_normal,/obj/item/weapon/storage/box/roulette_balls_fancy,/obj/item/weapon/storage/box/roulette_balls_cheat,/turf/simulated/floor/carpet/purple,/area/submap/casino_event) +"fo" = (/obj/machinery/chipmachine{pixel_x = -32},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) +"fp" = (/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) +"fq" = (/obj/machinery/button/remote/airlock{id = "blackjack_2"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) +"fr" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/storage/box/roulette_balls_normal,/obj/item/weapon/storage/box/roulette_balls_fancy,/obj/item/weapon/storage/box/roulette_balls_cheat,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"fs" = (/obj/machinery/chipmachine{pixel_x = -32},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"ft" = (/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"fu" = (/obj/machinery/button/remote/airlock{id = "blackjack_3"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"fv" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/storage/pill_bottle/dice,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/dicecup,/turf/simulated/floor/carpet/sblucarpet,/area/submap/casino_event) +"fw" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/reddouble,/turf/simulated/floor/wood,/area/submap/casino_event) +"fx" = (/obj/item/weapon/stool/baystool/padded,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"fy" = (/obj/item/modular_computer/console{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/red/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/submap/casino_event) +"fz" = (/obj/structure/bed/chair/office/light,/turf/simulated/floor/tiled,/area/submap/casino_event) +"fA" = (/obj/structure/table/reinforced,/obj/item/weapon/handcuffs,/obj/item/weapon/handcuffs,/obj/item/ammo_casing/spent,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/red/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/red/bordercorner2,/turf/simulated/floor/tiled,/area/submap/casino_event) +"fB" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/red/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/submap/casino_event) +"fC" = (/obj/item/weapon/gun/projectile/shotgun/pump{ammo_type = /obj/item/ammo_casing/a12g/pellet; pixel_x = 1; pixel_y = 4},/obj/item/weapon/gun/projectile/shotgun/pump{ammo_type = /obj/item/ammo_casing/a12g/pellet; pixel_x = 2; pixel_y = -6},/obj/structure/table/rack/gun_rack,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/red/bordercorner2,/turf/simulated/floor/tiled,/area/submap/casino_event) +"fD" = (/obj/structure/table/rack,/obj/item/ammo_magazine/ammo_box/b12g/pellet{pixel_x = 3; pixel_y = -3},/obj/item/ammo_magazine/ammo_box/b12g/pellet{pixel_x = -5; pixel_y = -3},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/item/ammo_magazine/ammo_box/b12g/pellet{pixel_x = 3; pixel_y = 3},/obj/item/ammo_magazine/ammo_box/b12g/pellet{pixel_x = -5; pixel_y = 3},/turf/simulated/floor/tiled,/area/submap/casino_event) +"fE" = (/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/red/border{dir = 6},/obj/item/clothing/suit/armor/bulletproof/alt{pixel_x = -6},/obj/item/clothing/suit/armor/bulletproof/alt{pixel_x = 6},/turf/simulated/floor/tiled,/area/submap/casino_event) +"fF" = (/obj/structure/table/rack/shelf,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"fG" = (/obj/structure/table/rack/shelf,/obj/item/device/radio/headset/casino,/obj/item/device/radio/headset/casino,/obj/item/device/radio/headset/casino,/obj/item/device/radio/headset/casino,/obj/item/device/radio/headset/casino,/obj/item/device/radio/headset/casino,/obj/item/device/radio/headset/casino/bowman,/obj/item/device/radio/headset/casino/bowman,/obj/item/device/radio/headset/casino/bowman,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"fH" = (/obj/machinery/telecomms/allinone/casino,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"fI" = (/obj/structure/table/woodentable,/obj/item/trash/plate,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"fJ" = (/obj/structure/casino_table/blackjack_l{dir = 8},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"fK" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) +"fL" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) +"fM" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) +"fN" = (/obj/structure/bed/chair/comfy/red,/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) +"fO" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"fP" = (/obj/structure/bed/chair/comfy/green,/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"fQ" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/submap/casino_event) +"fR" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"fS" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor/eastleft{dir = 2},/obj/item/weapon/pen,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "casino_check"; opacity = 0},/turf/simulated/floor/tiled,/area/submap/casino_event) +"fT" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor/eastright{dir = 2},/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "casino_check"; opacity = 0},/turf/simulated/floor/tiled,/area/submap/casino_event) +"fU" = (/obj/structure/table/woodentable,/obj/item/trash/plate,/obj/item/weapon/material/kitchen/utensil/fork/plastic,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"fV" = (/obj/structure/casino_table/blackjack_m{dir = 8},/obj/machinery/light/floortube{dir = 4},/obj/item/weapon/deck/cards/casino,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"fW" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) +"fX" = (/obj/structure/casino_table/blackjack_l{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) +"fY" = (/obj/item/weapon/stool/padded{dir = 4},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"fZ" = (/obj/structure/casino_table/blackjack_r{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) +"ga" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) +"gb" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) +"gc" = (/obj/structure/casino_table/blackjack_l{dir = 1},/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) +"gd" = (/obj/structure/casino_table/blackjack_l,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"ge" = (/obj/structure/casino_table/blackjack_r{dir = 1},/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) +"gf" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) +"gg" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"gh" = (/obj/structure/casino_table/blackjack_l{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"gi" = (/obj/structure/casino_table/blackjack_m,/obj/machinery/light/floortube{dir = 1},/obj/item/weapon/deck/cards/casino,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"gj" = (/obj/structure/casino_table/blackjack_r{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"gk" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"gl" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled,/area/submap/casino_event) +"gm" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/industrial/danger/corner{dir = 4},/turf/simulated/floor/tiled,/area/submap/casino_event) +"gn" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled,/area/submap/casino_event) +"go" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/industrial/danger/corner{dir = 8},/turf/simulated/floor/tiled,/area/submap/casino_event) +"gp" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/turf/simulated/floor/tiled,/area/submap/casino_event) +"gq" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/submap/casino_event) +"gr" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/submap/casino_event) +"gs" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/submap/casino_event) +"gt" = (/turf/simulated/floor/wood,/area/submap/casino_event) +"gu" = (/obj/structure/flora/pottedplant/stoutbush,/obj/effect/floor_decal/spline/plain{dir = 10},/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"gv" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/fancy/cigar/havana{pixel_x = -2; pixel_y = 2},/obj/item/weapon/storage/fancy/cigar{pixel_x = 2; pixel_y = 3},/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"gw" = (/obj/structure/flora/pottedplant/stoutbush,/obj/effect/floor_decal/spline/plain{dir = 6},/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"gx" = (/obj/structure/casino_table/blackjack_r{dir = 8},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"gy" = (/obj/item/weapon/stool/baystool/padded{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) +"gz" = (/obj/item/weapon/stool/baystool/padded{dir = 1},/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) +"gA" = (/obj/item/weapon/stool/baystool/padded{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"gB" = (/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/wood,/area/submap/casino_event) +"gC" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"gD" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/submap/casino_event) +"gE" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/lightgrey/bordercorner,/turf/simulated/floor/tiled,/area/submap/casino_event) +"gF" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/submap/casino_event) +"gG" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/submap/casino_event) +"gH" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/submap/casino_event) +"gI" = (/obj/structure/casino_table/blackjack_l,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"gJ" = (/obj/structure/casino_table/blackjack_m,/obj/machinery/light/floortube{dir = 1},/obj/item/weapon/deck/cards/casino,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"gK" = (/obj/structure/casino_table/blackjack_r,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"gL" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/wood,/area/submap/casino_event) +"gM" = (/obj/item/weapon/stool/padded{dir = 1},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"gN" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/submap/casino_event) +"gO" = (/obj/structure/table/woodentable,/obj/item/pizzabox/margherita,/turf/simulated/floor/wood,/area/submap/casino_event) +"gP" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/candle,/turf/simulated/floor/wood,/area/submap/casino_event) +"gQ" = (/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/submap/casino_event) +"gR" = (/obj/structure/table/woodentable,/obj/item/weapon/material/ashtray/glass,/turf/simulated/floor/wood,/area/submap/casino_event) +"gS" = (/obj/structure/table/woodentable,/obj/random/maintenance/foodstuff,/turf/simulated/floor/wood,/area/submap/casino_event) +"gT" = (/obj/structure/table/woodentable,/obj/random/drinkbottle,/turf/simulated/floor/wood,/area/submap/casino_event) +"gU" = (/obj/structure/table/woodentable,/obj/effect/floor_decal/spline/plain{dir = 8},/obj/item/clothing/mask/smokable/pipe,/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"gV" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/wood,/area/submap/casino_event) +"gW" = (/obj/machinery/light,/turf/simulated/floor/wood,/area/submap/casino_event) +"gX" = (/obj/machinery/light,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"gY" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/grey/border{dir = 9},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/submap/casino_event) +"gZ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/grey/border{dir = 1},/obj/machinery/vending/wallmed1/public{pixel_y = 28},/turf/simulated/floor/tiled,/area/submap/casino_event) +"ha" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/grey/border{dir = 5},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/submap/casino_event) +"hb" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/grey/border{dir = 8},/turf/simulated/floor/tiled,/area/submap/casino_event) +"hc" = (/obj/machinery/washing_machine,/turf/simulated/floor/tiled,/area/submap/casino_event) +"hd" = (/obj/structure/table/standard,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/turf/simulated/floor/tiled,/area/submap/casino_event) +"he" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/grey/border{dir = 4},/turf/simulated/floor/tiled,/area/submap/casino_event) +"hf" = (/obj/machinery/washing_machine,/obj/item/clothing/under/modjump3,/turf/simulated/floor/tiled,/area/submap/casino_event) +"hg" = (/obj/structure/table/standard,/obj/item/clothing/under/suit_jacket/really_black{pixel_x = 5; pixel_y = 10},/turf/simulated/floor/tiled,/area/submap/casino_event) +"hh" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/grey/border{dir = 10},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/submap/casino_event) +"hi" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/grey/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/submap/casino_event) +"hj" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/grey/bordercorner,/turf/simulated/floor/tiled,/area/submap/casino_event) +"hk" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/grey/border{dir = 6},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/submap/casino_event) +"hl" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/grey/border{dir = 10},/turf/simulated/floor/tiled,/area/submap/casino_event) +"hm" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/grey/border,/turf/simulated/floor/tiled,/area/submap/casino_event) +"hn" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/grey/border{dir = 6},/turf/simulated/floor/tiled,/area/submap/casino_event) +"ho" = (/obj/effect/floor_decal/corner/lightgrey{dir = 10},/obj/effect/floor_decal/corner/lightgrey{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/machinery/vending/bepis,/turf/simulated/floor/tiled/monotile,/area/submap/casino_event) +"hp" = (/obj/effect/floor_decal/corner/lightgrey{dir = 10},/obj/effect/floor_decal/corner/lightgrey{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/machinery/vending/sol,/turf/simulated/floor/tiled/monotile,/area/submap/casino_event) +"hq" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"hr" = (/obj/machinery/door/airlock{id_tag = "L7 Room 1"; name = "Private Room 1"},/turf/simulated/floor/wood,/area/submap/casino_event) +"hs" = (/obj/machinery/door/airlock{id_tag = "L7 Room 2"; name = "Private Room 2"},/turf/simulated/floor/wood,/area/submap/casino_event) +"ht" = (/obj/machinery/door/airlock{id_tag = "L7 Room 3"; name = "Private Room 3"},/turf/simulated/floor/wood,/area/submap/casino_event) +"hu" = (/obj/machinery/door/airlock{id_tag = "L7 Room 4"; name = "Private Room 4"},/turf/simulated/floor/wood,/area/submap/casino_event) +"hv" = (/obj/machinery/door/airlock{id_tag = "L7 VIP Room"; name = "VIP Room"},/turf/simulated/floor/wood,/area/submap/casino_event) +"hw" = (/obj/structure/toilet{dir = 4},/obj/machinery/button/remote/airlock{id = "casino_stall_1"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"hx" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/weapon/towel/random,/turf/simulated/floor/wood,/area/submap/casino_event) +"hy" = (/obj/structure/toilet{dir = 4},/obj/machinery/button/remote/airlock{id = "casino_stall_2"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"hz" = (/obj/machinery/button/remote/airlock{id = "L7 Room 1"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/wood,/area/submap/casino_event) +"hA" = (/obj/machinery/button/remote/airlock{id = "L7 Room 2"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/wood,/area/submap/casino_event) +"hB" = (/obj/machinery/button/remote/airlock{id = "L7 Room 3"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/wood,/area/submap/casino_event) +"hC" = (/obj/machinery/button/remote/airlock{id = "L7 Room 4"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/wood,/area/submap/casino_event) +"hD" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/submap/casino_event) +"hE" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/submap/casino_event) +"hF" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/wood,/area/submap/casino_event) +"hG" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/weapon/storage/pill_bottle/happy,/obj/item/clothing/under/bathrobe,/obj/item/clothing/under/bathrobe,/turf/simulated/floor/wood,/area/submap/casino_event) +"hH" = (/obj/structure/bed/chair/sofa/right/purp,/turf/simulated/floor/wood,/area/submap/casino_event) +"hI" = (/obj/structure/bed/chair/sofa/left/purp,/turf/simulated/floor/wood,/area/submap/casino_event) +"hJ" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet/purcarpet,/area/submap/casino_event) +"hK" = (/obj/structure/table/woodentable,/obj/random/drinkbottle,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/submap/casino_event) +"hL" = (/obj/structure/undies_wardrobe,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/submap/casino_event) +"hM" = (/obj/item/weapon/flame/candle/candelabra/everburn,/obj/structure/table/fancyblack,/turf/simulated/floor/wood,/area/submap/casino_event) +"hN" = (/obj/random/drinkbottle,/obj/structure/table/fancyblack,/turf/simulated/floor/wood,/area/submap/casino_event) +"hO" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/captaindouble,/obj/structure/curtain/open/bed,/turf/simulated/floor/carpet/purcarpet,/area/submap/casino_event) +"hP" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/submap/casino_event) +"hQ" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/yellowdouble,/turf/simulated/floor/wood,/area/submap/casino_event) +"hR" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/purpledouble,/turf/simulated/floor/wood,/area/submap/casino_event) +"hS" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/orangedouble,/turf/simulated/floor/wood,/area/submap/casino_event) +"hT" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/greendouble,/turf/simulated/floor/wood,/area/submap/casino_event) +"hU" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/bluedouble,/turf/simulated/floor/wood,/area/submap/casino_event) +"hV" = (/obj/structure/bed/chair/sofa/left/purp{dir = 1},/turf/simulated/floor/wood,/area/submap/casino_event) +"hW" = (/obj/structure/bed/chair/sofa/right/purp{dir = 1},/turf/simulated/floor/wood,/area/submap/casino_event) +"hX" = (/obj/structure/table/rack/shelf,/obj/item/weapon/deck/cards,/obj/item/weapon/deck/cards,/obj/item/weapon/deck/cards,/obj/item/weapon/deck/cards,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) +"hY" = (/obj/effect/floor_decal/steeldecal/steel_decals10,/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 4},/turf/simulated/floor/tiled/freezer,/area/submap/casino_event) +"hZ" = (/obj/effect/floor_decal/spline/plain{dir = 9},/turf/simulated/floor/water/pool,/area/submap/casino_event) +"ia" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/water/pool,/area/submap/casino_event) +"ib" = (/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/water/pool,/area/submap/casino_event) +"ic" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"id" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"ie" = (/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/water/pool,/area/submap/casino_event) +"if" = (/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/water/pool,/area/submap/casino_event) +"ig" = (/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/water/pool,/area/submap/casino_event) +"ih" = (/obj/random/soap,/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"ii" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/turf/simulated/floor/tiled,/area/submap/casino_event) +"ij" = (/obj/structure/table/glass,/obj/random/soap,/obj/item/weapon/towel/random,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"ik" = (/turf/simulated/floor/water/pool,/area/submap/casino_event) +"il" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/water/pool,/area/submap/casino_event) +"im" = (/obj/machinery/holoplant,/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"in" = (/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/water/pool,/area/submap/casino_event) +"io" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/water/pool,/area/submap/casino_event) +"ip" = (/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/water/pool,/area/submap/casino_event) +"iq" = (/obj/structure/casino_table/blackjack_r,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"ir" = (/obj/machinery/door/airlock{id_tag = "br bathroom"; name = "Bathroom"},/turf/simulated/floor/wood,/area/submap/casino_event) +"is" = (/obj/item/weapon/stool/padded{dir = 8},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"it" = (/obj/item/weapon/stool/padded{dir = 1},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"iu" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"iv" = (/obj/structure/casino_table/blackjack_l{dir = 8},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"iw" = (/obj/structure/casino_table/blackjack_m{dir = 8},/obj/machinery/light/floortube{dir = 4},/obj/item/weapon/deck/cards/casino,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"ix" = (/obj/item/weapon/stool/baystool/padded{dir = 8},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"iy" = (/obj/structure/casino_table/blackjack_r{dir = 8},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"iz" = (/obj/structure/casino_table/blackjack_l{dir = 1},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"iA" = (/obj/structure/casino_table/blackjack_m{dir = 1},/obj/item/weapon/deck/cards/casino,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"iB" = (/obj/structure/casino_table/blackjack_r{dir = 1},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"iC" = (/obj/item/weapon/stool/baystool/padded{dir = 1},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"iD" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/browndouble,/turf/simulated/floor/wood,/area/submap/casino_event) +"iE" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/double,/turf/simulated/floor/wood,/area/submap/casino_event) +"iF" = (/obj/machinery/button/remote/airlock{id = "L7 Room 5"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/wood,/area/submap/casino_event) +"iG" = (/obj/machinery/door/airlock{id_tag = "casino_stall_1"; name = "Stall 1"},/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"iH" = (/obj/machinery/door/airlock{name = "Backroom"},/turf/simulated/floor/wood,/area/submap/casino_event) +"iI" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/storage/pill_bottle/dice,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/dicecup,/turf/simulated/floor/carpet/purcarpet,/area/submap/casino_event) +"iJ" = (/obj/machinery/computer/timeclock/premade/north,/turf/simulated/floor/tiled,/area/submap/casino_event) +"iK" = (/obj/machinery/item_bank{pixel_y = 28},/turf/simulated/floor/tiled,/area/submap/casino_event) +"iL" = (/turf/space,/area/submap/casino_event) +"iM" = (/obj/structure/casino_table/craps,/obj/machinery/light/floortube{dir = 8},/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/obj/item/weapon/storage/dicecup,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"iN" = (/obj/structure/sink{pixel_y = 20},/obj/structure/mirror{pixel_y = 38},/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"iO" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/wood,/area/submap/casino_event) +"iP" = (/obj/structure/casino_table/blackjack_m{dir = 1},/obj/item/weapon/deck/cards/casino,/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) +"iQ" = (/obj/structure/casino_table/blackjack_m{dir = 1},/obj/item/weapon/deck/cards/casino,/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) +"iR" = (/obj/structure/casino_table/blackjack_m{dir = 1},/obj/item/weapon/deck/cards/casino,/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"iS" = (/obj/structure/sink{pixel_y = 20},/obj/structure/mirror{pixel_y = 38},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"iT" = (/obj/machinery/door/airlock{id_tag = "casino_stall_2"; name = "Stall 2"},/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"iU" = (/obj/structure/toilet{dir = 8},/turf/simulated/floor/tiled/kafel_full,/area/submap/casino_event) +"iV" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"iW" = (/obj/machinery/door/airlock{id_tag = "casino_stall_3"; name = "Stall 3"},/turf/simulated/floor/tiled/white,/area/submap/casino_event) +"iX" = (/obj/machinery/button/remote/airlock{id = "L7 VIP Room"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/wood,/area/submap/casino_event) +"iY" = (/obj/effect/overmap/visitable/sector/common_gateway/lucky7,/turf/space,/area/submap/casino_event) +"iZ" = (/obj/effect/landmark/hidden_level,/turf/space,/area/submap/casino_event) +"ja" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/deck/cards/casino,/obj/item/weapon/deck/cards,/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) +"jb" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/deck/cards/casino,/obj/item/weapon/deck/cards,/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) +"jc" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/deck/cards/casino,/obj/item/weapon/deck/cards,/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) +"jd" = (/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/wood,/area/submap/casino_event) +"je" = (/obj/machinery/door/airlock{id_tag = "L7 Room 5"; name = "Private Room 5"},/turf/simulated/floor/wood,/area/submap/casino_event) +"jn" = (/obj/machinery/door/airlock{name = "Tournament Room"},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) +"jq" = (/obj/structure/flora/pottedplant/tall,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) +"jx" = (/obj/machinery/vending/foodasian,/turf/simulated/floor/lino,/area/submap/casino_event) +"jy" = (/obj/machinery/vending/fooditalian,/turf/simulated/floor/lino,/area/submap/casino_event) +"jz" = (/obj/machinery/vending/foodfast,/turf/simulated/floor/lino,/area/submap/casino_event) +"jA" = (/obj/machinery/vending/fooddessert{dir = 1},/turf/simulated/floor/lino,/area/submap/casino_event) +"jB" = (/obj/machinery/vending/foodstuffing{dir = 1},/turf/simulated/floor/lino,/area/submap/casino_event) +"jC" = (/obj/machinery/vending/foodfish,/turf/simulated/floor/lino,/area/submap/casino_event) +"jD" = (/obj/machinery/vending/foodveggie,/turf/simulated/floor/lino,/area/submap/casino_event) +"jE" = (/obj/machinery/vending/foodmeat,/turf/simulated/floor/lino,/area/submap/casino_event) +"jG" = (/obj/machinery/vending/foodfish{dir = 1},/turf/simulated/floor/lino,/area/submap/casino_event) +"jH" = (/obj/machinery/vending/foodmeat{dir = 1},/turf/simulated/floor/lino,/area/submap/casino_event) +"jI" = (/obj/machinery/vending/deluxe_boozeomat/open,/turf/simulated/floor/lino,/area/submap/casino_event) +"jJ" = (/obj/machinery/vending/deluxe_cigs/open,/turf/simulated/floor/lino,/area/submap/casino_event) +"jK" = (/obj/machinery/vending/deluxe_dinner/open,/turf/simulated/floor/lino,/area/submap/casino_event) + +(1,1,1) = {" +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaaaaaaaaaaiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaaaaabacabaaaaiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaaabadabadabaaiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeafagagagahaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaiaiaiaiaiaiaiaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeajajaiakaiajajaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaealalaiaeaialalaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeamamaianaiamamaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaiaiaiaiaiaiaiaeaeaaaaaaaeaaaaaaaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaoaiaiaiapaeaeaqarasaratasarasauaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaeavavavaeaeaeawaxaxaxaqaxaxaxaqaaiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeayazazazazazazaeaqaqaqaqaqaqaqaqaqaaiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaAazazazazazazaBaqaqaqaqaqaCaDaEaqaaiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeayazazazazazazaeaqaFaGaFaqaCaHaEaqaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaeazazazaeaeaeaeaeaeaeaeaeaeaeaeaeaeaaaaaaaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaeaeaeaeaeaeiLiLiLiLiLiLiLiLaeaIazazazazazazazazazaJazazazazazaJazazazazazazaKaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaLaMaNaOaOaPaeiLiLiLiLiLiLiLiLaaaQaQazazazazazazazazazazazazazazazazazazazazazaRaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaSaTaTaTaOaOaeiLiLiLiLiLiLiLiLaaaUaUazazazazazazazazazazazazazazazazazazazazazaKaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaVaTaPaWaXaYaeiLiLiLiLiLiLiLiLaaaZaZazazazbabaaeaeaebbaeaeaeaeaebcaeaeaeaeaebdaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaOaTaSbebfbgaeiLiLiLiLiLiLiLiLaeazazazazazbhbiaebjbkblbkbkaebmbnbobnbnaebpbqbrbqbqaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaOaTbsaebtbuaeiLiLiLiLiLiLiLiLaeazazazazazbvbvaebkbwbwbwbkaebnbxbxbxbnaebqbybybybqaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaeaeaeaeaeaeaebzaeaeaeaeaeaeaaaaaaaeaeaeaeaeaQaQazazazbabaaebAbBbBbBbCaebDbEbEbEbFaebGbHbHbHbIaeaeaeaeiLaeaeaeaeiLaeaeaeaeiLaeaeaeaeiLaeaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaOaOaSbJbKbLaOaObMbNaebObPaebQbRbSbTaiaebUbVaebWaUazazazbhbiaebXbBbYbBbZaecabEcbbEccaecdbHcebHcfaedpdsaeiLaedpdsaeiLaedpdsaeiLaedpdsaeiLaedpdsaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaecgaTaTaTaTbMbMaTaTbMchaTaTciaicjckclaicmcncoaeaZaZazazazbvbvaebAbBbBbBbCaebDbEbEbEbFaebGbHbHbHbIaedvdyaeiLaedvdyaeiLaedvdyaeiLaedvdyaeiLaedvdyaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaecpaTaOaPaObJaScqcqcqaeaOcraeaicsckctaiaecucvaeazazazazazazazaebkcwcxcwbkaebncyczcybnaebqcAcBcAbqaeaedCaeaeaeaedCaeaeaeaedCaeaeaeaedCaeaeaeaedCaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLcDcDcDcDcDaecCcDcDcDcDcDcEaOcFaeaOaTaeaiaiaiaiaiaeaeaeaeaeaeazazazaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaehxgthEhTaehxgthEhRaehxgthEhUaehxgthEhSaehxgthEfwaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLcDcHcIcJcDcGcGcDcHcIcJcDcKcLcMaeaSbMaeaiaiaiaiaiaiaicNaeazazazazazaJazcOcScPcQcRazcTazaJazazazazazazaJazazaehFgtgWgtaehFgtgWgtaehFgtgWgtaehFgtgWgtaehFgtgWgtaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLcDaiaiaicUcGcGcUaiaiaicDcDcDcDcDaObMaecVaiaicWcXaiaicYaeazazazazazazazazazazazazazazazazazazazazazazazazcZaeaeiHaeaeaeaeiHaeaeaeaeiHaeaeaeaeiHaeaeaeaeiHaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLcDcDcDcDcDcGdacDcDcDcDcDdbdcddcDdebMaecVaiaihXdfaiaidgaedhazdiaUaUdjazazazazazazazazazazdkdlazazdmdnazazdoaeesbndqdraefnbkdtduaefrbqdwdxaefvdzdAdBaeiIdDdEdFaeaeaeaeaeaeaeaeaeaeaeaeaeaeiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLcDdGcIcJcDcGcGcDdGcIcJcDdHdIddcDdJaTaedKaiaidLdfaiaiaiaeazazdidMdNdjdOaeaIazdPdQdOaeaIazazazazazazazazazdRaebndSdTbnaebkdUdVbkaebqdWdXbqaedzdYdZdzaedDeaebdDaebqbqfxbqbqbqbqfxbqbqbqbqaeiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLcDaiaiaicUcGcGcUaiaiaicDecdIddcDaOaTaedKaiaieddfaiaiaieeazazazazazazazazazefegdQazazazazazazazazazazazazazaebnbnehbnaebkbkeibkaebqbqejbqaedzdzekdzaedDdDeldDaefYgdgiiqisfYgdgiiqisbqbqaeiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLcDcDcDcDcDcGdacDcDcDcDcDcDemcDcDbNaTaeenaiaieoepaiaiaiaeazazdiaUeqdjazazazazerdQazazazazdkdlazaziMetazazdOaeaeaeeuaeaeaeaeevaeaeaeaeewaeaeaeaeexaeaeaeaeeyaeaebqitititbqbqitititbqiubqaeiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaecGcGcGcGezcGeAeBcGeCcCbLaTaeaiaiaiaiaiaiaiaiaeaIazdiaUeEdjazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazaebqbqbqbqbqbqbqbqbqfYivbqaeiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeeFcGcGcGezcGcGcGcGeGaeaeeHaeaiaiaiaeaeaeaeaeaeeIazazazazazdOaeaIazazazdOaeaIazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazjnbqbqbqbqbqbqbqbqbqfYiwixaeiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaeaeaeaeaeezaeaeaeeJcGeKcGeDaeeMbMaeaiaiaiaejxjyjxjzjyjzazdieEaUdjazazazazazazazazazazdkdlazaziMeOazazazazazazazazazazazazazazazazazazazazazazazazazazazjqaebqbqbqbqbqbqbqbqbqfYiybqaeiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeePeQePeRaeeScGeTeUaeeVcGeWeXeYaeeZaTfaaiaiaiaeeNeNeNeNeNeNazdiaUfbdjazazazazdPdQazazazazazazazazazazazazazaeaeaefcaeaeaeaeaefdaeaeaeaeaefeaeaeaeaeaeaeaeaeaeaebqiuiuiubqbqiuiuiubqitbqaeiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaecncncncnaeeVcGcGffaefgcGfhcGfiaeaSaOaeaiaiaiaejAjGjBjAjBjHazazazazazazazazeffjdQazazazazazazazazazazazazdOaefkflfmflflaefofpfqfpfpaefsftfuftftaeiLiLiLiLiLiLaefYiziAiBisfYiziAiBisbqbqaeiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaeaeaeaeaeeLeLcncnaefyfzcGfAaefBcGfCfDfEaeaPaOaefFfGfHaejCjDjEjIjJjKazdiaUfIdjdOaeaIazerdQdOaeaIazazeffJazazazdPdQazaeflfKfLfKflaefpfMfNfMfpaeftfOfPfOftaeiLiLiLiLiLiLaebqbqiCbqbqbqbqiCbqbqbqbqaeiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaecGcGfQiKiJaeaeaefRaeaeaefSfTaeaeaeezaeaeaeaeaeaeaeaeaeaeaeeNeNeNeNeNeNazdifUaUdjazcOazazazazazcTazazazeffVdQazeffjdQazaefWfXiPfZgaaegbgciQgegfaeggghiRgjgkaeiLiLiLiLiLiLaeaeaeaeaeaeaeaeaeaeaeaeaeaeiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaecGcGcGcGcGcGcGcGcGcGglgmgngngogpgqcGgrgpgsglgtgtgtgugvgwgTiOiOiOiOiOjdazazazazazazazazazazazazazazazazefgxazazazerdQazaejaflgyflflaejbfpgzfpfpaejcftgAftftaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaecGcGcGcGcGcGcGcGcGcGglcGcGcGcGcGcGcGcGcGcGglgtgtgtgtgtgtgtgtgtgtgtgtgBazbababababaazazgCazazbababababaazazazgCazazazazaeaeiHaeaeaeaeaeiHaeaeaeaeaeiHaeaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaecGcGcGcGcGcGcGgDcGcGglgEgFgGgFgFgFgFgGgFgHglgtgtgtgtgtgtgtgtgtgtgtgtgBazbhbhbhbhbhazgIgJgKazbhbhbhbhbhazazgIgJgKazazdOaehxgtgthEhQaehxgtgthEiDaehxgtgthEiEaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaecGcGgDcGcGaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaegtgLgLgLgtgLgLgLgtgLgLgLgBazbvbvbvbvbvazgMgMgMazbvbvbvbvbvazazgMgMgMazazcZaehFgtgWgtgtaehFgtgWgtgtaehFgtgWgtgtaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaeaeaeaeaeiLiLiLiLiLiLiLiLiLaehwiGiNiNiSaegNgOgPgQgtgQgRgSgtgQgPgTgBazbababababaazazazazazbababababaazazbababaazazgUaeaedCaeaeaeaeaedCaeaeaeaeaedCaeaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaecncncnirgtgVgVgVgtgVgVgVgtgVgVgVgBazbhbhbhbhbhazazazazazbhbhbhbhbhazazbhbhbhazazdRaedpdyaeiLiLaedpdyaeiLiLaedpdyaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaehyiTcncncnaegtgtgtgtgWgtgtgtgWgtgtgtgBgXbvbvbvbvbvgXazazazgXbvbvbvbvbvgXazbvbvbvgXazazaedviUaeiLiLaedviUaeiLiLaedviUaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaecncncnaeaeaaaaaaaeaaaaaaaeaaaaaaaeaeaeaeaeaeaeaeazazazaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeiLiLaeaeaeaeiLiLaeaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeiViWcncncoaeiLiLiLiLiLiLiLiLiLiLiLiLiLaegYgZgZgZhaaeazazazaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaeaeaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLaahbhccGhdheaeazazazaaiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaahbhfcGhgheaeazazazaaiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaahbhccGcGheaeazazazaaiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaehhhicGhjhkaeazazazaeiLiLiLiLiLiLiLaeaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaeaeaeaehlhmhnaeaeazazazaeaeaeaeaeaeaeaeaehohpaeaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeayazazazazhqhqhqazaJazazazaJazazazazazazazazhqhqaJazaKaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaAazazazazazazazazazazazazazazazazazazazazazazazazazaRaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeayazazgXazazazazazazazgXazazazazazazazgXazazazazazazaKaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaehraeaeaehsaeaeaehtaeaeaehuaeaeaejeaeaeaehvaeaeaeaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaegthzhxaegthAhxaegthBhxaegthChxaegtiFhxaegtiXgtgtgthDgtaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaehEgthFaehEgthFaehEgthFaehEgthFaehEgthFaehGgthHhIdDdDhJaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaehKgtgtaehKgtgtaehKgtgtaehKgtgtaehKgtgtaehLgthMhNdDdDhOaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaehPgthQaehPgthRaehPgthSaehPgthTaehPgthUaegtgthVhWdDdDhJaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaegtgtgtaegtgtgtaegtgtgtaegtgtgtaegtgtgtaegtgtgtgtgtgWgtaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaecmaeaeaecmaeaeaecmaeaeaecmaeaeaecmaeaeaecmaeaeaeaeaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaecnbUbVaecnbUbVaecnbUbVaecnbUbVaecnbUbVaecnbUbVhYhZiaibaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeiccncnaeiccncnaeiccncnaeiccncnaeiccncnaeidcncnhYieifigaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaecnihiiaecnihiiaecnihiiaecnihiiaecnihiiaeijcncnhYieikilaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeidcncnhYieikigaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeiicnimhYinioipaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaeaeaeaeaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiYiZiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +"} diff --git a/maps/submaps/pois_vr/aerostat/CaveS.dmm b/maps/submaps/pois_vr/aerostat/CaveS.dmm index db8ec8a9b3..5bf4b8e655 100644 --- a/maps/submaps/pois_vr/aerostat/CaveS.dmm +++ b/maps/submaps/pois_vr/aerostat/CaveS.dmm @@ -12,6 +12,10 @@ "d" = ( /turf/simulated/mineral/ignore_mapgen/virgo2, /area/submap/virgo2/CaveS) +"e" = ( +/obj/structure/loot_pile/maint/junk, +/turf/simulated/floor, +/area/submap/virgo2/CaveS) "f" = ( /obj/tether_away_spawner/aerostat_surface, /turf/simulated/mineral/floor/ignore_mapgen/virgo2, @@ -60,10 +64,6 @@ /obj/random/toolbox, /turf/simulated/floor, /area/submap/virgo2/CaveS) -"w" = ( -/obj/structure/loot_pile/surface, -/turf/simulated/floor, -/area/submap/virgo2/CaveS) "x" = ( /obj/structure/table/woodentable, /obj/item/device/survivalcapsule, @@ -1352,7 +1352,7 @@ z z F u -w +e r d d @@ -1472,7 +1472,7 @@ d d r r -w +e u r r diff --git a/maps/submaps/pois_vr/debris_field/_templates.dm b/maps/submaps/pois_vr/debris_field/_templates.dm index 15c81a3f43..0a13163e1c 100644 --- a/maps/submaps/pois_vr/debris_field/_templates.dm +++ b/maps/submaps/pois_vr/debris_field/_templates.dm @@ -237,14 +237,14 @@ cost = 10 allow_duplicates = FALSE discard_prob = 10 - + /datum/map_template/debrisfield/new_escape_pod_infested_xeno name = "Xeno-Infested Escape Pod" mappath = 'new_escapepod_xeno.dmm' cost = 20 allow_duplicates = FALSE discard_prob = 25 - + /datum/map_template/debrisfield/new_escape_pod_infested_carp name = "Carp-Infested Escape Pod" mappath = 'new_escapepod_carp.dmm' @@ -266,7 +266,7 @@ allow_duplicates = FALSE discard_prob = 25 -/datum/map_template/debrisfield/gutted_mackerel +/datum/map_template/debrisfield/wrecked_salamander name = "Wrecked Salamander" mappath = 'maps/offmap_vr/om_ships/salamander_wreck.dmm' cost = 35 diff --git a/maps/submaps/surface_submaps/wilderness/AbandonedLab.dmm b/maps/submaps/surface_submaps/wilderness/AbandonedLab.dmm new file mode 100644 index 0000000000..455551b21b --- /dev/null +++ b/maps/submaps/surface_submaps/wilderness/AbandonedLab.dmm @@ -0,0 +1,196 @@ +"ab" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/trash,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"aE" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/decal/remains/human,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"aJ" = (/obj/effect/decal/cleanable/blood/oil,/obj/effect/decal/cleanable/generic,/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/submap/AbandonedLab{requires_power = 0}) +"bj" = (/obj/machinery/door/airlock/security{icon_state = "door_locked"; locked = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"bl" = (/mob/living/simple_mob/mechanical/hivebot/tank,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0}) +"bI" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/hydro,/area/submap/AbandonedLab{requires_power = 0}) +"bZ" = (/obj/effect/graffitispawner,/turf/simulated/wall/iron,/area/submap/AbandonedLab{requires_power = 0}) +"cH" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/shuttle/wall/voidcraft/hard_corner/red,/area/submap/AbandonedLab{requires_power = 0}) +"dl" = (/obj/random/junk,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/AbandonedLab{requires_power = 0}) +"do" = (/obj/effect/wingrille_spawn,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0}) +"dG" = (/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/blood/drip{pixel_x = -3; pixel_y = 16},/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/AbandonedLab{requires_power = 0}) +"dI" = (/obj/item/weapon/material/shard,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"dO" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/maintenance/research,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"eg" = (/obj/item/weapon/material/shard,/obj/structure/grille/broken,/obj/item/weapon/material/shard,/turf/simulated/floor/plating,/area/submap/AbandonedLab{requires_power = 0}) +"en" = (/obj/effect/decal/remains/human,/obj/effect/decal/cleanable/dirt,/obj/random/medical/pillbottle,/obj/structure/sign/periodic{pixel_x = 32},/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"fl" = (/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/cobweb2,/obj/structure/boulder,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/AbandonedLab{requires_power = 0}) +"gk" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/hydro,/area/submap/AbandonedLab{requires_power = 0}) +"gn" = (/obj/effect/decal/remains/human,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/template_noop) +"gt" = (/obj/structure/bed/chair/bay{dir = 4},/turf/template_noop,/area/template_noop) +"gI" = (/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/dirt,/obj/machinery/light/poi,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"gP" = (/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong,/turf/simulated/floor/tiled/techfloor/grid,/area/submap/AbandonedLab{requires_power = 0}) +"hl" = (/obj/structure/bed/chair/bay{dir = 4},/mob/living/simple_mob/humanoid/merc/ranged{health = 15; maxHealth = 15},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/blood/gibs{color = "red"; icon_state = "gib1_flesh"},/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"hs" = (/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/loot_spawn/low,/obj/structure/table/rack/shelf,/turf/simulated/floor/tiled/hydro,/area/submap/AbandonedLab{requires_power = 0}) +"hH" = (/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/dirt,/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/obj/random/projectile/shotgun,/obj/random/ammo,/obj/random/ammo,/obj/item/weapon/storage/box/empslite,/obj/item/weapon/storage/box/handcuffs,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"hP" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/generic,/mob/living/simple_mob/mechanical/hivebot/ranged_damage/dot,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0}) +"hT" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"ia" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/rust,/obj/machinery/light/poi{dir = 1},/obj/effect/landmark/loot_spawn/low,/obj/structure/table/rack,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"ie" = (/obj/effect/decal/cleanable/dirt,/mob/living/simple_mob/mechanical/hivebot/ranged_damage/backline,/turf/simulated/shuttle/floor/voidcraft,/area/submap/AbandonedLab{requires_power = 0}) +"iv" = (/obj/effect/decal/cleanable/blood/tracks{color = "red"; desc = "Your instincts say you shouldn't be following these."; dir = 1; icon = 'icons/effects/blood.dmi'; icon_state = "tracks"},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/warning,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"iA" = (/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/research,/turf/simulated/floor/reinforced,/area/submap/AbandonedLab{requires_power = 0}) +"iL" = (/obj/effect/decal/cleanable/blood/tracks{color = "red"; desc = "Your instincts say you shouldn't be following these."; dir = 5; icon = 'icons/effects/blood.dmi'; icon_state = "tracks"},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/random/maintenance/research,/obj/effect/gibspawner/robot,/obj/structure/table,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"iS" = (/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"jE" = (/obj/effect/wingrille_spawn,/turf/simulated/wall/iron,/area/submap/AbandonedLab{requires_power = 0}) +"jN" = (/obj/effect/decal/cleanable/dirt,/obj/random/contraband/nofail,/turf/simulated/floor/tiled/hydro,/area/submap/AbandonedLab{requires_power = 0}) +"jW" = (/obj/machinery/light/small/poi{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/replicator/clothing,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/AbandonedLab{requires_power = 0}) +"ka" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/wall/iron,/area/submap/AbandonedLab{requires_power = 0}) +"kc" = (/obj/effect/decal/cleanable/generic,/obj/structure/closet/crate/hydroponics/exotic,/obj/item/seeds/ambrosiagaiaseed,/turf/simulated/floor/tiled/hydro,/area/submap/AbandonedLab{requires_power = 0}) +"kd" = (/obj/structure/sign/xenobio,/turf/simulated/shuttle/wall/voidcraft/hard_corner/red,/area/submap/AbandonedLab{requires_power = 0}) +"ku" = (/turf/simulated/mineral/ignore_mapgen,/area/submap/AbandonedLab{requires_power = 0}) +"kA" = (/obj/structure/salvageable/computer,/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"kF" = (/obj/effect/decal/cleanable/dirt,/obj/item/ammo_casing/a10mm{dir = 5},/obj/effect/decal/cleanable/blood,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"mc" = (/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"mu" = (/turf/simulated/shuttle/wall/voidcraft/hard_corner/red,/area/submap/AbandonedLab{requires_power = 0}) +"mE" = (/obj/structure/table/reinforced,/obj/structure/window/basic{dir = 4},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/random/maintenance/research,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"mQ" = (/obj/structure/disposalpipe/broken{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/item/weapon/material/shard/shrapnel,/turf/simulated/floor/reinforced,/area/submap/AbandonedLab{requires_power = 0}) +"ne" = (/obj/structure/prop/rock/small/alt,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/AbandonedLab{requires_power = 0}) +"no" = (/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/AbandonedLab{requires_power = 0}) +"nr" = (/obj/effect/decal/cleanable/blood/drip,/turf/template_noop,/area/template_noop) +"oc" = (/obj/effect/decal/cleanable/cobweb2{icon_state = "cobweb1"},/obj/effect/decal/cleanable/ash,/obj/random/maintenance/research,/turf/simulated/shuttle/floor/voidcraft,/area/submap/AbandonedLab{requires_power = 0}) +"ol" = (/obj/structure/sign/chemistry,/turf/simulated/wall/iron,/area/submap/AbandonedLab{requires_power = 0}) +"om" = (/mob/living/simple_mob/mechanical/hivebot/ranged_damage,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/template_noop) +"ot" = (/obj/structure/sign/hydro,/turf/simulated/wall/iron,/area/submap/AbandonedLab{requires_power = 0}) +"ou" = (/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/research,/turf/simulated/floor/tiled/hydro,/area/submap/AbandonedLab{requires_power = 0}) +"oI" = (/obj/effect/decal/cleanable/dirt,/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard,/turf/simulated/floor/tiled/hydro,/area/submap/AbandonedLab{requires_power = 0}) +"oQ" = (/obj/effect/decal/cleanable/dirt,/obj/random/contraband/nofail,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"oW" = (/obj/random/vendorfood,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0}) +"pd" = (/obj/structure/bonfire/sifwood,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/template_noop) +"pV" = (/obj/machinery/door/airlock/maintenance/rnd{req_one_access = null},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"qH" = (/obj/structure/filingcabinet,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"qO" = (/obj/effect/decal/cleanable/dirt,/mob/living/simple_mob/mechanical/hivebot/ranged_damage/laser,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0}) +"rd" = (/obj/structure/salvageable/implant_container,/obj/item/weapon/storage/box/syringes,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"rs" = (/obj/structure/closet/cabinet,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance/medical,/obj/random/cash,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"sb" = (/turf/simulated/wall/solidrock,/area/submap/AbandonedLab{requires_power = 0}) +"sn" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"tf" = (/obj/effect/decal/cleanable/dirt,/mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege/fragmentation,/turf/simulated/floor/reinforced,/area/submap/AbandonedLab{requires_power = 0}) +"to" = (/obj/structure/bed/chair/bay{dir = 8},/obj/effect/decal/cleanable/blood/oil,/mob/living/simple_mob/humanoid/merc/ranged{health = 15; maxHealth = 15},/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/template_noop) +"tv" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/firstaid,/obj/structure/table/glass,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0}) +"ty" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/wall/skipjack,/area/submap/AbandonedLab{requires_power = 0}) +"uu" = (/obj/structure/table/rack/shelf/steel,/obj/random/energy,/turf/simulated/floor/tiled/techfloor/grid,/area/submap/AbandonedLab{requires_power = 0}) +"uC" = (/obj/item/weapon/material/shard/shrapnel,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"uZ" = (/obj/structure/flora/tree/sif,/turf/template_noop,/area/template_noop) +"vz" = (/obj/effect/decal/cleanable/dirt,/obj/effect/gibspawner/generic,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/AbandonedLab{requires_power = 0}) +"vP" = (/obj/effect/decal/cleanable/blood/oil,/obj/effect/decal/cleanable/dirt,/obj/machinery/light/poi,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"xd" = (/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/AbandonedLab{requires_power = 0}) +"xj" = (/obj/item/weapon/material/shard/shrapnel,/obj/structure/grille/broken/rustic,/obj/item/ammo_casing/a10mm{dir = 8},/obj/item/weapon/material/shard,/obj/item/weapon/material/shard,/obj/item/weapon/material/shard,/obj/effect/decal/cleanable/dirt,/obj/effect/gibspawner/robot,/turf/simulated/shuttle/floor/voidcraft,/area/submap/AbandonedLab{requires_power = 0}) +"xy" = (/obj/structure/railing{dir = 4},/obj/structure/boulder,/turf/template_noop,/area/submap/AbandonedLab{requires_power = 0}) +"ya" = (/obj/structure/grille/rustic,/obj/structure/window/basic/full,/turf/simulated/floor/plating,/area/submap/AbandonedLab{requires_power = 0}) +"yd" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/window/brigdoor/southright{name = "Containment Pen"; req_access = null},/obj/effect/decal/cleanable/dirt,/obj/item/weapon/melee/baton/slime/loaded{pixel_y = 13},/turf/simulated/floor/tiled/techmaint,/area/submap/AbandonedLab{requires_power = 0}) +"yq" = (/obj/effect/decal/cleanable/greenglow,/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/submap/AbandonedLab{requires_power = 0}) +"yS" = (/obj/structure/disposalpipe/segment,/obj/structure/grille/rustic,/obj/structure/window/basic/full,/turf/simulated/floor/plating,/area/submap/AbandonedLab{requires_power = 0}) +"zd" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash,/obj/effect/decal/cleanable/chemcoating,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"zp" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0}) +"zM" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/random/humanoidremains,/obj/item/clothing/under/rank/hydroponics/alt,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"AB" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/mob/living/simple_mob/mechanical/hivebot/ranged_damage/rapid,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0}) +"AP" = (/obj/effect/decal/cleanable/dirt,/obj/effect/gibspawner/generic,/obj/effect/decal/cleanable/greenglow,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0}) +"AZ" = (/obj/effect/decal/remains/robot,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"Bb" = (/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/reinforced,/area/submap/AbandonedLab{requires_power = 0}) +"BC" = (/turf/simulated/wall/iron,/area/submap/AbandonedLab{requires_power = 0}) +"BD" = (/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/old_tile/green,/area/submap/AbandonedLab{requires_power = 0}) +"BP" = (/obj/effect/decal/cleanable/blood/oil,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/random/vendordrink,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"Cz" = (/mob/living/simple_mob/humanoid/merc/ranged{health = 15; maxHealth = 15},/obj/effect/decal/cleanable/dirt,/obj/random/projectile/scrapped_gun,/obj/item/ammo_casing/a10mm{dir = 6},/obj/effect/decal/cleanable/blood/oil,/turf/simulated/shuttle/floor/voidcraft,/area/submap/AbandonedLab{requires_power = 0}) +"Dh" = (/turf/template_noop,/area/template_noop) +"Dt" = (/obj/structure/table/steel,/obj/random/junk,/obj/random/junk,/obj/structure/curtain/black,/obj/item/weapon/card/id/silver,/obj/random/projectile/scrapped_gun,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"Du" = (/obj/random/toolbox,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/AbandonedLab{requires_power = 0}) +"DB" = (/obj/machinery/door/window,/obj/structure/table/reinforced,/obj/random/cigarettes,/turf/simulated/floor/plating,/area/submap/AbandonedLab{requires_power = 0}) +"DQ" = (/obj/structure/boulder,/turf/template_noop,/area/submap/AbandonedLab{requires_power = 0}) +"DR" = (/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/security,/obj/item/weapon/material/shard,/turf/simulated/floor/reinforced,/area/submap/AbandonedLab{requires_power = 0}) +"DW" = (/obj/random/toolbox,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/template_noop) +"EB" = (/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/loot_spawn,/obj/structure/table/rack/shelf,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0}) +"EG" = (/obj/effect/decal/remains/robot,/obj/effect/decal/cleanable/dirt,/obj/machinery/deployable/barrier{anchored = 1; icon_state = "barrier1"},/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"EW" = (/obj/item/weapon/material/shard,/obj/effect/decal/cleanable/dirt,/obj/machinery/deployable/barrier{anchored = 1; icon_state = "barrier1"},/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"Fb" = (/obj/effect/decal/cleanable/vomit,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/chemcoating,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0}) +"Fc" = (/obj/machinery/door/airlock,/obj/effect/floor_decal/rust/mono_rusted1,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"FN" = (/obj/structure/table/rack/shelf/steel,/obj/item/stolenpackage,/obj/item/weapon/storage/backpack/holding,/turf/simulated/floor/tiled/techfloor/grid,/area/submap/AbandonedLab{requires_power = 0}) +"FU" = (/obj/structure/salvageable/console{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"FV" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/machinery/light/flicker{dir = 4},/obj/effect/gibspawner/generic,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"Ge" = (/obj/effect/decal/cleanable/dirt,/obj/random/humanoidremains,/turf/simulated/floor/tiled/old_tile/green,/area/submap/AbandonedLab{requires_power = 0}) +"Gk" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/effect/decal/remains/human,/obj/item/weapon/broken_gun/ionrifle,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"GF" = (/obj/effect/decal/cleanable/dirt,/obj/effect/gibspawner/generic,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"GO" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/AbandonedLab{requires_power = 0}) +"HM" = (/obj/effect/decal/cleanable/blood/oil,/obj/effect/decal/cleanable/dirt,/obj/item/ammo_casing/a10mm{dir = 8},/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0}) +"Id" = (/obj/effect/decal/cleanable/generic,/obj/structure/railing/grey{dir = 1},/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0}) +"Im" = (/obj/effect/decal/cleanable/dirt,/obj/structure/door_assembly,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"Iz" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"IE" = (/obj/structure/table/glass,/obj/effect/decal/cleanable/dirt,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/glass/beaker/bluespace,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"IQ" = (/turf/simulated/wall/skipjack,/area/submap/AbandonedLab{requires_power = 0}) +"IU" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/blood/drip,/obj/item/weapon/material/shard/shrapnel,/obj/item/weapon/material/shard/shrapnel,/obj/item/weapon/material/shard/shrapnel,/obj/structure/railing/grey{dir = 4},/obj/structure/sign/nosmoking_1{pixel_x = -30},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"Je" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/shuttle/wall/voidcraft/hard_corner/red,/area/submap/AbandonedLab{requires_power = 0}) +"Jv" = (/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/research,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0}) +"JC" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/spacecash/c500,/obj/item/weapon/spacecash/c500,/obj/item/weapon/spacecash/c500,/obj/structure/window/reinforced/survival_pod,/turf/simulated/floor/tiled/techfloor/grid,/area/submap/AbandonedLab{requires_power = 0}) +"JZ" = (/obj/effect/decal/cleanable/blood/drip{pixel_x = -8; pixel_y = 16},/turf/template_noop,/area/template_noop) +"Kb" = (/obj/structure/prop/rock/small,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/AbandonedLab{requires_power = 0}) +"Kd" = (/obj/effect/decal/cleanable/dirt,/obj/item/ammo_casing/a10mm,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0}) +"KI" = (/obj/effect/floor_decal/stairs,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/AbandonedLab{requires_power = 0}) +"KO" = (/obj/effect/decal/cleanable/dirt,/mob/living/simple_mob/mechanical/hivebot/ranged_damage/laser,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"KR" = (/obj/structure/table/rack/shelf/steel,/obj/item/stolenpackage,/obj/item/stolenpackage,/obj/structure/window/reinforced/survival_pod,/turf/simulated/floor/tiled/techfloor/grid,/area/submap/AbandonedLab{requires_power = 0}) +"KT" = (/obj/machinery/door/airlock/maintenance/common,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/submap/AbandonedLab) +"KV" = (/obj/item/weapon/reagent_containers/food/snacks/sliceable/supremoburrito,/turf/simulated/floor/outdoors/dirt,/area/submap/AbandonedLab{requires_power = 0}) +"Lk" = (/obj/structure/salvageable/console_broken_os{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/chemcoating,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"Ll" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/shuttle/floor/voidcraft,/area/submap/AbandonedLab{requires_power = 0}) +"Ln" = (/obj/machinery/chem_master,/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"LL" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/structure/window/basic{dir = 8},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"LQ" = (/obj/effect/decal/cleanable/dirt,/obj/random/snack,/obj/random/snack,/obj/structure/table/steel,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"ML" = (/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/security,/obj/structure/table/steel,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"Nj" = (/obj/structure/prop/rock/round,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/template_noop) +"Op" = (/obj/effect/decal/cleanable/blood/drip{pixel_x = -3; pixel_y = 5},/turf/template_noop,/area/template_noop) +"Ox" = (/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/template_noop) +"ON" = (/obj/machinery/light/small/poi{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/table/standard{name = "plastic table frame"},/obj/fiftyspawner/steel,/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/AbandonedLab{requires_power = 0}) +"Pe" = (/obj/effect/gibspawner/generic,/turf/simulated/floor/tiled/hydro,/area/submap/AbandonedLab{requires_power = 0}) +"Pg" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/decal/cleanable/cobweb2,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"Ps" = (/obj/effect/floor_decal/rust,/obj/structure/railing/grey{dir = 4},/obj/effect/floor_decal/arrow{dir = 8; pixel_x = 11},/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"PE" = (/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0}) +"PK" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/material/shard/shrapnel,/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/submap/AbandonedLab{requires_power = 0}) +"PO" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/decal/cleanable/generic,/obj/machinery/light/poi{dir = 1},/obj/random/maintenance/research,/obj/structure/table,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"PP" = (/obj/effect/decal/cleanable/blood/drip,/obj/structure/prop/rock/flat,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/AbandonedLab{requires_power = 0}) +"Qp" = (/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/borderfloorblack{dir = 1},/mob/living/simple_mob/mechanical/hivebot/ranged_damage/dot,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"QA" = (/obj/effect/decal/cleanable/cobweb2,/obj/random/maintenance/cargo,/obj/structure/catwalk,/obj/effect/floor_decal/rust{pixel_y = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/submap/AbandonedLab{requires_power = 0}) +"Rr" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/AbandonedLab{requires_power = 0}) +"Sx" = (/obj/effect/wingrille_spawn,/turf/simulated/floor/plating,/area/submap/AbandonedLab{requires_power = 0}) +"SB" = (/obj/structure/boulder,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/borderfloorblack{dir = 1},/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"SN" = (/obj/effect/decal/cleanable/dirt,/obj/random/empty_or_lootable_crate,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"SW" = (/obj/structure/sign/science,/obj/structure/sign/graffiti/pisoff{pixel_x = 1; pixel_y = -3},/turf/simulated/wall/iron,/area/submap/AbandonedLab{requires_power = 0}) +"Ta" = (/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/security,/obj/structure/table/steel,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"Tr" = (/obj/machinery/door/window/brigdoor/northright{name = "Containment Pen"; req_access = null},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techmaint,/area/submap/AbandonedLab{requires_power = 0}) +"Tx" = (/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/research,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"Uc" = (/obj/random/junk,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/template_noop) +"UQ" = (/obj/machinery/door/airlock/maintenance/common,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/submap/AbandonedLab{requires_power = 0}) +"UR" = (/obj/effect/floor_decal/rust{pixel_y = 1},/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/submap/AbandonedLab{requires_power = 0}) +"US" = (/mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege,/obj/effect/decal/cleanable/greenglow,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0}) +"UT" = (/obj/machinery/door/airlock,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"UX" = (/mob/living/simple_mob/mechanical/hivebot/tank/armored,/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0}) +"WL" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled/old_tile/green,/area/submap/AbandonedLab{requires_power = 0}) +"WZ" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"Xo" = (/obj/effect/floor_decal/rust,/obj/item/weapon/storage/pill_bottle/vermicetol,/obj/item/weapon/storage/pill_bottle/dermaline,/obj/item/weapon/storage/pill_bottle/dexalin_plus,/obj/item/weapon/storage/pill_bottle/carthatoline,/obj/structure/closet/crate,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"XB" = (/obj/structure/table/glass,/obj/machinery/chemical_dispenser/full,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/chemcoating,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"XU" = (/obj/structure/closet/l3closet/general,/obj/effect/floor_decal/rust,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/effect/floor_decal/rust/color_rustedcee,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"XW" = (/obj/item/weapon/digestion_remains/skull,/obj/item/weapon/tool/crowbar,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/AbandonedLab{requires_power = 0}) +"Yt" = (/obj/effect/floor_decal/rust,/mob/living/simple_mob/mechanical/hivebot/tank,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"YD" = (/obj/structure/table/steel,/obj/effect/decal/cleanable/blood/oil,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/fountain2,/obj/structure/curtain/black,/turf/simulated/floor/tiled/dark,/area/submap/AbandonedLab{requires_power = 0}) +"Za" = (/obj/effect/floor_decal/rust,/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/steel,/area/submap/AbandonedLab{requires_power = 0}) +"Zh" = (/obj/machinery/door/window/survival_pod{dir = 2},/mob/living/simple_mob/mechanical/hivebot/ranged_damage/laser,/turf/simulated/floor/tiled/techfloor/grid,/area/submap/AbandonedLab{requires_power = 0}) +"Zi" = (/obj/item/weapon/pickaxe,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/template_noop) +"Zr" = (/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/loot_spawn/low,/obj/effect/floor_decal/rust{pixel_y = 1},/turf/simulated/floor,/area/submap/AbandonedLab{requires_power = 0}) +"ZJ" = (/obj/structure/prop/rock/flat,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/template_noop) + +(1,1,1) = {" +DhuZDhDhkukukukukuDhDhkuneDhDhDhDhDhDhDhDhDhDhDh +DhDhDhkukukuXWPPkukukukunonoKbkuDhDhDhDhDhDhDhDh +DhkukukukukukukukukukukukukukukukukukuDhDhDhDhDh +DhkukukusbkaBCkakasbkukuBCBCBCkukusbsbsbsbsbkuDh +kukusbsbgkhsGePgBCrdsbsbXBIELnsbsbtytytytyIQsbku +kukuBCouoIbIWLzMkaTxzpFbABabenBCkuIQuugPFNIQsbku +DhkukakcjNPeBDsnBCXotvzdZavPLkBCkuIQKRZhJCtysbku +DhkuBCkaotImdodoBCkaBCUToljEkaBCkutyPERrUStysbDh +DhkukukuSBQpmciaAZoWBPaEiLPOkAkakutyjWxdONtysbDh +DhDhkuSNWZIzJvdOGkiSKOoQivhPXUBCsbtyblAPGOIQsbku +DhkukukabjkakaBCEWEGmucHFckdmumuKVtyvzUXEBtysbku +DhkuBCrshTdIuCegkFYtmuocLlieCzcHkutytyKTIQtysbku +DhDhbZhHqOHMhlDBIdFVcHmETrLLPKUQyqURaJQAsbsbkuDh +DhkuBCFUGFKdqHSxPsYDcHyaydySxjJesbsbsbsbkuDhDhDh +DhkuBCMLgITaLQBCIUDtmuZrtfmQDRJekukukukukuDhDhuZ +kukuBCBCBCBCBCkapVSWcHmuiABbmukuDWUckuDhDhDhDhDh +kukukukukudlkukuKIflkukumumukuNjOxDhDhDhZiDhomDh +DhkuOxZJkunonexyDQdGdlDukukukuDhDhuZDhgtgnpdOxto +DhDhDhDhDhDhDhDhDhDhDhDhOpDhDhDhJZDhOxDhnrOxOxDh +"} diff --git a/maps/submaps/surface_submaps/wilderness/wilderness.dm b/maps/submaps/surface_submaps/wilderness/wilderness.dm index c91247f07f..0aa301f4de 100644 --- a/maps/submaps/surface_submaps/wilderness/wilderness.dm +++ b/maps/submaps/surface_submaps/wilderness/wilderness.dm @@ -54,6 +54,7 @@ #include "AmbushBase.dmm" #include "CultBar.dmm" #include "RaidedMechBunker.dmm" +#include "AbandonedLab.dmm" #endif //#include "Boombase.dmm" YW edit remove boombase @@ -402,6 +403,12 @@ desc = "A hanger with mechs far past useabiltiy." mappath = 'maps/submaps/surface_submaps/wilderness/RaidedMechBunker.dmm' cost = 10 + +/datum/map_template/surface/wilderness/deep/AbandonedLab + name = "Abandoned Lab" + desc = "Experiments gone wrong! Be wary of the test subjects gone rogue." + mappath = 'maps/submaps/surface_submaps/wilderness/AbandonedLab.dmm' + cost = 20 /*==Disabled==/ diff --git a/maps/submaps/surface_submaps/wilderness/wilderness_areas.dm b/maps/submaps/surface_submaps/wilderness/wilderness_areas.dm index 9aa378c466..be08dedf47 100644 --- a/maps/submaps/surface_submaps/wilderness/wilderness_areas.dm +++ b/maps/submaps/surface_submaps/wilderness/wilderness_areas.dm @@ -223,3 +223,7 @@ /area/submap/DugOutMercs name = "POI - Dug Out Mercanries" ambience = AMBIENCE_HIGHSEC + +/area/submap/AbandonedLab + name = "POI - Abandoned Lab" + ambience = AMBIENCE_HIGHSEC diff --git a/maps/tether/tether-01-surface1.dmm b/maps/tether/tether-01-surface1.dmm index 1efc840213..c632e6626f 100644 --- a/maps/tether/tether-01-surface1.dmm +++ b/maps/tether/tether-01-surface1.dmm @@ -3192,6 +3192,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/mouse_hole_spawner, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_one) "afb" = ( @@ -7109,6 +7110,9 @@ /obj/machinery/camera/network/civilian{ dir = 1 }, +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_one) "alN" = ( @@ -13207,6 +13211,15 @@ d2 = 4; icon_state = "2-4" }, +<<<<<<< HEAD +======= +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"avL" = ( +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures /obj/structure/railing, /obj/structure/table/rack, /obj/random/maintenance/medical, @@ -28880,6 +28893,9 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_lodging) "aWm" = ( @@ -32235,6 +32251,12 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/funny/hideyhole) +"bXC" = ( +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) "bZC" = ( /turf/simulated/floor/looking_glass, /area/looking_glass/lg_1) @@ -32916,6 +32938,18 @@ /obj/item/weapon/soap/nanotrasen, /turf/simulated/floor/tiled/freezer, /area/tether/surfacebase/security/brig/bathroom) +"elf" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/mouse_hole_spawner, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) "emK" = ( /mob/living/simple_mob/animal/passive/mimepet, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -32984,6 +33018,13 @@ }, /turf/simulated/floor, /area/tether/surfacebase/security/gasstorage) +"eyq" = ( +/obj/structure/catwalk, +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) "ezn" = ( /obj/machinery/power/apc{ dir = 1; @@ -33686,6 +33727,25 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet/gaycarpet, /area/tether/surfacebase/funny/clownoffice) +"gHx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) "gIa" = ( /obj/structure/railing{ dir = 8 @@ -34341,6 +34401,11 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhall) +"izF" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/effect/mouse_hole_spawner, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) "iEk" = ( /obj/machinery/button/remote/blast_door{ dir = 8; @@ -34597,6 +34662,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) "jDI" = ( @@ -35232,6 +35300,14 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) +"lma" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) "loc" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ @@ -36667,6 +36743,13 @@ }, /turf/simulated/floor/tiled/freezer, /area/tether/surfacebase/security/brig/bathroom) +"oDt" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) "oId" = ( /obj/structure/closet{ desc = "Dents and old flaky paint blanket this old storage unit."; @@ -36910,6 +36993,34 @@ "pCj" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/brig) +<<<<<<< HEAD +======= +"pDY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"pFF" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures "pIG" = ( /obj/structure/cable{ icon_state = "1-2" @@ -38397,6 +38508,42 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) +<<<<<<< HEAD +======= +"uku" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border/shifted{ + dir = 1 + }, +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ulr" = ( +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + master_tag = "atmos_airlock"; + pixel_x = -23; + pixel_y = 8 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "atmos_airlock_inner"; + locked = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/engineering/atmos/airlock) +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures "uqH" = ( /obj/structure/railing{ dir = 4 @@ -39132,6 +39279,24 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/mining_eva) +"wDf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) "wOK" = ( /obj/effect/floor_decal/rust, /obj/machinery/light/small{ @@ -39473,6 +39638,26 @@ /obj/machinery/light/small, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig/storage) +"xJs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/orange{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) "xOH" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -45603,6 +45788,7 @@ aah aah aah ahl +<<<<<<< HEAD aCI ahL anN @@ -45623,6 +45809,11 @@ auj auG avc avJ +======= +pDY +anP +adu +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures ahl rJv avh @@ -46018,6 +46209,112 @@ aad aad aad aad +<<<<<<< HEAD +======= +aad +aad +aad +aad +aad +aah +aah +gCa +kwN +lLD +pCj +qjE +bzb +pCj +qjE +bzb +pCj +bcQ +hTQ +qwV +wVI +oox +abT +amQ +bbe +bbe +bbe +bbe +bbe +bbe +bci +bbG +bbH +bbN +adu +ahl +apj +apj +apj +apj +apj +apj +apj +apu +apu +apu +apu +apu +apu +avj +abm +abm +abm +abm +abm +afX +abm +abm +awn +awn +awn +aEq +awn +awn +awn +awn +awn +aBP +aCw +lma +aCY +aCZ +aLv +aMf +aLv +aLv +aLv +aLv +aej +aPm +aPN +aQr +aQT +aRw +aRQ +aSy +aTd +aTK +aTX +aUy +aUv +aUy +aUv +aUy +aUv +aUy +aXd +aXd +aTW +aad +aad +aah +aah +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures aah aah akB @@ -46668,6 +46965,120 @@ aad aad aad aad +<<<<<<< HEAD +======= +pCj +wjq +wjq +aQO +pmV +loj +plW +aSZ +fqa +fOy +eAd +ozx +iUF +fqa +anp +aeW +axN +afr +amV +agB +agK +anl +aeW +ahU +aiN +aet +aoI +apr +apr +aqD +arc +aru +aoH +bcd +apu +eyq +ate +apu +bcd +apu +bcs +azU +agb +agc +agc +agc +agc +agb +aBJ +aAE +aBO +aah +aah +aah +aah +aBO +aBO +aBO +aIc +aIJ +aIh +aKl +aKU +aLA +aMk +aMR +aNC +aNW +aOx +aJI +aPt +aJI +jYP +sLN +aRD +aRW +aSD +aTk +aIh +ycG +mxe +pPF +qtU +nAK +aTZ +aWs +aVn +owW +qde +wcz +owW +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures aad aad aad @@ -46963,8 +47374,120 @@ aad aad aad aad +<<<<<<< HEAD aad bar +======= +abT +abT +abT +abT +abT +abT +abT +abT +abT +abT +abT +abT +abT +adt +adt +adt +adt +adt +abT +abT +abT +tCV +akt +ahX +aiS +aeH +aoM +apw +ahX +aqF +ari +aqb +aqb +arZ +asq +asK +apu +apu +apu +apu +avi +apu +agM +agM +axV +ayH +azN +agM +agM +gHx +aBO +aah +aah +aah +aah +aBO +aHf +aHv +aIf +aIN +aIh +alr +aJI +aLC +acv +aMT +aMT +aMT +aMT +aMT +aPx +aPW +aPx +aRc +aRI +aSa +ajw +aRM +aPG +aTY +aIh +aah +aah +aVn +aTZ +aWx +aVn +aXg +aTZ +aHu +aYm +aYk +aTZ +aTZ +aVn +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures aad aad aad @@ -47597,6 +48120,7 @@ adH odn aah aah +<<<<<<< HEAD aah aah aah @@ -47672,6 +48196,71 @@ aad aad aad aad +======= +apu +asL +apu +ahc +agM +bcp +bXC +atL +atL +atj +ayc +ayG +dCc +aAR +aBQ +aAL +aBQ +aBQ +aAU +aFl +aFN +ohi +ohi +loc +aec +aIT +aJL +aKu +aJI +aJI +aMq +aMZ +aNI +aJI +aJI +aJI +aPz +aNE +aQA +aMY +aOB +aRH +aSL +aTn +aTR +aTR +aIh +aUV +aTZ +aVn +abz +aWB +aWS +aWB +aXC +aWS +aWS +aWA +aXk +aJE +aLw +aZX +bas +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures aad aad aad @@ -49226,6 +49815,7 @@ aad aad aad aad +<<<<<<< HEAD gCa gCa gCa @@ -49283,6 +49873,65 @@ aDP aEs aFi aDi +======= +aad +aap +aax +aaK +aaK +abo +aaK +aaK +adP +aao +cPX +afO +elf +aCr +dYd +aEh +aDC +aCr +aGj +aGQ +aGj +aGj +aKG +aGj +aGj +aii +anW +aoj +aoS +apC +aqf +aqf +arg +arz +arz +asc +arz +arz +apC +aqf +aqf +arg +aoS +aoj +awH +axn +ayh +ayR +iwE +efV +aBS +aCE +aDm +aDS +aBb +aBg +aBO +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures aah aah aBO @@ -50135,6 +50784,114 @@ aad aad aad aad +<<<<<<< HEAD +======= +aan +aaV +aba +acO +adw +aan +atJ +awA +aeU +acZ +ade +aeU +jQL +amw +aBW +aCM +aDF +aCM +lUk +aCM +aCM +aCM +aCM +aJC +qWW +aZg +aef +bbq +anW +aoj +hzr +apA +apA +apA +hzr +ary +ary +ary +ary +ary +hzr +apA +apA +apA +hzr +aoj +awH +axm +ayh +ayh +aAf +cpp +ayh +aCJ +aCJ +aCJ +aCJ +aFr +aCJ +aCJ +aCJ +agM +aeM +aJd +ayG +aqk +aLg +aLM +aLM +aLM +aLg +aOk +aOk +aOk +aOj +aQc +aQc +aQc +aQb +aSj +aSj +aSj +aSi +aUe +aUG +aUW +aUW +aUW +aWf +aWE +aUb +xJs +aXJ +aYe +aYe +aYe +aYe +aYe +aYe +aYe +aYe +aYe +aYe +baU +baU +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures aad aad aad @@ -50553,6 +51310,7 @@ aEY aFO >>>>>>> 07c41e63ae... Merge pull request #12529 from Very-Soft/autoresleever aGw +<<<<<<< HEAD aGV aHU aJT @@ -50584,6 +51342,39 @@ kgk mSz qhq oib +======= +aHh +aef +aef +aef +aef +aef +bbt +anZ +aol +aoT +apE +wDf +aqL +doa +aqL +ajA +asf +ass +mGP +atn +cHW +auu +auQ +avo +avX +awK +aqh +vfy +qwm +ayG +qRI +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures agM aCJ aCJ @@ -50592,12 +51383,21 @@ rCj aCJ aCJ agM +<<<<<<< HEAD agM agM aIm aJf aJQ aKC +======= +yaA +uku +ayG +qBb +aJR +aKD +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures aLg aLM aLM @@ -63093,6 +63893,131 @@ aad aad aad aad +<<<<<<< HEAD +======= +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aeE +vwM +avl +afB +avQ +axj +ayk +ayK +azv +azH +azY +aAh +aeE +aAz +aAD +aAW +bbr +bbz +bbL +bbY +nbj +mnN +mnN +mnN +mnN +aBp +nmA +fvL +jnN +nZj +lry +aql +nlo +apF +aah +aah +aah +aah +atx +oDt +auA +auS +avA +atW +atx +axy +ayo +azn +bSx +raS +aCa +axy +atx +aEb +aVi +aFE +scf +aLK +act +aDu +aIx +aDu +aCR +aKK +aLj +aLX +aMI +aNu +aNS +aOv +aOQ +aPk +aPK +aQn +aQQ +aRt +aPK +aSv +aTb +aTI +aSo +aUo +aUQ +bHR +aVD +aVS +aga +xZB +aXc +aUm +aUm +aUm +aUm +aUm +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures aad aad aad @@ -63643,6 +64568,84 @@ aad aad aad aad +<<<<<<< HEAD +======= +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +ano +ano +ano +ano +aeE +aeE +aeE +azH +ayw +aeE +aeE +aeE +aeE +aeE +nlT +naO +jvS +lBO +dtz +qnZ +fWT +nMH +oId +fRJ +qaa +vHE +lry +lry +lry +iWa +fkx +rse +lry +aah +aah +aah +aah +aah +aah +atx +aDq +aEc +aEc +aFG +aFH +aCT +aCT +aCT +auB +auB +auB +auB +auB +aCT +aCT +aCT +aWN +lsh +lsh +lsh +wek +pvL +hOH +izF +atx +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures aad aad aad diff --git a/maps/tether/tether-02-surface2.dmm b/maps/tether/tether-02-surface2.dmm index ce58f4be52..3c03294e49 100644 --- a/maps/tether/tether-02-surface2.dmm +++ b/maps/tether/tether-02-surface2.dmm @@ -16357,6 +16357,9 @@ dir = 1 }, /obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_two_hall) "aBJ" = ( @@ -23586,6 +23589,19 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) +<<<<<<< HEAD +======= +"aPv" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence/upper) +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures "aPw" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 9 @@ -25188,6 +25204,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering/pumpstation) +"aSZ" = ( +/obj/machinery/vending/altevian, +/turf/simulated/floor/plating, +/area/maintenance/lower/south) "aTa" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -33470,6 +33490,15 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/funny/hideyhole) +"ftF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "fxr" = ( /obj/machinery/light{ dir = 8 @@ -33539,6 +33568,19 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/fish_farm) +"fYb" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining) "gaR" = ( /obj/item/device/radio/intercom/locked/ai_private{ dir = 4; @@ -33750,6 +33792,12 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/ai_upload) +"idw" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/effect/mouse_hole_spawner, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "ilH" = ( /obj/structure/table/standard, /obj/item/weapon/aiModule/reset, @@ -34482,6 +34530,12 @@ /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor/grid, /area/ai_upload) +"nOG" = ( +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/fish_farm) "nPO" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -34736,6 +34790,15 @@ }, /turf/simulated/floor/bluegrid, /area/ai_upload) +"pXo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "pYH" = ( /obj/effect/floor_decal/techfloor/corner, /turf/simulated/floor/tiled/techfloor/grid, @@ -34744,6 +34807,12 @@ /obj/machinery/porta_turret, /turf/simulated/floor/tiled/techfloor/grid, /area/ai_upload) +"qbq" = ( +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) "qia" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -35131,6 +35200,20 @@ }, /turf/simulated/floor/water/indoors, /area/tether/surfacebase/fish_farm) +"sLA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/readingrooms) "sLP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -35278,6 +35361,18 @@ /obj/effect/floor_decal/corner_techfloor_grid, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) +"tuZ" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 6 + }, +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) "tyG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -35339,7 +35434,25 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai_upload) +<<<<<<< HEAD >>>>>>> 45e710fa51... Merge pull request #10235 from Enzo-Leon/asteroid +======= +"tMW" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/south) +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures "tPB" = ( /turf/simulated/floor/grass, /area/chapel/main) @@ -35642,7 +35755,26 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/ai) +<<<<<<< HEAD >>>>>>> 45e710fa51... Merge pull request #10235 from Enzo-Leon/asteroid +======= +"vmx" = ( +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/obj/structure/bed/chair/sofa/pew{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"vok" = ( +/obj/structure/catwalk, +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/south) +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures "voE" = ( /obj/effect/floor_decal/corner_techfloor_grid, /obj/effect/floor_decal/corner_techfloor_grid{ @@ -35835,6 +35967,13 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/breakroom) +"xem" = ( +/obj/structure/catwalk, +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) "xfa" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -40398,6 +40537,7 @@ adt adt adt adt +<<<<<<< HEAD adt adt adt @@ -40444,6 +40584,63 @@ adt adt adt adt +======= +akX +akX +apu +aqA +ars +asw +akX +akX +aKj +aPx +aPU +aPx +aRi +aPU +fLW +axO +pqb +bOW +fLW +aBB +aCm +aDj +aDV +nOG +aBB +aOM +aJf +aRK +aJf +arY +aJf +aJf +aJf +aJf +arv +aJf +aJf +arY +aJf +aJf +aJf +arR +aJf +aJf +atk +arY +aJf +aJf +aJf +aJf +aJf +arR +aJf +ayC +aHE +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures adt adt adt @@ -44957,7 +45154,7 @@ aTA aUo aPJ aQw -aQw +qbq aXv aYd aYD @@ -45690,7 +45887,7 @@ baA baW bbf aJX -baW +xem aIn aJZ baX @@ -46965,7 +47162,7 @@ baW baW baW baW -baW +xem baW beT baz @@ -47204,7 +47401,7 @@ ayF aEK ayF aFZ -ayF +ftF aAh aHp aHK @@ -48782,7 +48979,7 @@ aAG aKw aLj aLO -aMv +idw aNj aNR aOH @@ -49082,7 +49279,7 @@ aVp aWl aXg aVP -aZr +aSZ ayY aZr aZr @@ -50319,7 +50516,7 @@ avI awk avD axG -ayl +pXo ayO azh azR @@ -50373,7 +50570,7 @@ aLY aLY aLY aLY -aLX +vok bdQ bdb aIo @@ -50758,9 +50955,13 @@ aiK aiK aiK aiK +<<<<<<< HEAD >>>>>>> 660b7d0a0e... Merge pull request #10831 from Very-Soft/MESSESWITHTHEMAPMOAR aiK auX +======= +fYb +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures asV atY anW @@ -51097,7 +51298,7 @@ aSo aSo bdu aSo -aSo +tMW aSo aSo bbR @@ -51262,7 +51463,7 @@ bIG bde bdE csF -cMd +sLA jWK cMd gus @@ -51834,7 +52035,7 @@ aRc aRH aSp aTp -aSp +tuZ aSp aSp aWy diff --git a/maps/tether/tether-03-surface3.dmm b/maps/tether/tether-03-surface3.dmm index 8a3b5b1c3e..e0aab4324e 100644 --- a/maps/tether/tether-03-surface3.dmm +++ b/maps/tether/tether-03-surface3.dmm @@ -29965,6 +29965,9 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, /turf/simulated/floor/tiled/techfloor, /area/vacant/vacant_shop) "aYf" = ( @@ -38181,6 +38184,9 @@ /obj/effect/floor_decal/techfloor/corner{ dir = 4 }, +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/lower/medsec_maintenance) "boe" = ( @@ -38492,6 +38498,24 @@ "bzK" = ( /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) +"bCV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) "bEd" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -38998,6 +39022,31 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/cafeteria) +<<<<<<< HEAD +======= +"dAe" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"dDI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures "dDQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -39189,6 +39238,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/iaa/officeb) +<<<<<<< HEAD "ehr" = ( /obj/machinery/firealarm{ dir = 1; @@ -39199,6 +39249,14 @@ "eiO" = ( /turf/simulated/floor/tiled/eris/dark/golden, /area/shuttle/tourbus/general) +======= +"eiR" = ( +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures "ely" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -40785,6 +40843,22 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) +"knW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) "kqo" = ( /turf/simulated/wall, /area/tether/surfacebase/security/iaa/officea) @@ -41383,6 +41457,21 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) +"mmk" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mouse_hole_spawner, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) "mwz" = ( /obj/effect/floor_decal/corner/red{ dir = 9 @@ -42548,6 +42637,27 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/southhall) +<<<<<<< HEAD +======= +"qFD" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"qFL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/grass, +/area/hydroponics) +"qGC" = ( +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/shuttle_pad) +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures "qGK" = ( /obj/structure/table/reinforced, /obj/item/device/radio{ @@ -42584,6 +42694,28 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/cafeteria) +<<<<<<< HEAD +======= +"qOy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/grass, +/area/hydroponics) +"qQF" = ( +/obj/machinery/alarm{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures "qQZ" = ( /obj/effect/floor_decal/techfloor, /obj/machinery/firealarm{ @@ -43118,6 +43250,12 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) +"sUZ" = ( +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/barbackmaintenance) "sVC" = ( /obj/machinery/door/firedoor/glass/hidden/shuttle, /obj/machinery/door/blast/shuttle/open{ @@ -44293,6 +44431,27 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) +"xna" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) "xog" = ( /obj/structure/bed/chair/office/dark, /obj/effect/landmark/start{ @@ -306709,7 +306868,7 @@ aac agw agw agw -air +knW aWF akn akS @@ -310143,7 +310302,7 @@ aoX aqJ aoX aoX -aix +dDI avG apX alP @@ -311139,7 +311298,7 @@ agw arF aix ajR -apX +mmk agw ats atH @@ -311709,7 +311868,7 @@ aWV ali ali ali -ali +bCV ali ali ali @@ -313372,7 +313531,7 @@ cdv aKg aKe aOc -aKe +qGC aKg aMA aPu @@ -313391,8 +313550,12 @@ beU fsd qbo ome +<<<<<<< HEAD >>>>>>> 6a2e26314e... Merge pull request #12739 from GhostActual/late_at_night beU +======= +eiR +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures gRG laB beU @@ -315077,7 +315240,7 @@ asA aNy aNI aSb -agp +xna keg ycf ail @@ -315410,7 +315573,7 @@ beh ayM aya bcd -bcd +sUZ ayE bfP aAl @@ -316013,7 +316176,7 @@ aac aac aac aPs -bhv +qQF bhA bhC pSu diff --git a/maps/tether/tether-04-transit.dmm b/maps/tether/tether-04-transit.dmm index 4bb461fdbb..c63b9aac77 100644 --- a/maps/tether/tether-04-transit.dmm +++ b/maps/tether/tether-04-transit.dmm @@ -319,6 +319,15 @@ /obj/machinery/camera/network/civilian, /turf/simulated/floor/midpoint_glass/reinf, /area/tether/midpoint) +"hW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tether/midpoint) "it" = ( >>>>>>> 484d131671... Merge pull request #11014 from VOREStation/Arokha/v3bicons /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -378,6 +387,10 @@ "kz" = ( /turf/space/v3b_midpoint, /area/tether/transit) +"lG" = ( +/obj/effect/mouse_hole_spawner, +/turf/simulated/floor/wood, +/area/tether/midpoint) "lL" = ( /obj/effect/blocker, /turf/space/v3b_midpoint, @@ -592,6 +605,12 @@ /obj/machinery/media/jukebox, /turf/simulated/floor/tiled/monotile, /area/tether/midpoint) +"rW" = ( +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tether/midpoint) "sw" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 10 @@ -21834,11 +21853,32 @@ kz kz kz kz +<<<<<<< HEAD kz kz PF PF fI +======= +NJ +gq +pK +pK +pK +pK +pK +pK +Pz +Wc +rW +pK +Wc +Pz +pK +pK +Or +pK +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures pK mT ag @@ -22690,8 +22730,12 @@ PF uC vh pK +<<<<<<< HEAD pK Iq +======= +lG +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures Dz Ui HK @@ -23269,8 +23313,12 @@ Gl Gl Hs PF +<<<<<<< HEAD Kh hi +======= +hW +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures pK pK Wf diff --git a/maps/tether/tether-05-station1.dmm b/maps/tether/tether-05-station1.dmm index 39e39d30d9..ea409adb7d 100644 --- a/maps/tether/tether-05-station1.dmm +++ b/maps/tether/tether-05-station1.dmm @@ -16731,6 +16731,12 @@ }, /turf/simulated/floor/plating, /area/quartermaster/delivery) +"cCM" = ( +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/station/exploration) "cDf" = ( /obj/machinery/atmospherics/portables_connector/aux{ dir = 1 @@ -17586,6 +17592,9 @@ dir = 10 }, /obj/structure/disposalpipe/segment, +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/tether/station/dock_one) "doi" = ( @@ -22121,6 +22130,18 @@ }, /turf/simulated/floor/tiled/steel, /area/shuttle/excursion/general) +"hFL" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/mouse_hole_spawner, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "hFV" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 @@ -26040,6 +26061,7 @@ }, /turf/simulated/floor/tiled, /area/tether/exploration/crew) +<<<<<<< HEAD "ldE" = ( /turf/simulated/floor/tiled/eris/dark/techfloor_grid, /area/shuttle/securiship/cockpit) @@ -26053,6 +26075,27 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/eris/steel/gray_perforated, /area/shuttle/securiship/general) +======= +"lcy" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures "lfI" = ( /obj/machinery/access_button{ command = "cycle_interior"; @@ -27427,6 +27470,12 @@ fancy_shuttle_tag = "explo" }, /area/shuttle/excursion/cockpit) +"mmt" = ( +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/station/exploration) "mmJ" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -28127,6 +28176,9 @@ "mKL" = ( /obj/structure/bed/chair/bar_stool, /obj/random/plushie, +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, /turf/simulated/floor, /area/maintenance/station/eng_lower) "mKM" = ( @@ -49194,7 +49246,7 @@ jOH acn mnT vYJ -vYJ +lcy wRJ tRn vYJ @@ -51758,7 +51810,7 @@ lIB lIB lIB xdE -pMf +mmt gGC etY aac @@ -52145,7 +52197,7 @@ etY hrw pMf pMf -pMf +cCM biX lUV xdE @@ -55308,11 +55360,19 @@ aaa aaa aaa aaa +<<<<<<< HEAD aaa aaa jqN jRG klo +======= +fLT +wMe +kOK +hFL +fLT +>>>>>>> d8fddf3331... Merge pull request #13606 from Very-Soft/micro_structures aaa aaa aaa diff --git a/modular_chomp/code/game/objects/structures/crate_lockers/largecrate.dm b/modular_chomp/code/game/objects/structures/crate_lockers/largecrate.dm new file mode 100644 index 0000000000..d942579f16 --- /dev/null +++ b/modular_chomp/code/game/objects/structures/crate_lockers/largecrate.dm @@ -0,0 +1,21 @@ +/obj/structure/largecrate/animal/teppi + name = "teppi crate" + starts_with = list(/mob/living/simple_mob/vore/alienanimals/teppi/baby) + +/obj/structure/largecrate/animal/sheep + name = "sheep crate" + starts_with = list(/mob/living/simple_mob/vore/sheep) + +/obj/structure/largecrate/animal/woofdog + name = "dog crate" + starts_with = list(/mob/living/simple_mob/vore/woof) + +/obj/structure/largecrate/animal/bugsect + name = "Dangerous drone carrier" + starts_with = list(/mob/living/simple_mob/vore/sect_drone) + + +/obj/structure/largecrate/animal/bugsect/Initialize() + starts_with = list(pick(/mob/living/simple_mob/vore/sect_drone, + /mob/living/simple_mob/vore/sect_queen)) + return ..() diff --git a/modular_chomp/code/game/turfs/simulated/outdoors/desert_planet.dm b/modular_chomp/code/game/turfs/simulated/outdoors/desert_planet.dm new file mode 100644 index 0000000000..58f1b1eea9 --- /dev/null +++ b/modular_chomp/code/game/turfs/simulated/outdoors/desert_planet.dm @@ -0,0 +1,136 @@ +/* Testing +/turf/simulated/floor/outdoors/desert_planet/sand + name = "sand" + desc = "Sandy, taste salty and gritty." + icon = 'modular_chomp/icons/turf/desert_planet.dmi' + edge_blending_priority = 2 + turf_layers = list(/turf/simulated/floor/outdoors/rocks) + initial_flooring = /decl/flooring/sand + can_dig = false +*/ + +/turf/simulated/floor/outdoors/desert_planet/sand + name = "sand" + desc = "Salty and gritty." + icon = 'modular_chomp/icons/turf/desert_planet.dmi' + icon_state = "sand" + edge_blending_priority = 3 + turf_layers = list(/turf/simulated/floor/outdoors/desert_planet/sand) + +/* Testing +/decl/flooring/outdoors/sand + name = "sand" + desc = "Salty and gritty." + icon = 'modular_chomp/icons/turf/desert_planet.dmi' + icon_base = "sand" + footstep_sounds = list("human" = list( + 'sound/effects/footstep/asteroid1.ogg', + 'sound/effects/footstep/asteroid2.ogg', + 'sound/effects/footstep/asteroid3.ogg', + 'sound/effects/footstep/asteroid4.ogg', + 'sound/effects/footstep/asteroid5.ogg', + 'sound/effects/footstep/MedDirt1.ogg', + 'sound/effects/footstep/MedDirt2.ogg', + 'sound/effects/footstep/MedDirt3.ogg', + 'sound/effects/footstep/MedDirt4.ogg')) + +/turf/simulated/floor/outdoors/sand/Initialize(mapload) + var/possiblesands = list( + "ironsand1" = 50, + "ironsand2" = 1, + "ironsand3" = 1, + "ironsand4" = 1, + "ironsand5" = 1, + "ironsand6" = 1, + "ironsand7" = 1, + "ironsand8" = 1, + "ironsand9" = 1, + "ironsand10" = 1, + "ironsand11" = 1, + "ironsand12" = 1, + "ironsand13" = 1, + "ironsand14" = 1, + "ironsand15" = 1 + + ) + flooring_override = pickweight(possiblesands) + return ..() + +/turf/simulated/floor/water/hotspring + name = "Hotsprings" + desc = "A natural hotspring connecting to an aquifer. It seems the facility was built ontop of it." + edge_blending_priority = -2 + movement_cost = 8 + depth = 2 + water_state = "water_shallow" + outdoors = FALSE + +/turf/simulated/floor/water/hotspring/Entered(atom/movable/AM, atom/oldloc) + if(istype(AM, /mob/living)) + var/mob/living/L = AM + L.update_water() + if(L.check_submerged() <= 0) + return + if(!istype(oldloc, /turf/simulated/floor/water/hotspring)) + to_chat(L, "You feel an overwhelming wave of warmth from entering \the [src]!") + AM.water_act(5) + ..() + + +*/ + +/turf/simulated/floor/outdoors/desert_planet/deep_sand + name = "sand" + desc = "Salty and gritty." + icon = 'modular_chomp/icons/turf/desert_planet.dmi' + icon_state = "deep_sand" + edge_blending_priority = 2 + turf_layers = list(/turf/simulated/floor/outdoors/desert_planet/sand) + +/turf/simulated/floor/outdoors/desert_planet/grass + name = "grass" + desc = "Lively green grass, soft to walk on." + icon = 'modular_chomp/icons/turf/desert_planet.dmi' + icon_state = "grass" + edge_blending_priority = 6 + turf_layers = list(/turf/simulated/floor/outdoors/desert_planet/sand) + +/turf/simulated/floor/outdoors/desert_planet/deep_grass + name = "dense grass" + desc = "Dense patch of grass, seems like a soft spot to lay on." + icon = 'modular_chomp/icons/turf/desert_planet.dmi' + icon_state = "deep_grass" + edge_blending_priority = 7 + turf_layers = list(/turf/simulated/floor/outdoors/desert_planet/sand) + +/turf/simulated/floor/outdoors/desert_planet/gravel + name = "gravel" + desc = "Mix of dirt and sand, it crumbles in your hand." + icon = 'modular_chomp/icons/turf/desert_planet.dmi' + icon_state = "gravel" + edge_blending_priority = 5 + turf_layers = list(/turf/simulated/floor/outdoors/desert_planet/sand) + +/turf/simulated/floor/outdoors/desert_planet/mud + name = "mud" + desc = "Squishy damp dirt, smells muddy." + icon = 'modular_chomp/icons/turf/desert_planet.dmi' + icon_state = "mud" + edge_blending_priority = 4 + turf_layers = list(/turf/simulated/floor/outdoors/desert_planet/sand) + +/turf/simulated/floor/outdoors/desert_planet/water + name = "water" + desc = "Clear cool water, looks potable." + icon = 'modular_chomp/icons/turf/desert_planet.dmi' + icon_state = "water" + edge_blending_priority = 8 + turf_layers = list(/turf/simulated/floor/outdoors/desert_planet/sand) + +/turf/simulated/floor/outdoors/desert_planet/deep_water + name = "deep water" + desc = "deep enough you can't see the bottom of it." + icon = 'modular_chomp/icons/turf/desert_planet.dmi' + icon_state = "deep_water" + edge_blending_priority = 9 + turf_layers = list(/turf/simulated/floor/outdoors/desert_planet/sand) diff --git a/modular_chomp/code/modules/clothing/clothing.dm b/modular_chomp/code/modules/clothing/clothing.dm new file mode 100644 index 0000000000..2b5d78bd94 --- /dev/null +++ b/modular_chomp/code/modules/clothing/clothing.dm @@ -0,0 +1,19 @@ +/obj/item/clothing/shoes/MouseDrop_T(mob/living/target, mob/living/user) + if(!istype(user)) return ..() // If the user passed in isn't a living mob, exit + if(target != user) return ..() // If the user didn't drag themselves, exit + if(user.incapacitated() || user.buckled) return ..() // If user is incapacitated or buckled, exit + if(get_holder_of_type(src, /mob/living/carbon/human) == user) return ..() // No jumping into your own equipment + if(ishuman(user) && user.get_effective_size() > 0.25) return ..() // Only micro characters + + var/full = 0 + for(var/mob/M in src) + if(istype(M,/mob/living/voice)) //Don't count voices as people! + continue + full++ + if(full >= 2) + to_chat(user, "It doesn't seem like there is room in \the [src]!") + else + to_chat(user, "You crawl into \the [src]!") + user.forceMove(src) + + return ..() diff --git a/modular_chomp/code/modules/datums/supplypacks/contraband.dm b/modular_chomp/code/modules/datums/supplypacks/contraband.dm new file mode 100644 index 0000000000..9c82de136d --- /dev/null +++ b/modular_chomp/code/modules/datums/supplypacks/contraband.dm @@ -0,0 +1,16 @@ +/datum/supply_pack/supply/capcrystal + name = "Capture Crystal crate" + contains = list(/obj/item/capture_crystal) + cost = 500 + containertype = /obj/structure/closet/crate + containername = "Capture Crystal crate" + contraband = 1 + +/datum/supply_pack/supply/chemistrykitbundle + name = "gender and size chemistry bundle kit" + contains = list(/obj/item/selectable_item/chemistrykit/size = 3, + /obj/item/selectable_item/chemistrykit/gender = 3) + cost = 100 + containertype = /obj/structure/closet/crate + containername = "gender and size chemistry bundle crate" + contraband = 1 diff --git a/modular_chomp/code/modules/datums/supplypacks/engineering.dm b/modular_chomp/code/modules/datums/supplypacks/engineering.dm new file mode 100644 index 0000000000..3138c88fd9 --- /dev/null +++ b/modular_chomp/code/modules/datums/supplypacks/engineering.dm @@ -0,0 +1,6 @@ +/datum/supply_pack/eng/engine/rotary_wheel + contains = list(/obj/item/weapon/circuitboard/machine/reg_c) + name = "c-type rotary electric generator board" + containertype = /obj/structure/closet/crate/focalpoint + containername = "c-type rotary board crate" + access = access_engine diff --git a/modular_chomp/code/modules/datums/supplypacks/hydrophonic.dm b/modular_chomp/code/modules/datums/supplypacks/hydrophonic.dm new file mode 100644 index 0000000000..434365974e --- /dev/null +++ b/modular_chomp/code/modules/datums/supplypacks/hydrophonic.dm @@ -0,0 +1,18 @@ +/datum/supply_pack/hydro/teppi + name = "Teppi crate" + cost = 60 //considering a corgi crate is 50, and you get two fennecs + containertype = /obj/structure/largecrate/animal/teppi + containername = "Teppi crate" + +/datum/supply_pack/hydro/sheep + name = "Sheep crate" + cost = 25 + containertype = /obj/structure/largecrate/animal/sheep + containername = "Goat crate" + access = access_hydroponics + +/datum/supply_pack/hydro/woofdog + name = "Dog crate" + cost = 50 + containertype = /obj/structure/largecrate/animal/woofdog + containername = "Dog carrier" diff --git a/modular_chomp/code/modules/datums/supplypacks/medical.dm b/modular_chomp/code/modules/datums/supplypacks/medical.dm index d4bbe27f82..a0b6f4b4c6 100644 --- a/modular_chomp/code/modules/datums/supplypacks/medical.dm +++ b/modular_chomp/code/modules/datums/supplypacks/medical.dm @@ -3,4 +3,11 @@ contains = list(/obj/item/weapon/backup_implanter = 4) cost = 50 containertype = /obj/structure/closet/crate/medical - containername = "Spare backup implanters" \ No newline at end of file + containername = "Spare backup implanters" + +/datum/supply_pack/med/decrotizer + name = "Commercial Denecrotizer " + contains = list(/obj/item/device/denecrotizer/medical) + cost = 40 + containertype = /obj/structure/closet/crate/secure + containername = "commercial denecrotizer crate" diff --git a/modular_chomp/code/modules/datums/supplypacks/science.dm b/modular_chomp/code/modules/datums/supplypacks/science.dm new file mode 100644 index 0000000000..493d500d99 --- /dev/null +++ b/modular_chomp/code/modules/datums/supplypacks/science.dm @@ -0,0 +1,7 @@ +/datum/supply_pack/sci/pred_sect + name = "EXTREMELY Dangerous Bug" + cost = 200 + containertype = /obj/structure/largecrate/animal/bugsect + containername = "EXTREMELY Dangerous Bug crate" + contraband = 1 + access = access_xenobiology diff --git a/modular_chomp/code/modules/food/drinkgglass/metaglass.dm b/modular_chomp/code/modules/food/drinkgglass/metaglass.dm new file mode 100644 index 0000000000..988fff245a --- /dev/null +++ b/modular_chomp/code/modules/food/drinkgglass/metaglass.dm @@ -0,0 +1,296 @@ +//////////////////CHOMP////////////////////////// + +/datum/reagent/ethanol/cloverclub + glass_icon_state = "cloverclub" + glass_icon_source = 'modular_chomp/icons/obj/drinks.dmi' + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/ethanol/spiderdrink + glass_icon_state = "glassofspiders" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/drink/tea/minttea + glass_icon_state = "bigteacup" + +/datum/reagent/drink/tea/lemontea + glass_icon_state = "bigteacup" + +/datum/reagent/drink/tea/limetea + glass_icon_state = "bigteacup" + +/datum/reagent/drink/tea/orangetea + glass_icon_state = "bigteacup" + +/datum/reagent/drink/tea/berrytea + glass_icon_state = "bigteacup" + +/datum/reagent/drink/tea/cherrytea + glass_icon_state = "bigteacup" + +/datum/reagent/drink/tea/watermelontea + glass_icon_state = "bigteacup" + +/datum/reagent/drink/bubbleteawatermelon + glass_icon_state = "bubbleteawatermelonglass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + glass_center_of_mass = list("x"=16, "y"=9) + +/datum/reagent/drink/bubbleteastrawberry + glass_icon_state = "bubbleteastrawberryglass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + glass_center_of_mass = list("x"=16, "y"=9) + +/datum/reagent/drink/bubbleteacherry + glass_icon_state = "bubbleteacherryglass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + glass_center_of_mass = list("x"=16, "y"=9) + +/datum/reagent/drink/bubbleteacoffee + glass_icon_state = "bubbleteacoffeeglass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + glass_center_of_mass = list("x"=16, "y"=9) + +/datum/reagent/drink/bubbleteabanana + glass_icon_state = "bubbleteabananaglass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + glass_center_of_mass = list("x"=16, "y"=9) + +/datum/reagent/drink/tea/matcha_latte + glass_icon_state = "bigteacup" + +/datum/reagent/drink/horchata + glass_icon_state = "horchata" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + glass_center_of_mass = list("x"=16, "y"=7) + +/datum/reagent/toxin/bluetrain + glass_icon_state = "bluetrain" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + glass_center_of_mass = list("x"=16, "y"=8) + +/datum/reagent/drink/lovepotion + glass_icon_state = "lovepotion" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/drink/lowpower + glass_icon_state = "lowpower" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/coffee/jackbrew + glass_icon_state = "jackbrew" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/bookwyrm + glass_icon_state = "bookwyrm" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/drink/highpower + glass_icon_state = "highpower" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/flapper + glass_icon_state = "flapper" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/toxin/oilslide + glass_icon_state = "oilslide" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/sitonmyface + glass_icon_state = "sitonmyface" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/hachi + glass_icon_state = "hachi" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/mojito + glass_icon_state = "mojito" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/slimedrink + glass_icon_state = "slimedrink" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/arachnidslammer + glass_icon_state = "arachnidslammer" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/drink/pilk + glass_icon_state = "whiskeyglass" + +//Visual Updates of existing drinks + +/datum/reagent/ethanol/gintonic + glass_icon_state = "gintonicglass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/coffee/kahlua + glass_icon_state = "kahluaglass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/wine + glass_icon_state = "wineglass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/cognac + glass_icon_state = "cognacglass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/cuba_libre + glass_icon_state = "cubalibreglass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/manly_dorf + glass_icon_state = "manlydorfglass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/tequilla_sunrise + glass_icon_state = "tequilasunriseglass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/screwdrivercocktail + glass_icon_state = "screwdriverglass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/bloody_mary + glass_icon_state = "bloodymaryglass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/coffee/brave_bull + glass_icon_state = "bravebullglass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/drink/doctor_delight + glass_icon_state = "doctorsdelightglass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/drink/soda/space_up + glass_icon_state = "space-up_glass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/vodkatonic + glass_icon_state = "vodkatonicglass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/manhattan + glass_icon_state = "manhattanglass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/manhattan_proj + glass_icon_state = "proj_manhattanglass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/ginfizz + glass_icon_state = "ginfizzglass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/longislandicedtea + glass_icon_state = "longislandicedteaglass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/threemileisland + glass_icon_state = "threemileislandglass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/margarita + glass_icon_state = "margaritaglass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/drink/soda/spacemountainwind + glass_icon_state = "Space_mountain_wind_glass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/thirteenloko + glass_icon_state = "thirteen_loko_glass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/drink/soda/dr_gibb + glass_icon_state = "dr_gibb_glass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/adminordrazine + glass_icon_state = "golden_cup" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/singulo + glass_icon_state = "singulo" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/silencer + glass_icon_state = "silencerglass" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/snowwhite + glass_icon_state = "snowwhite" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/antifreeze + glass_icon_state = "antifreeze" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/barefoot + glass_icon_state = "b&p" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/booger + glass_icon_state = "booger" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/devilskiss + glass_icon_state = "devilskiss" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/syndicatebomb + glass_icon_state = "syndicatebomb" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/narsour + glass_icon_state = "narsour" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/cogchamp + glass_icon_state = "cogchamp" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/alliescocktail + glass_icon_state = "alliescocktail" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/erikasurprise + glass_icon_state = "erikasurprise" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +//Ported drinks + +/datum/reagent/ethanol/fetching_fizz + glass_icon_state = "fetching_fizz" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/hearty_punch + glass_icon_state = "hearty_punch" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/squirt_cider + glass_icon_state = "squirt_cider" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/fringe_weaver + glass_icon_state = "fringe_weaver" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/crevice_spike + glass_icon_state = "crevice_spike" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/duplex + glass_icon_state = "duplex" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/mauna_loa + glass_icon_state = "mauna_loa" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' + +/datum/reagent/ethanol/hiveminderaser + glass_icon_state = "hiveminderaser" + glass_icon_file = 'modular_chomp/icons/obj/drinks.dmi' diff --git a/code/modules/food/food/drinks/bottle_ch.dm b/modular_chomp/code/modules/food/food/drinks/bottle.dm similarity index 74% rename from code/modules/food/food/drinks/bottle_ch.dm rename to modular_chomp/code/modules/food/food/drinks/bottle.dm index 45110f97c7..c5d3069933 100644 --- a/code/modules/food/food/drinks/bottle_ch.dm +++ b/modular_chomp/code/modules/food/food/drinks/bottle.dm @@ -1,10 +1,10 @@ /obj/item/weapon/reagent_containers/food/drinks/bottle/snaps name = "Akvavit" desc = "This could go well with lunch." - icon = 'icons/obj/drinks_ch.dmi' + icon = 'modular_chomp/icons/obj/drinks.dmi' icon_state = "snapsbottle" center_of_mass = list("x"=17, "y"=3) /obj/item/weapon/reagent_containers/food/drinks/bottle/snaps/Initialize() . = ..() - reagents.add_reagent("snaps", 100) \ No newline at end of file + reagents.add_reagent("snaps", 100) diff --git a/modular_chomp/code/modules/mining/shelter_atoms_ch.dm b/modular_chomp/code/modules/mining/shelter_atoms_ch.dm new file mode 100644 index 0000000000..44202349a1 --- /dev/null +++ b/modular_chomp/code/modules/mining/shelter_atoms_ch.dm @@ -0,0 +1,125 @@ +// Unique areas were requested for each superpose map for future use. The plain superpose area is for future varedits to all superpose submaps. +/area/survivalpod/superpose + +/area/survivalpod/superpose/CrashedInfestedShip + +/area/survivalpod/superpose/CrashedQurantineShip + +/area/survivalpod/superpose/CultShip + +/area/survivalpod/superpose/DemonPool + +/area/survivalpod/superpose/Dinner + +/area/survivalpod/superpose/ExplorerHome + +/area/survivalpod/superpose/Farm + +/area/survivalpod/superpose/FieldLab + +/area/survivalpod/superpose/HellCave + +/area/survivalpod/superpose/HydroCave + +/area/survivalpod/superpose/LargeAlienShip + +/area/survivalpod/superpose/LoneHome + +/area/survivalpod/superpose/MechFabShip + +/area/survivalpod/superpose/MechStorageFab + +/area/survivalpod/superpose/MercShip + +/area/survivalpod/superpose/MethLab + +/area/survivalpod/superpose/OldHotel + +/area/survivalpod/superpose/ScienceShip + +/area/survivalpod/superpose/SmallCombatShip + +/area/survivalpod/superpose/SurvivalBarracks + +/area/survivalpod/superpose/SurvivalCargo + +/area/survivalpod/superpose/SurvivalDIY_11x11 + +/area/survivalpod/superpose/SurvivalDIY_7x7 + +/area/survivalpod/superpose/SurvivalDIY_9x9 + +/area/survivalpod/superpose/SurvivalDinner + +/area/survivalpod/superpose/SurvivalEngineering + +/area/survivalpod/superpose/SurvivalHome + +/area/survivalpod/superpose/SurvivalHydro + +/area/survivalpod/superpose/SurvivalJanitor + +/area/survivalpod/superpose/SurvivalLeisure + +/area/survivalpod/superpose/SurvivalLuxuryBar + +/area/survivalpod/superpose/SurvivalLuxuryHome + +/area/survivalpod/superpose/SurvivalMedical + +/area/survivalpod/superpose/SurvivalPool + +/area/survivalpod/superpose/SurvivalQuarters + +/area/survivalpod/superpose/SurvivalScience + +/area/survivalpod/superpose/SurvivalSecurity + +/area/survivalpod/superpose/TinyCombatShip + +/area/survivalpod/superpose/TradingShip + +/area/survivalpod/superpose/WoodenCamp + +/obj/item/device/survivalcapsule/superpose + name = "superposed surfluid shelter capsule" + desc = "A proprietary hyperstructure of many three-dimensional spaces superposed around a supermatter nano crystal; use a pen to reach the reset button. There's a license for use printed on the bottom." + description_info = "The capsule contains pockets of compressed space in a super position stabilized by a miniscule supermatter crystal. \ + NanoTrasen stresses the safety of this model over previous prototypes but assumes no liability for sub-kiloton explosions." + template_id = null + var/list/template_ids = list() + var/pod_initialized = FALSE + +// Override since the parent proc has a sanity check to delete the capsule if no template is found, which doesn't exactly work with this item considering examining calls this proc. +/obj/item/device/survivalcapsule/superpose/get_template() + if(template) + return + template = SSmapping.shelter_templates[template_id] + if(!template) + template = null + +/obj/item/device/survivalcapsule/superpose/attack_self() + if(!pod_initialized) // Populate list after round start as map templates might not exist when this item is created. + for(var/datum/map_template/shelter/superpose/shelter_type as anything in subtypesof(/datum/map_template/shelter)) + if(!(initial(shelter_type.mappath)) || !(initial(shelter_type.superpose))) // Limits map templates to those marked for the superpose capsule. + continue + template_ids += initial(shelter_type.shelter_id) + pod_initialized = TRUE + if(!template_id) + var/answer = tgui_input_list(usr, "Which template would you like to load?","Available Templates", template_ids) + if(!answer) + return + else + src.template_id = answer + return // Return here or the pod will activate as soon as a selection is made. + + // Now we call super to run the rest of the parent proc since the choice has been handled. + ..() + +// Allows resetting the capsule if the wrong template is chosen. +/obj/item/device/survivalcapsule/superpose/attackby(obj/item/W, mob/user) + if(istype(W, /obj/item/weapon/pen) && !used) + template_id = null + template = null // Important to reset both, otherwise the template cannot be reset once the pod has been deployed. + to_chat(user, "You reset the pod's selection.") + ..() diff --git a/modular_chomp/code/modules/mining/shelters_ch.dm b/modular_chomp/code/modules/mining/shelters_ch.dm new file mode 100644 index 0000000000..42e0251d78 --- /dev/null +++ b/modular_chomp/code/modules/mining/shelters_ch.dm @@ -0,0 +1,249 @@ +/datum/map_template/shelter + var/superpose = FALSE + +// Subtype to mark maps for use with the superpose capsule. This is mostly to prevent automatic additions from upstream changes. +/datum/map_template/shelter/superpose + superpose = TRUE + name = "ERROR: string 'name' cannot be null!" + description = "ERROR: string 'description' cannot be null!" + mappath = null + +/datum/map_template/shelter/superpose/CrashedInfestedShip + shelter_id = "CrashedInfestedShip" + mappath = "modular_chomp/maps/submaps/shelters/CrashedInfestedShip-60x29.dmm" + name = "Crashed infested ship." + description = "A large alien ship that is heavily damaged, there is signs of xeno infestation." + +/datum/map_template/shelter/superpose/CrashedQurantineShip + shelter_id = "CrashedQurantineShip" + mappath = "modular_chomp/maps/submaps/shelters/CrashedQurantineShip-25x25.dmm" + name = "Crashed Qurantine Ship." + description = "A white medical ship that is heavily damaged, there is signs of a viral outbreak." + +/datum/map_template/shelter/superpose/CultShip + shelter_id = "CultShip" + mappath = "modular_chomp/maps/submaps/shelters/CultShip-28x17.dmm" + name = "Cultist ship." + description = "A medium size cult themed ship, it has some basic cultist gear." + +/datum/map_template/shelter/superpose/DemonPool + shelter_id = "DemonPool" + mappath = "modular_chomp/maps/submaps/shelters/DemonPool-21x21.dmm" + name = "Demon pool." + description = "A large redspace corruption with lava, flesh tiles and a small cultist room in the middle." + +/datum/map_template/shelter/superpose/Dinner + shelter_id = "Dinner" + mappath = "modular_chomp/maps/submaps/shelters/Dinner-25x25.dmm" + name = "Local diner." + description = "A medium size diner with all kitchen appliances and food." + +/datum/map_template/shelter/superpose/ExplorerHome + shelter_id = "ExplorerHome" + mappath = "modular_chomp/maps/submaps/shelters/ExplorerHome-17x20.dmm" + name = "Explorer home." + description = "A small wooden home with various hunting prizes and the basics to survive in the wilderness." + +/datum/map_template/shelter/superpose/Farm + shelter_id = "Farm" + mappath = "modular_chomp/maps/submaps/shelters/Farm-32x32.dmm" + name = "Farm." + description = "A medium size farm with all the needs to grow food!" + +/datum/map_template/shelter/superpose/FieldLab + shelter_id = "FieldLab" + mappath = "modular_chomp/maps/submaps/shelters/FieldLab-20x20.dmm" + name = "Field laboratory." + description = "A compact laboratory with various science machines and equipment." + +/datum/map_template/shelter/superpose/HellCave + shelter_id = "HellCave" + mappath = "modular_chomp/maps/submaps/shelters/HellCave-40x25.dmm" + name = "Hell cave." + description = "A small cave corrupted by redspace, filled with various cultist items." + +/datum/map_template/shelter/superpose/HydroCave + shelter_id = "HydroCave" + mappath = "modular_chomp/maps/submaps/shelters/HydroCave-40x40.dmm" + name = "Hydroponics cave." + description = "A burried hydroponics facility with various living quarters needs and equipment." + +/datum/map_template/shelter/superpose/LargeAlienShip + shelter_id = "LargeAlienShip" + mappath = "modular_chomp/maps/submaps/shelters/LargeAlienShip-60x29.dmm" + name = "Large alien ship." + description = "A large alien ship filled with various alien machines and items." + +/datum/map_template/shelter/superpose/LoneHome + shelter_id = "LoneHome" + mappath = "modular_chomp/maps/submaps/shelters/LoneHome-20x25.dmm" + name = "Lonely home." + description = "An old very worn down wooden house, with enough materials and tools to refurnish and repair it." + +/datum/map_template/shelter/superpose/MechFabShip + shelter_id = "MechFabShip" + mappath = "modular_chomp/maps/submaps/shelters/MechFabShip-27x24.dmm" + name = "Mech fabrication ship." + description = "A medium size ship equiped with mech fabrication machines." + +/datum/map_template/shelter/superpose/MechStorageFab + shelter_id = "MechStorageFab" + mappath = "modular_chomp/maps/submaps/shelters/MechStorageFab-32x24.dmm" + name = "Mech storage facility." + description = "An old abandoned mech fabrication facility, most of the facility seems functional." + +/datum/map_template/shelter/superpose/MercShip + shelter_id = "MercShip" + mappath = "modular_chomp/maps/submaps/shelters/MercShip-60x29.dmm" + name = "Mercenary ship." + description = "A old mercenery ship filled with various trading goods." + +/datum/map_template/shelter/superpose/MethLab + shelter_id = "MethLab" + mappath = "modular_chomp/maps/submaps/shelters/MethLab-20x20.dmm" + name = "Meth laboratory." + description = "A old worn down chemical lab used to produce illegal goods." + +/datum/map_template/shelter/superpose/OldHotel + shelter_id = "OldHotel" + mappath = "modular_chomp/maps/submaps/shelters/OldHotel-25x25.dmm" + name = "Old hotel." + description = "An old worn down wooden hotel, heavily damaged but with enough materials to patch it up." + +/datum/map_template/shelter/superpose/ScienceShip + shelter_id = "ScienceShip" + mappath = "modular_chomp/maps/submaps/shelters/ScienceShip-25x33.dmm" + name = "Science ship." + description = "An expedition science ship with all the needs to host a small team." + +/datum/map_template/shelter/superpose/SmallCombatShip + shelter_id = "SmallCombatShip" + mappath = "modular_chomp/maps/submaps/shelters/SmallCombatShip-9x11.dmm" + name = "Small combat ship." + description = "A small combat ship with the bear minimum needs for survival." + +/datum/map_template/shelter/superpose/SurvivalBarracks + shelter_id = "SurvivalBarracks" + mappath = "modular_chomp/maps/submaps/shelters/SurvivalBarracks-11x11.dmm" + name = "Survival barracks." + description = "NT pantented living quarters survival pod, all the needs to host 4 crew-mates." + +/datum/map_template/shelter/superpose/SurvivalCargo + shelter_id = "SurvivalCargo" + mappath = "modular_chomp/maps/submaps/shelters/SurvivalCargo-11x11.dmm" + name = "Survival cargo dep." + description = "NT pantented cargo department survival pod, loaded with mining, crates and cargo gear." + +/datum/map_template/shelter/superpose/SurvivalDIY_11x11 + shelter_id = "SurvivalDIY_11x11" + mappath = "modular_chomp/maps/submaps/shelters/SurvivalDIY-11x11.dmm" + name = "Survival DIY large." + description = "NT pantented Do-it-yourself survival pod, a large inflatable building filled with building materials. It even has a RCD and a cargo vehicle." + +/datum/map_template/shelter/superpose/SurvivalDIY_7x7 + shelter_id = "SurvivalDIY_7x7" + mappath = "modular_chomp/maps/submaps/shelters/SurvivalDIY-7x7.dmm" + name = "Survival DIY medium." + description = "NT pantented Do-it-yourself survival pod, a medium inflatable building filled with building materials. It even has a RCD and a quad-bike." + +/datum/map_template/shelter/superpose/SurvivalDIY_9x9 + shelter_id = "SurvivalDIY_9x9" + mappath = "modular_chomp/maps/submaps/shelters/SurvivalDIY-9x9.dmm" + name = "Survival DIY small." + description = "NT pantented Do-it-yourself survival pod, a small inflatable building filled with building materials. It even has a RCD." + +/datum/map_template/shelter/superpose/SurvivalDinner + shelter_id = "SurvivalDinner" + mappath = "modular_chomp/maps/submaps/shelters/SurvivalDinner-11x11.dmm" + name = "Survival mess hall." + description = "NT pantented mess hall and kitchen survival pod, it has all a kitchen requires to cook food. Bathroom included!" + +/datum/map_template/shelter/superpose/SurvivalEngineering + shelter_id = "SurvivalEngineering" + mappath = "modular_chomp/maps/submaps/shelters/SurvivalEngineering-9x9.dmm" + name = "Survival engineering dep." + description = "NT pantented engineering survival pod, loaded with tools, machines and materials to patch and fix any facility." + +/datum/map_template/shelter/superpose/SurvivalHome + shelter_id = "SurvivalHome" + mappath = "modular_chomp/maps/submaps/shelters/SurvivalHome-9x9.dmm" + name = "Survival home pod." + description = "A medium survival pod that can host a small team, has some basic survival gear." + +/datum/map_template/shelter/superpose/SurvivalHydro + shelter_id = "SurvivalHydro" + mappath = "modular_chomp/maps/submaps/shelters/SurvivalHydro-9x9.dmm" + name = "Survival hydroponics bay. " + description = "NT pantented hydroponics survival pod, loaded with everything you need to start growing food." + +/datum/map_template/shelter/superpose/SurvivalJanitor + shelter_id = "SurvivalJanitor" + mappath = "modular_chomp/maps/submaps/shelters/SurvivalJanitor-7x7.dmm" + name = "Survival janitor pod." + description = "NT pantented janitor survival pod, loaded with enough cleaning supplies to clean any mess." + +/datum/map_template/shelter/superpose/SurvivalLeisure + shelter_id = "SurvivalLeisure" + mappath = "modular_chomp/maps/submaps/shelters/SurvivalLeisure-9x9.dmm" + name = "Survival leisure pod." + description = "NT pantented leisure survival pod, loaded with various recreational goods to stave off boredom." + +/datum/map_template/shelter/superpose/SurvivalLuxuryBar + shelter_id = "SurvivalLuxuryBar" + mappath = "modular_chomp/maps/submaps/shelters/SurvivalLuxuryBar-11x11.dmm" + name = "Survival luxury bar." + description = "A luxurious bar pod, includes a large selection of liquors, bathroom and even a strip room!" + +/datum/map_template/shelter/superpose/SurvivalLuxuryHome + shelter_id = "SurvivalLuxuryHome" + mappath = "modular_chomp/maps/submaps/shelters/SurvivalLuxuryHome-11x11.dmm" + name = "Survival luxury home." + description = "A luxurious pod filled with various home amenities, is a home away from home!" + +/datum/map_template/shelter/superpose/SurvivalMedical + shelter_id = "SurvivalMedical" + mappath = "modular_chomp/maps/submaps/shelters/SurvivalMedical-9x9.dmm" + name = "Survival medical dep." + description = "NT pantented medical survival pod, loaded with medical equipment, scanner, sleeper and a surgery table." + +/datum/map_template/shelter/superpose/SurvivalPool + shelter_id = "SurvivalPool" + mappath = "modular_chomp/maps/submaps/shelters/SurvivalPool-11x11.dmm" + name = "Survival pool pod." + description = "NT pantented leisure pool survival pod, a leisure structure for crew to workout and relax." + +/datum/map_template/shelter/superpose/SurvivalQuarters + shelter_id = "SurvivalQuarters" + mappath = "modular_chomp/maps/submaps/shelters/SurvivalQuarters-9x9.dmm" + name = "Survival living quarters." + description = "NT pantented survival quarters pod, loaded with survival equipment and enough beds for 4 crewmates." + +/datum/map_template/shelter/superpose/SurvivalScience + shelter_id = "SurvivalScience" + mappath = "modular_chomp/maps/submaps/shelters/SurvivalScience-9x9.dmm" + name = "Survival science dep." + description = "NT pantented science survival pod, loaded with research terminals, mech fabricator, autolathe and everything to do field research." + +/datum/map_template/shelter/superpose/SurvivalSecurity + shelter_id = "SurvivalSecurity" + mappath = "modular_chomp/maps/submaps/shelters/SurvivalSecurity-9x9.dmm" + name = "Survival security dep." + description = "NT pantented security survival pod, a high security brig with and some security equipment." + +/datum/map_template/shelter/superpose/TinyCombatShip + shelter_id = "TinyCombatShip" + mappath = "modular_chomp/maps/submaps/shelters/TinyCombatShip-9x7.dmm" + name = "Tiny combat ship." + description = "A very small combat ship with the bare minimum of survival gear." + +/datum/map_template/shelter/superpose/TradingShip + shelter_id = "TradingShip" + mappath = "modular_chomp/maps/submaps/shelters/TradingShip-40x22.dmm" + name = "Trading ship." + description = "A trading ship stocked with various goods." + +/datum/map_template/shelter/superpose/WoodenCamp + shelter_id = "WoodenCamp" + mappath = "modular_chomp/maps/submaps/shelters/WoodenCamp-10x10.dmm" + name = "Wooden camp." + description = "A very small camping lodge, a quick emergency hut to stave off the planets weather." diff --git a/modular_chomp/code/modules/mob/living/carbon/human/update_icons.dm b/modular_chomp/code/modules/mob/living/carbon/human/update_icons.dm index 15401de957..7ead82c834 100644 --- a/modular_chomp/code/modules/mob/living/carbon/human/update_icons.dm +++ b/modular_chomp/code/modules/mob/living/carbon/human/update_icons.dm @@ -1,9 +1,10 @@ // Expand shoe layer to allow changing the icon for digi legs // For some reason, suit and uniform already has this funcitonality, but shoes do not. -#define SHOES_LAYER_ALT 8 //Shoe-slot item (when set to be under uniform via verb) -#define SHOES_LAYER 11 //Shoe-slot item -#define VORE_BELLY_LAYER 31 //Should be the same that it is in update_icons.dm +//Duplicate defines so the code below can compile. See non-modular update_icons.dm for proper placement. +#define SHOES_LAYER_ALT 9 //Shoe-slot item (when set to be under uniform via verb) +#define SHOES_LAYER 12 //Shoe-slot item +#define VORE_BELLY_LAYER 32 //Should be the same that it is in update_icons.dm /mob/living/carbon/human/update_inv_shoes() //. = ..() diff --git a/modular_chomp/code/modules/mob/living/simple_mob/teppi.dm b/modular_chomp/code/modules/mob/living/simple_mob/teppi.dm new file mode 100644 index 0000000000..96eb9868c7 --- /dev/null +++ b/modular_chomp/code/modules/mob/living/simple_mob/teppi.dm @@ -0,0 +1,2 @@ +/mob/living/simple_mob/vore/alienanimals/teppi/baby + mob_size = MOB_MEDIUM diff --git a/modular_chomp/code/modules/mob/new_player/sprite_accessories_extra.dm b/modular_chomp/code/modules/mob/new_player/sprite_accessories_extra.dm new file mode 100644 index 0000000000..c1cc7b2ae1 --- /dev/null +++ b/modular_chomp/code/modules/mob/new_player/sprite_accessories_extra.dm @@ -0,0 +1,148 @@ +/datum/sprite_accessory/marking + var/hide_body_parts = list() + +/datum/sprite_accessory/marking/ch/anthrovirus_ra + name = "Anthro Virus (Right Arm)" + icon_state = "anthrovirus" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_R_ARM,BP_R_HAND) + hide_body_parts = list(BP_R_ARM,BP_R_HAND) + +/datum/sprite_accessory/marking/ch/anthrovirus_la + name = "Anthro Virus (Left Arm)" + icon_state = "anthrovirus" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_L_ARM,BP_L_HAND) + hide_body_parts = list(BP_L_ARM,BP_L_HAND) + +/datum/sprite_accessory/marking/ch/anthrovirus_rl + name = "Anthro Virus (Right Leg)" + icon_state = "anthrovirus" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_R_LEG) + hide_body_parts = list(BP_R_LEG) + +/datum/sprite_accessory/marking/ch/anthrovirus_ll + name = "Anthro Virus (Left Leg)" + icon_state = "anthrovirus" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_L_LEG) + hide_body_parts = list(BP_L_LEG) + +/datum/sprite_accessory/marking/ch/anthrovirus_rf + name = "Anthro Virus (Right Foot)" + icon_state = "anthrovirus" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_R_FOOT) + hide_body_parts = list(BP_R_FOOT) + +/datum/sprite_accessory/marking/ch/anthrovirus_lf + name = "Anthro Virus (Left Foot)" + icon_state = "anthrovirus" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_L_FOOT) + hide_body_parts = list(BP_L_FOOT) + +/datum/sprite_accessory/marking/ch/anthrovirus_t + name = "Anthro Virus (Torso)" + icon_state = "anthrovirus" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_TORSO,BP_GROIN) + hide_body_parts = list(BP_TORSO,BP_GROIN) + +/datum/sprite_accessory/marking/ch/anthrovirus_h + name = "Anthro Virus (Head)" + icon_state = "anthrovirus" + body_parts = list(BP_HEAD) + color_blend_mode = ICON_MULTIPLY + hide_body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/ch/virus_ra + name = "Bacteriophage (Right Arm)" + icon_state = "virus" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_R_ARM,BP_R_HAND) + hide_body_parts = list(BP_R_ARM,BP_R_HAND) + +/datum/sprite_accessory/marking/ch/virus_la + name = "Bacteriophage (Left Arm)" + icon_state = "virus" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_L_ARM,BP_L_HAND) + hide_body_parts = list(BP_L_ARM,BP_L_HAND) + +/datum/sprite_accessory/marking/ch/virus_rl + name = "Bacteriophage (Right Leg)" + icon_state = "virus" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_R_LEG,BP_R_FOOT) + hide_body_parts = list(BP_R_LEG,BP_R_FOOT) + +/datum/sprite_accessory/marking/ch/virus_ll + name = "Bacteriophage (Left Leg)" + icon_state = "virus" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_L_LEG,BP_L_FOOT) + hide_body_parts = list(BP_L_LEG,BP_L_FOOT) + +/datum/sprite_accessory/marking/ch/virus_t + name = "Bacteriophage (Torso)" + icon_state = "virus" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_TORSO,BP_GROIN) + hide_body_parts = list(BP_TORSO,BP_GROIN) + +/datum/sprite_accessory/marking/ch/virus_g + name = "Bacteriophage (Groin)" + icon_state = "virusgroin" //this is separate so that the groin region can be hidden by the torso. + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_GROIN) + //hide_body_parts = list(BP_GROIN) this IS pretty low, even for the groin body part. + +/datum/sprite_accessory/marking/ch/virus_h + name = "Bacteriophage (Head)" + icon_state = "virus" + body_parts = list(BP_HEAD) + color_blend_mode = ICON_MULTIPLY + hide_body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/ch/tyranid + name = "Tyranid Bodytype (Use with Armor)" + icon_state = "tyranid" + color_blend_mode = ICON_MULTIPLY + hide_body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_GROIN,BP_TORSO,BP_HEAD) + body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_GROIN,BP_TORSO,BP_HEAD) + +/datum/sprite_accessory/marking/ch/tyranid_armor + name = "Tyranid Bodytype (Armor)" + icon_state = "tyranidarmor" + color_blend_mode = ICON_MULTIPLY + hide_body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_GROIN,BP_TORSO,BP_HEAD) + body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_GROIN,BP_TORSO,BP_HEAD) + +/datum/sprite_accessory/marking/ch/tyranid_legs + name = "Tyranid Legs (Use with Armor)" + icon_state = "tyranid" + color_blend_mode = ICON_MULTIPLY + hide_body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG) + body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_GROIN) + +/datum/sprite_accessory/marking/ch/tyranid_legs_armor + name = "Tyranid Legs (Armor)" + icon_state = "tyranidarmor" + color_blend_mode = ICON_MULTIPLY + hide_body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG) + body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_GROIN) + +/datum/sprite_accessory/marking/ch/sect_drone + name = "Sect Drone Bodytype" + icon_state = "sectdrone" + color_blend_mode = ICON_MULTIPLY + hide_body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_GROIN,BP_TORSO,BP_HEAD) + body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_GROIN,BP_TORSO,BP_HEAD) + +/datum/sprite_accessory/marking/ch/sect_drone_eyes + name = "Sect Drone Eyes" + icon_state = "sectdrone_eyes" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) \ No newline at end of file diff --git a/modular_chomp/code/modules/mob/new_player/sprite_accessories_tail.dm b/modular_chomp/code/modules/mob/new_player/sprite_accessories_tail.dm new file mode 100644 index 0000000000..01f7767d8f --- /dev/null +++ b/modular_chomp/code/modules/mob/new_player/sprite_accessories_tail.dm @@ -0,0 +1,22 @@ +/datum/sprite_accessory/tail/anthrovirus_tail + name = "Anthro Virus Tail" + icon = 'icons/mob/vore/tails_ch.dmi' + icon_state = "anthrovirustail_mark" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + extra_overlay = "anthrovirustail" + +/datum/sprite_accessory/tail/tyranid_tail + name = "Tyranid" + icon = 'icons/mob/vore/tails_ch.dmi' + icon_state = "tyranid" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/tail/sectdrone_tail + name = "Sect Drone Tail (To use with bodytype-marking)" + icon = 'icons/mob/vore/tails_ch.dmi' + icon_state = "sectdrone_tail" + extra_overlay = "sectdrone_tail_mark" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY \ No newline at end of file diff --git a/modular_chomp/code/modules/mob/new_player/sprite_accessories_taur.dm b/modular_chomp/code/modules/mob/new_player/sprite_accessories_taur.dm index 6ec0f1c341..efdf1bb476 100644 --- a/modular_chomp/code/modules/mob/new_player/sprite_accessories_taur.dm +++ b/modular_chomp/code/modules/mob/new_player/sprite_accessories_taur.dm @@ -4,3 +4,10 @@ /datum/sprite_accessory/tail/taur/wolf vore_tail_sprite_variant = "N" + +/datum/sprite_accessory/tail/taur/ch/longvirus + name = "Long Virus (Taur)" + icon_state = "longvirus_s" + extra_overlay = "longvirus_markings" + icon_sprite_tag = "virus" + //suit_sprites = 'icons/mob/taursuits_noodle.dmi' Aye, I've gotta sprite that shit. \ No newline at end of file diff --git a/modular_chomp/code/modules/mob/new_player/sprite_accessories_wing.dm b/modular_chomp/code/modules/mob/new_player/sprite_accessories_wing.dm new file mode 100644 index 0000000000..e441f7241e --- /dev/null +++ b/modular_chomp/code/modules/mob/new_player/sprite_accessories_wing.dm @@ -0,0 +1,7 @@ +/datum/sprite_accessory/wing/sect_drone //We should some day make a variable to make some wings not be able to fly + name = "Sect drone wings (To use with bodytype marking)" + desc = "" + icon = 'icons/mob/vore/wings_ch.dmi' + icon_state = "sectdrone_wing" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY \ No newline at end of file diff --git a/modular_chomp/code/modules/organs/organ_external.dm b/modular_chomp/code/modules/organs/organ_external.dm new file mode 100644 index 0000000000..b4e6d22676 --- /dev/null +++ b/modular_chomp/code/modules/organs/organ_external.dm @@ -0,0 +1,14 @@ +//new function to check for markings +/obj/item/organ/external/proc/is_hidden_by_markings() + //code that checked all limbs. + /* + for(var/obj/item/organ/external/organ in owner.organs) + for(var/M in organ.markings) + var/datum/sprite_accessory/marking/mark_style = organ.markings[M]["datum"] + if (mark_style.hide_body_parts && (organ_tag in mark_style.hide_body_parts)) + return 1 + */ + for(var/M in markings) + var/datum/sprite_accessory/marking/mark_style = markings[M]["datum"] + if(istype(mark_style,/datum/sprite_accessory/marking/ch) && (organ_tag in mark_style.hide_body_parts)) + return 1 \ No newline at end of file diff --git a/modular_chomp/code/modules/organs/organ_icon.dm b/modular_chomp/code/modules/organs/organ_icon.dm new file mode 100644 index 0000000000..230868db08 --- /dev/null +++ b/modular_chomp/code/modules/organs/organ_icon.dm @@ -0,0 +1,173 @@ +/obj/item/organ/external/get_icon(var/skeletal) + var/digitigrade = 0 + + // preferentially take digitigrade value from owner if available, THEN DNA. + // this allows limbs to be set properly when being printed in the bioprinter without an owner + // this also allows the preview mannequin to update properly because customisation topic calls don't call a DNA check + if(owner) + digitigrade = owner.digitigrade + else if(dna) + digitigrade = dna.digitigrade + + if( !model && ( istype(src,/obj/item/organ/external/leg) || istype(src,/obj/item/organ/external/foot) ) ) //All leg icons go through here now. + + var/gender = "m" + if(owner && owner.gender == FEMALE) + gender = "f" + + if(!force_icon_key) + icon_cache_key = "[icon_name]_[species ? species.get_bodytype() : SPECIES_HUMAN]" //VOREStation Edit + else + icon_cache_key = "[icon_name]_[force_icon_key]" + + if(force_icon) + mob_icon = new /icon(force_icon, "[icon_name][gendered_icon ? "_[gender]" : ""]") + else + if(!dna) + mob_icon = new /icon('icons/mob/human_races/r_human.dmi', "[icon_name][gendered_icon ? "_[gender]" : ""]") + else + + if(!gendered_icon) + gender = null + else + if(dna.GetUIState(DNA_UI_GENDER)) + gender = "f" + else + gender = "m" + + if(skeletal) + mob_icon = new /icon('icons/mob/human_races/r_skeleton.dmi', "[icon_name][gender ? "_[gender]" : ""]") + else if (robotic >= ORGAN_ROBOT) + mob_icon = new /icon('icons/mob/human_races/robotic.dmi', "[icon_name][gender ? "_[gender]" : ""]") + apply_colouration(mob_icon) + else + if(is_hidden_by_markings()) + mob_icon = new /icon('icons/mob/human_races/r_blank.dmi', "[icon_name][gender ? "_[gender]" : ""]") + else + //Use digi icon if digitigrade, otherwise use regular icon. Ternary operator is based. + mob_icon = new /icon(digitigrade ? species.icodigi : species.get_icobase(owner, (status & ORGAN_MUTATED)), "[icon_name][gender ? "_[gender]" : ""]") + apply_colouration(mob_icon) + + //Code here is copied from organ_icon.dm line 118 at time of writing (9/20/21), VOREStation edits are left in intentionally, because I think it's worth keeping track of the fact that the code is from Virgo's edits. + //Body markings, actually does not include head this time. Done separately above. + if(!istype(src,/obj/item/organ/external/head)) + for(var/M in markings) + var/datum/sprite_accessory/marking/mark_style = markings[M]["datum"] + var/isdigitype = istype(mark_style,/datum/sprite_accessory/marking/digi) + if(!(digitigrade ^ isdigitype)) //Equivalent to XNOR; this code will only run if either both digitigrade and isdigitype are true, or if both are false. + var/icon/mark_s = new/icon("icon" = mark_style.icon, "icon_state" = "[mark_style.icon_state]-[organ_tag]") + mark_s.Blend(markings[M]["color"], mark_style.color_blend_mode) // VOREStation edit + add_overlay(mark_s) //So when it's not on your body, it has icons + mob_icon.Blend(mark_s, ICON_OVERLAY) //So when it's on your body, it has icons + icon_cache_key += "[M][markings[M]["color"]]" + if(body_hair && islist(h_col) && h_col.len >= 3) + var/cache_key = "[body_hair]-[icon_name]-[h_col[1]][h_col[2]][h_col[3]]" + if(!limb_icon_cache[cache_key]) + var/icon/I = icon(species.get_icobase(owner), "[icon_name]_[body_hair]") + I.Blend(rgb(h_col[1],h_col[2],h_col[3]), ICON_MULTIPLY) //VOREStation edit + limb_icon_cache[cache_key] = I + mob_icon.Blend(limb_icon_cache[cache_key], ICON_OVERLAY) + + // VOREStation edit start + if(nail_polish) + var/icon/I = new(nail_polish.icon, nail_polish.icon_state) + I.Blend(nail_polish.color, ICON_MULTIPLY) + add_overlay(I) + mob_icon.Blend(I, ICON_OVERLAY) + icon_cache_key += "_[nail_polish.icon]_[nail_polish.icon_state]_[nail_polish.color]" + // VOREStation edit end + dir = EAST + icon = mob_icon + return mob_icon + + else + //. = ..() + //due to the wierd fact that this calls the old code, and defining it here makes a duplicate procedure error, i'm gonna have to bring the whole code here and modify it. if there is a more condensed way, it is appreciated. + + var/gender = "m" + if(owner && owner.gender == FEMALE) + gender = "f" + + if(!force_icon_key) + icon_cache_key = "[icon_name]_[species ? species.get_bodytype() : SPECIES_HUMAN]" //VOREStation Edit + else + icon_cache_key = "[icon_name]_[force_icon_key]" + + if(force_icon) + mob_icon = new /icon(force_icon, "[icon_name][gendered_icon ? "_[gender]" : ""]") + else + if(!dna) + mob_icon = new /icon('icons/mob/human_races/r_human.dmi', "[icon_name][gendered_icon ? "_[gender]" : ""]") + else + if(!gendered_icon) + gender = null + else + if(dna.GetUIState(DNA_UI_GENDER)) + gender = "f" + else + gender = "m" + + if(skeletal) + mob_icon = new /icon('icons/mob/human_races/r_skeleton.dmi', "[icon_name][gender ? "_[gender]" : ""]") + else if (robotic >= ORGAN_ROBOT) + mob_icon = new /icon('icons/mob/human_races/robotic.dmi', "[icon_name][gender ? "_[gender]" : ""]") + apply_colouration(mob_icon) + else + if(is_hidden_by_markings()) + mob_icon = new /icon('icons/mob/human_races/r_blank.dmi', "[icon_name][gender ? "_[gender]" : ""]") + else + //Use digi icon if digitigrade, otherwise use regular icon. Ternary operator is based. + mob_icon = new /icon(species.get_icobase(owner, (status & ORGAN_MUTATED)), "[icon_name][gender ? "_[gender]" : ""]") + apply_colouration(mob_icon) + + //Body markings, actually does not include head this time. Done separately above. + if(!istype(src,/obj/item/organ/external/head)) + for(var/M in markings) + var/datum/sprite_accessory/marking/mark_style = markings[M]["datum"] + var/icon/mark_s = new/icon("icon" = mark_style.icon, "icon_state" = "[mark_style.icon_state]-[organ_tag]") + mark_s.Blend(markings[M]["color"], mark_style.color_blend_mode) // VOREStation edit + add_overlay(mark_s) //So when it's not on your body, it has icons + mob_icon.Blend(mark_s, ICON_OVERLAY) //So when it's on your body, it has icons + icon_cache_key += "[M][markings[M]["color"]]" + + if(body_hair && islist(h_col) && h_col.len >= 3) + var/cache_key = "[body_hair]-[icon_name]-[h_col[1]][h_col[2]][h_col[3]]" + if(!limb_icon_cache[cache_key]) + var/icon/I = icon(species.get_icobase(owner), "[icon_name]_[body_hair]") + I.Blend(rgb(h_col[1],h_col[2],h_col[3]), ICON_MULTIPLY) //VOREStation edit + limb_icon_cache[cache_key] = I + mob_icon.Blend(limb_icon_cache[cache_key], ICON_OVERLAY) + + // VOREStation edit start + if(nail_polish) + var/icon/I = new(nail_polish.icon, nail_polish.icon_state) + I.Blend(nail_polish.color, ICON_MULTIPLY) + add_overlay(I) + mob_icon.Blend(I, ICON_OVERLAY) + icon_cache_key += "_[nail_polish.icon]_[nail_polish.icon_state]_[nail_polish.color]" + // VOREStation edit end + + if(model) + icon_cache_key += "_model_[model]" + apply_colouration(mob_icon) + if(owner && owner.synth_markings) + for(var/M in markings) + var/datum/sprite_accessory/marking/mark_style = markings[M]["datum"] + var/icon/mark_s = new/icon("icon" = mark_style.icon, "icon_state" = "[mark_style.icon_state]-[organ_tag]") + mark_s.Blend(markings[M]["color"], mark_style.color_blend_mode) // VOREStation edit + add_overlay(mark_s) //So when it's not on your body, it has icons + mob_icon.Blend(mark_s, ICON_OVERLAY) //So when it's on your body, it has icons + icon_cache_key += "[M][markings[M]["color"]]" + + if(body_hair && islist(h_col) && h_col.len >= 3) + var/cache_key = "[body_hair]-[icon_name]-[h_col[1]][h_col[2]][h_col[3]]" + if(!limb_icon_cache[cache_key]) + var/icon/I = icon(species.get_icobase(owner), "[icon_name]_[body_hair]") + I.Blend(rgb(h_col[1],h_col[2],h_col[3]), ICON_MULTIPLY) //VOREStation edit + limb_icon_cache[cache_key] = I + mob_icon.Blend(limb_icon_cache[cache_key], ICON_OVERLAY) + // VOREStation edit ends here + + dir = EAST + icon = mob_icon + return mob_icon \ No newline at end of file diff --git a/code/modules/reagents/reactions/instant/drinks_ch.dm b/modular_chomp/code/modules/reagents/reactions/instant/drinks.dm similarity index 80% rename from code/modules/reagents/reactions/instant/drinks_ch.dm rename to modular_chomp/code/modules/reagents/reactions/instant/drinks.dm index 72c2e37ade..07481ef4c3 100644 --- a/code/modules/reagents/reactions/instant/drinks_ch.dm +++ b/modular_chomp/code/modules/reagents/reactions/instant/drinks.dm @@ -1,329 +1,399 @@ -/decl/chemical_reaction/instant/drinks/minttea - name = "Mint Tea" - id = "minttea" - result = "minttea" - required_reagents = list("tea" = 5, "mint" = 1) - result_amount = 6 - -/decl/chemical_reaction/instant/drinks/lemontea - name = "Lemon Tea" - id = "lemontea" - result = "lemontea" - required_reagents = list("tea" = 5, "lemonjuice" = 1) - result_amount = 6 - -/decl/chemical_reaction/instant/drinks/limetea - name = "Lime Tea" - id = "limetea" - result = "limetea" - required_reagents = list("tea" = 5, "limejuice" = 1) - result_amount = 6 - -/decl/chemical_reaction/instant/drinks/orangetea - name = "Orange Tea" - id = "orangetea" - result = "orangetea" - required_reagents = list("tea" = 5, "orangejuice" = 1) - result_amount = 6 - -/decl/chemical_reaction/instant/drinks/berrytea - name = "Berry Tea" - id = "berrytea" - result = "berrytea" - required_reagents = list("tea" = 5, "berryjuice" = 1) - result_amount = 6 - -/decl/chemical_reaction/instant/drinks/cherrytea - name = "Cherry Tea" - id = "cherrytea" - result = "cherrytea" - required_reagents = list("tea" = 5, "cherryjelly" = 1) - result_amount = 6 - -/decl/chemical_reaction/instant/drinks/watermelontea - name = "Watermelon Tea" - id = "watermelontea" - result = "watermelontea" - required_reagents = list("tea" = 5, "watermelonjuice" = 1) - result_amount = 6 - -/decl/chemical_reaction/instant/tea/matcha_latte - id = "matcha_latte" - result = "matcha_latte" - required_reagents = list ("matchapowder" = 1, "milk" = 5) - result_amount = 5 - -/decl/chemical_reaction/instant/freshtea/green - id = "freshteagreen" - result = "freshteagreen" - required_reagents = list ("tealeavesgreen" = 1, "hotwater" = 9) - result_amount = 10 - -/decl/chemical_reaction/instant/instantteapowder/green - id = "instantteapowdergreen" - result = "instantteapowdergreen" - required_reagents = list ("teamush" = 10, "frostoil" = 1) - result_amount = 10 - -/decl/chemical_reaction/instant/instanttea/green - id = "instantteagreen" - result = "instantteagreen" - required_reagents = list ("instantteapowdergreen" = 1, "water" = 9) - result_amount = 10 - -/decl/chemical_reaction/instant/matcha - id = "matcha" - result = "matcha" - required_reagents = list ("matchapowder" = 1, "hotwater" = 2) - result_amount = 2 - -/decl/chemical_reaction/instant/drinks/spiderdrink - name = "Brimming glass of spiders" - id = "spiderdrink" - result = "spiderdrink" - required_reagents = list("spidertoxin" = 1, "clonexadone" = 5, "absinthe" = 4) - result_amount = 10 - -/decl/chemical_reaction/instant/drinks/bubbleteawatermelon - name = "Watermelon bubble tea" - id = "bubbleteawatermelon" - result = "bubbleteawatermelon" - required_reagents = list("gelatin" = 2, "watermelontea" = 6, "milk" = 2) - result_amount = 10 - -/decl/chemical_reaction/instant/drinks/bubbleteastrawberry - name = "Strawberry bubble tea" - id = "bubbleteastrawberry" - result = "bubbleteastrawberry" - required_reagents = list("gelatin" = 2, "berrytea" = 6, "milk" = 2) - result_amount = 10 - -/decl/chemical_reaction/instant/drinks/bubbleteacherry - name = "Cherry bubble tea" - id = "bubbleteacherry" - result = "bubbleteacherry" - required_reagents = list("gelatin" = 2, "cherrytea" = 6, "milk" = 2) - result_amount = 10 - -/decl/chemical_reaction/instant/drinks/bubbleteacoffee - name = "Coffee bubble tea" - id = "bubbleteacoffee" - result = "bubbleteacoffee" - required_reagents = list("gelatin" = 2, "tea" = 5, "cafe_latte" = 3) - result_amount = 10 - -/decl/chemical_reaction/instant/drinks/bubbleteabanana - name = "Banana bubble tea" - id = "bubbleteabanana" - result = "bubbleteabanana" - required_reagents = list("gelatin" = 2, "tea" = 5, "banana" = 1, "milk" = 2) - result_amount = 10 - -/decl/chemical_reaction/instant/drinks/horchata - name = "Horchata" - id = "horchata" - result = "horchata" - required_reagents = list("milk" = 1, "sugar" = 2, "rice" = 2) - result_amount = 5 - -/decl/chemical_reaction/instant/drinks/bluetrain - name = "Blue train" - id = "bluetrain" - result = "bluetrain" - required_reagents = list("coolant" = 2, "ethanol" = 2, "nutriment" = 1) - result_amount = 5 - -/decl/chemical_reaction/instant/drinks/lowpower - name = "The low power" - id = "lowpower" - result = "lowpower" - required_reagents = list("lemonade" = 1, "cream" = 1, "limejuice" = 1) - result_amount = 3 - -/decl/chemical_reaction/instant/drinks/jackbrew - name = "Jack's brew" - id = "jackbrew" - result = "jackbrew" - required_reagents = list("irishcoffee" = 1, "hyperzine" = 1) - result_amount = 2 - -/decl/chemical_reaction/instant/drinks/bookwyrm - name = "Bookwyrm's bite" - id = "bookwyrm" - result = "bookwyrm" - required_reagents = list("coldfront" = 1, "limejuice" = 1, "stoxin" = 1) - result_amount = 3 - -/decl/chemical_reaction/instant/drinks/highpower - name = "The high power" - id = "highpower" - result = "highpower" - required_reagents = list("lowpower" = 1, "iron" = 1, "uranium" = 1) - result_amount = 3 - -/decl/chemical_reaction/instant/drinks/flapper - name = "Flapper" - id = "flapper" - result = "flapper" - required_reagents = list("whiskey" = 1, "blood" = 1, "ice" = 1) - result_amount = 3 - -/decl/chemical_reaction/instant/toxin/oilslide - name = "Oil slide" - id = "oilslide" - result = "oilslide" - required_reagents = list("moonshine" = 1, "lube" = 1, "fuel" = 1) - result_amount = 3 - -/decl/chemical_reaction/instant/drinks/sitonmyface - name = "Sit on my face" - id = "sitonmyface" - result = "sitonmyface" - required_reagents = list("kahlua" = 1, "irishcream" = 1, "peanutbutter" = 1) - result_amount = 3 - -/decl/chemical_reaction/instant/drinks/hachi - name = "Hachi" - id = "hachi" - result = "hachi" - required_reagents = list("burbon" = 2, "sake" = 1, "lemonjuice" = 1, "mushroom" = 1) //Whoever coded this never made a mushroom reagent so this can't be created. - result_amount = 5 - -/decl/chemical_reaction/instant/drinks/narsour - name = "Nar'sour" - id = "narsour" - result = "narsour" - required_reagents = list("blood" = 1, "lemonjuice" = 1, "demonsblood" = 1) - mix_message = "The mixture develops a sinister glow." - reaction_sound = 'sound/effects/singlebeat.ogg' - result_amount = 3 - -/decl/chemical_reaction/instant/drinks/cogchamp - name = "CogChamp" - id = "cogchamp" - result = "cogchamp" - required_reagents = list("cognac" = 1, "fuel" = 1, "screwdrivercocktail" = 1) - mix_message = "You hear faint sounds of gears turning as the mixture gives off virulent plumes of steam." - reaction_sound = 'sound/machines/clockcult/steam_whoosh.ogg' - result_amount = 3 - -//thirteen loko possible to make now, so easier to make arachnid slammer - Jack - -/decl/chemical_reaction/instant/drinks/thirteenloko - name = "Thirteen Loko" - id = "thirteenloko" - result = "thirteenloko" - required_reagents = list("beer" = 1, "tequilla" = 1, "coffee" = 1) - result_amount = 3 - -//Arachnid slammer reactions - Jack - -/decl/chemical_reaction/instant/drinks/arachnidslammer - name = "Arachnid Slammer" - id = "arachnidslammer" - result = "arachnidslammer" - required_reagents = list("ale" = 1, "thirteenloko" = 1, "hyperzine" = 1) - mix_message = "The concortion of ale, energy drink and stimulants starts to heavily foam and fizzle, even sparkle a little." - result_amount = 3 - -/decl/chemical_reaction/instant/drinks/enragedarachnidslammer - name = "Enraged Arachnid Slammer" - id = "enragedarachnidslammer" - result = "enragedarachnidslammer" - required_reagents = list("infusedarachnidslammer" = 1, "spidertoxin" = 1) - mix_message = "The dormant Arachnid Slammer bubbles and fizzles loudly as it gets enraged by the spider toxin and breaks it down!" - result_amount = 5 - -/decl/chemical_reaction/instant/drinks/enragedarachnidslammer1 - name = "Enraged Arachnid Slammer" - id = "enragedarachnidslammer" - required_reagents = list("enragedarachnidslammer" = 1, "cyanide" = 1) - result = "enragedarachnidslammer" - result_amount = 0.1 - -/decl/chemical_reaction/instant/drinks/enragedarachnidslammer2 - name = "Enraged Arachnid Slammer" - id = "enragedarachnidslammer" - required_reagents = list("enragedarachnidslammer" = 1, "chloralhydrate" = 1) - result = "enragedarachnidslammer" - result_amount = 0.1 - -/decl/chemical_reaction/instant/drinks/enragedarachnidslammer3 - name = "Enraged Arachnid Slammer" - id = "enragedarachnidslammer" - required_reagents = list("enragedarachnidslammer" = 1, "stimm" = 1) - result = "enragedarachnidslammer" - result_amount = 0.1 - -/decl/chemical_reaction/instant/drinks/enragedarachnidslammer4 - name = "Enraged Arachnid Slammer" - id = "enragedarachnidslammer" - required_reagents = list("enragedarachnidslammer" = 1, "cryotoxin" = 1) - result = "enragedarachnidslammer" - result_amount = 0.1 - -/decl/chemical_reaction/instant/drinks/enragedarachnidslammer5 - name = "Enraged Arachnid Slammer" - id = "enragedarachnidslammer" - required_reagents = list("enragedarachnidslammer" = 1, "cryptobiolin" = 1) - result = "enragedarachnidslammer" - result_amount = 0.1 - -/decl/chemical_reaction/instant/drinks/enragedarachnidslammer6 - name = "Enraged Arachnid Slammer" - id = "enragedarachnidslammer" - required_reagents = list("enragedarachnidslammer" = 1, "stoxin" = 1) - result = "enragedarachnidslammer" - result_amount = 0.1 - -/decl/chemical_reaction/instant/drinks/enragedarachnidslammer7 - name = "Enraged Arachnid Slammer" - id = "enragedarachnidslammer" - required_reagents = list("enragedarachnidslammer" = 1, "condensedcapsaicin_v" = 1) - result = "enragedarachnidslammer" - result_amount = 0.1 - -/decl/chemical_reaction/instant/drinks/enragedarachnidslammer8 - name = "Enraged Arachnid Slammer" - id = "enragedarachnidslammer" - required_reagents = list("enragedarachnidslammer" = 1, "phoron" = 1) - result = "enragedarachnidslammer" - result_amount = 0.1 - -/decl/chemical_reaction/instant/drinks/enragedarachnidslammer9 - name = "Enraged Arachnid Slammer" - id = "enragedarachnidslammer" - required_reagents = list("enragedarachnidslammer" = 1, "thermite_v" = 1) - result = "enragedarachnidslammer" - result_amount = 0.1 - -/decl/chemical_reaction/instant/drinks/enragedarachnidslammer10 - name = "Enraged Arachnid Slammer" - id = "enragedarachnidslammer" - required_reagents = list("enragedarachnidslammer" = 1, "serotrotium_v" = 1) - result = "enragedarachnidslammer" - result_amount = 0.1 - -/decl/chemical_reaction/instant/drinks/pilk - name = "Pilk" - id = "pilk" - result = "pilk" - required_reagents = list("milk" = 1, "cola" = 1) - result_amount = 2 - - - -//YW drinks -/decl/chemical_reaction/instant/drinks/lovepotion_yw - name = "Strawberry Love Potion" - id = "strawberrylovepotion" - result = "strawberrylovepotion" - required_reagents = list("cream" = 1, "berryjuice" = 1, "sugar" = 1) - result_amount = 3 - -/decl/chemical_reaction/instant/drinks/wormblood - name = "Wormblood" - id = "wormblood" - result = "wormblood" - required_reagents = list("booger" = 1, "psilocybin" = 1) - result_amount = 2 +/decl/chemical_reaction/instant/drinks/minttea + name = "Mint Tea" + id = "minttea" + result = "minttea" + required_reagents = list("tea" = 5, "mint" = 1) + result_amount = 6 + +/decl/chemical_reaction/instant/drinks/lemontea + name = "Lemon Tea" + id = "lemontea" + result = "lemontea" + required_reagents = list("tea" = 5, "lemonjuice" = 1) + result_amount = 6 + +/decl/chemical_reaction/instant/drinks/limetea + name = "Lime Tea" + id = "limetea" + result = "limetea" + required_reagents = list("tea" = 5, "limejuice" = 1) + result_amount = 6 + +/decl/chemical_reaction/instant/drinks/orangetea + name = "Orange Tea" + id = "orangetea" + result = "orangetea" + required_reagents = list("tea" = 5, "orangejuice" = 1) + result_amount = 6 + +/decl/chemical_reaction/instant/drinks/berrytea + name = "Berry Tea" + id = "berrytea" + result = "berrytea" + required_reagents = list("tea" = 5, "berryjuice" = 1) + result_amount = 6 + +/decl/chemical_reaction/instant/drinks/cherrytea + name = "Cherry Tea" + id = "cherrytea" + result = "cherrytea" + required_reagents = list("tea" = 5, "cherryjelly" = 1) + result_amount = 6 + +/decl/chemical_reaction/instant/drinks/watermelontea + name = "Watermelon Tea" + id = "watermelontea" + result = "watermelontea" + required_reagents = list("tea" = 5, "watermelonjuice" = 1) + result_amount = 6 + +/decl/chemical_reaction/instant/tea/matcha_latte + id = "matcha_latte" + result = "matcha_latte" + required_reagents = list ("matchapowder" = 1, "milk" = 5) + result_amount = 5 + +/decl/chemical_reaction/instant/freshtea/green + id = "freshteagreen" + result = "freshteagreen" + required_reagents = list ("tealeavesgreen" = 1, "hotwater" = 9) + result_amount = 10 + +/decl/chemical_reaction/instant/instantteapowder/green + id = "instantteapowdergreen" + result = "instantteapowdergreen" + required_reagents = list ("teamush" = 10, "frostoil" = 1) + result_amount = 10 + +/decl/chemical_reaction/instant/instanttea/green + id = "instantteagreen" + result = "instantteagreen" + required_reagents = list ("instantteapowdergreen" = 1, "water" = 9) + result_amount = 10 + +/decl/chemical_reaction/instant/matcha + id = "matcha" + result = "matcha" + required_reagents = list ("matchapowder" = 1, "hotwater" = 2) + result_amount = 2 + +/decl/chemical_reaction/instant/drinks/spiderdrink + name = "Brimming glass of spiders" + id = "spiderdrink" + result = "spiderdrink" + required_reagents = list("spidertoxin" = 1, "clonexadone" = 5, "absinthe" = 4) + result_amount = 10 + +/decl/chemical_reaction/instant/drinks/bubbleteawatermelon + name = "Watermelon bubble tea" + id = "bubbleteawatermelon" + result = "bubbleteawatermelon" + required_reagents = list("gelatin" = 2, "watermelontea" = 6, "milk" = 2) + result_amount = 10 + +/decl/chemical_reaction/instant/drinks/bubbleteastrawberry + name = "Strawberry bubble tea" + id = "bubbleteastrawberry" + result = "bubbleteastrawberry" + required_reagents = list("gelatin" = 2, "berrytea" = 6, "milk" = 2) + result_amount = 10 + +/decl/chemical_reaction/instant/drinks/bubbleteacherry + name = "Cherry bubble tea" + id = "bubbleteacherry" + result = "bubbleteacherry" + required_reagents = list("gelatin" = 2, "cherrytea" = 6, "milk" = 2) + result_amount = 10 + +/decl/chemical_reaction/instant/drinks/bubbleteacoffee + name = "Coffee bubble tea" + id = "bubbleteacoffee" + result = "bubbleteacoffee" + required_reagents = list("gelatin" = 2, "tea" = 5, "cafe_latte" = 3) + result_amount = 10 + +/decl/chemical_reaction/instant/drinks/bubbleteabanana + name = "Banana bubble tea" + id = "bubbleteabanana" + result = "bubbleteabanana" + required_reagents = list("gelatin" = 2, "tea" = 5, "banana" = 1, "milk" = 2) + result_amount = 10 + +/decl/chemical_reaction/instant/drinks/horchata + name = "Horchata" + id = "horchata" + result = "horchata" + required_reagents = list("milk" = 1, "sugar" = 2, "rice" = 2) + result_amount = 5 + +/decl/chemical_reaction/instant/drinks/bluetrain + name = "Blue train" + id = "bluetrain" + result = "bluetrain" + required_reagents = list("coolant" = 2, "ethanol" = 2, "nutriment" = 1) + result_amount = 5 + +/decl/chemical_reaction/instant/drinks/lowpower + name = "The low power" + id = "lowpower" + result = "lowpower" + required_reagents = list("lemonade" = 1, "cream" = 1, "limejuice" = 1) + result_amount = 3 + +/decl/chemical_reaction/instant/drinks/jackbrew + name = "Jack's brew" + id = "jackbrew" + result = "jackbrew" + required_reagents = list("irishcoffee" = 1, "hyperzine" = 1) + result_amount = 2 + +/decl/chemical_reaction/instant/drinks/bookwyrm + name = "Bookwyrm's bite" + id = "bookwyrm" + result = "bookwyrm" + required_reagents = list("coldfront" = 1, "limejuice" = 1, "stoxin" = 1) + result_amount = 3 + +/decl/chemical_reaction/instant/drinks/highpower + name = "The high power" + id = "highpower" + result = "highpower" + required_reagents = list("lowpower" = 1, "iron" = 1, "uranium" = 1) + result_amount = 3 + +/decl/chemical_reaction/instant/drinks/flapper + name = "Flapper" + id = "flapper" + result = "flapper" + required_reagents = list("whiskey" = 1, "blood" = 1, "ice" = 1) + result_amount = 3 + +/decl/chemical_reaction/instant/toxin/oilslide + name = "Oil slide" + id = "oilslide" + result = "oilslide" + required_reagents = list("moonshine" = 1, "lube" = 1, "fuel" = 1) + result_amount = 3 + +/decl/chemical_reaction/instant/drinks/sitonmyface + name = "Sit on my face" + id = "sitonmyface" + result = "sitonmyface" + required_reagents = list("kahlua" = 1, "irishcream" = 1, "peanutbutter" = 1) + result_amount = 3 + +/decl/chemical_reaction/instant/drinks/hachi + name = "Hachi" + id = "hachi" + result = "hachi" + required_reagents = list("burbon" = 2, "sake" = 1, "lemonjuice" = 1, "mushroom" = 1) //Whoever coded this never made a mushroom reagent so this can't be created. + result_amount = 5 + +/decl/chemical_reaction/instant/drinks/narsour + name = "Nar'sour" + id = "narsour" + result = "narsour" + required_reagents = list("blood" = 1, "lemonjuice" = 1, "demonsblood" = 1) + mix_message = "The mixture develops a sinister glow." + reaction_sound = 'sound/effects/singlebeat.ogg' + result_amount = 3 + +/decl/chemical_reaction/instant/drinks/cogchamp + name = "CogChamp" + id = "cogchamp" + result = "cogchamp" + required_reagents = list("cognac" = 1, "fuel" = 1, "screwdrivercocktail" = 1) + mix_message = "You hear faint sounds of gears turning as the mixture gives off virulent plumes of steam." + reaction_sound = 'sound/machines/clockcult/steam_whoosh.ogg' + result_amount = 3 + +//thirteen loko possible to make now, so easier to make arachnid slammer - Jack + +/decl/chemical_reaction/instant/drinks/thirteenloko + name = "Thirteen Loko" + id = "thirteenloko" + result = "thirteenloko" + required_reagents = list("beer" = 1, "tequilla" = 1, "coffee" = 1) + result_amount = 3 + +//Arachnid slammer reactions - Jack + +/decl/chemical_reaction/instant/drinks/arachnidslammer + name = "Arachnid Slammer" + id = "arachnidslammer" + result = "arachnidslammer" + required_reagents = list("ale" = 1, "thirteenloko" = 1, "hyperzine" = 1) + mix_message = "The concortion of ale, energy drink and stimulants starts to heavily foam and fizzle, even sparkle a little." + result_amount = 3 + +/decl/chemical_reaction/instant/drinks/enragedarachnidslammer + name = "Enraged Arachnid Slammer" + id = "enragedarachnidslammer" + result = "enragedarachnidslammer" + required_reagents = list("infusedarachnidslammer" = 1, "spidertoxin" = 1) + mix_message = "The dormant Arachnid Slammer bubbles and fizzles loudly as it gets enraged by the spider toxin and breaks it down!" + result_amount = 5 + +/decl/chemical_reaction/instant/drinks/enragedarachnidslammer1 + name = "Enraged Arachnid Slammer" + id = "enragedarachnidslammer" + required_reagents = list("enragedarachnidslammer" = 1, "cyanide" = 1) + result = "enragedarachnidslammer" + result_amount = 0.1 + +/decl/chemical_reaction/instant/drinks/enragedarachnidslammer2 + name = "Enraged Arachnid Slammer" + id = "enragedarachnidslammer" + required_reagents = list("enragedarachnidslammer" = 1, "chloralhydrate" = 1) + result = "enragedarachnidslammer" + result_amount = 0.1 + +/decl/chemical_reaction/instant/drinks/enragedarachnidslammer3 + name = "Enraged Arachnid Slammer" + id = "enragedarachnidslammer" + required_reagents = list("enragedarachnidslammer" = 1, "stimm" = 1) + result = "enragedarachnidslammer" + result_amount = 0.1 + +/decl/chemical_reaction/instant/drinks/enragedarachnidslammer4 + name = "Enraged Arachnid Slammer" + id = "enragedarachnidslammer" + required_reagents = list("enragedarachnidslammer" = 1, "cryotoxin" = 1) + result = "enragedarachnidslammer" + result_amount = 0.1 + +/decl/chemical_reaction/instant/drinks/enragedarachnidslammer5 + name = "Enraged Arachnid Slammer" + id = "enragedarachnidslammer" + required_reagents = list("enragedarachnidslammer" = 1, "cryptobiolin" = 1) + result = "enragedarachnidslammer" + result_amount = 0.1 + +/decl/chemical_reaction/instant/drinks/enragedarachnidslammer6 + name = "Enraged Arachnid Slammer" + id = "enragedarachnidslammer" + required_reagents = list("enragedarachnidslammer" = 1, "stoxin" = 1) + result = "enragedarachnidslammer" + result_amount = 0.1 + +/decl/chemical_reaction/instant/drinks/enragedarachnidslammer7 + name = "Enraged Arachnid Slammer" + id = "enragedarachnidslammer" + required_reagents = list("enragedarachnidslammer" = 1, "condensedcapsaicin_v" = 1) + result = "enragedarachnidslammer" + result_amount = 0.1 + +/decl/chemical_reaction/instant/drinks/enragedarachnidslammer8 + name = "Enraged Arachnid Slammer" + id = "enragedarachnidslammer" + required_reagents = list("enragedarachnidslammer" = 1, "phoron" = 1) + result = "enragedarachnidslammer" + result_amount = 0.1 + +/decl/chemical_reaction/instant/drinks/enragedarachnidslammer9 + name = "Enraged Arachnid Slammer" + id = "enragedarachnidslammer" + required_reagents = list("enragedarachnidslammer" = 1, "thermite_v" = 1) + result = "enragedarachnidslammer" + result_amount = 0.1 + +/decl/chemical_reaction/instant/drinks/enragedarachnidslammer10 + name = "Enraged Arachnid Slammer" + id = "enragedarachnidslammer" + required_reagents = list("enragedarachnidslammer" = 1, "serotrotium_v" = 1) + result = "enragedarachnidslammer" + result_amount = 0.1 + +/decl/chemical_reaction/instant/drinks/pilk + name = "Pilk" + id = "pilk" + result = "pilk" + required_reagents = list("milk" = 1, "cola" = 1) + result_amount = 2 + +// Drinks from Horizon + +/decl/chemical_reaction/instant/drinks/alliescocktail + name = "Allies Cocktail" + id = "alliescocktail" + result = "alliescocktail" + required_reagents = list("martini" = 1, "vodka" = 1) + result_amount = 2 + +/decl/chemical_reaction/instant/drinks/fetching_fizz + name = "Fetching Fizz" + id = "fetching_fizz" + result = "fetching_fizz" + required_reagents = list("nuka_cola" = 1, "iron" = 1) + result_amount = 3 + +/decl/chemical_reaction/instant/drinks/hearty_punch + name = "Hearty Punch" + id = "hearty_punch" + result = "hearty_punch" + required_reagents = list("bravebull" = 5, "syndicatebomb" = 5, "absinthe" = 5) + result_amount = 1 + +/decl/chemical_reaction/instant/drinks/squirt_cider + name = "Squirt Cider" + id = "squirt_cider" + result = "squirt_cider" + required_reagents = list("water" = 1, "tomatojuice" = 1, "nutriment" = 1) + result_amount = 3 + +/decl/chemical_reaction/instant/drinks/fringe_weaver + name = "Fringe Weaver" + id = "fringe_weaver" + result = "fringe_weaver" + required_reagents = list("ethanol" = 9, "sugar" = 1) + result_amount = 10 + +/decl/chemical_reaction/instant/drinks/crevice_spike + name = "Crevice Spike" + id = "crevice_spike" + result = "crevice_spike" + required_reagents = list("limejuice" = 2, "capsaicin" = 4) + result_amount = 6 + +/decl/chemical_reaction/instant/drinks/duplex + name = "Duplex" + id = "duplex" + result = "duplex" + required_reagents = list("cider" = 2, "applejuice" = 1, "berryjuice" = 1) + result_amount = 4 + +/decl/chemical_reaction/instant/drinks/mauna_loa + name = "Mauna Loa" + id = "mauna_loa" + result = "mauna_loa" + required_reagents = list("capsaicin" = 2, "kahlua" = 1, "bahama_mama" = 2) + result_amount = 5 + +/decl/chemical_reaction/instant/drinks/hiveminderaser + name = "Hivemind Eraser" + id = "hiveminderaser" + result = "hiveminderaser" + required_reagents = list("blackrussian" = 2, "thirteenloko" = 1, "grenadine" = 1) + result_amount = 4 + +/decl/chemical_reaction/instant/drinks/erikasurprise + name = "Erika Surprise" + id = "erikasurprise" + result = "erikasurprise" + required_reagents = list("ale" = 2, "limejuice" = 1, "whiskey" = 1, "banana" = 1, "ice" = 1) + result_amount = 6 + +//YW drinks +/decl/chemical_reaction/instant/drinks/lovepotion_yw + name = "Strawberry Love Potion" + id = "strawberrylovepotion" + result = "strawberrylovepotion" + required_reagents = list("cream" = 1, "berryjuice" = 1, "sugar" = 1) + result_amount = 3 + +/decl/chemical_reaction/instant/drinks/wormblood + name = "Wormblood" + id = "wormblood" + result = "wormblood" + required_reagents = list("booger" = 1, "psilocybin" = 1) + result_amount = 2 diff --git a/code/modules/reagents/reagents/food_drinks_ch.dm b/modular_chomp/code/modules/reagents/reagents/food_drinks.dm similarity index 80% rename from code/modules/reagents/reagents/food_drinks_ch.dm rename to modular_chomp/code/modules/reagents/reagents/food_drinks.dm index af0111de8e..84ca7a4f97 100644 --- a/code/modules/reagents/reagents/food_drinks_ch.dm +++ b/modular_chomp/code/modules/reagents/reagents/food_drinks.dm @@ -1,607 +1,728 @@ -//////////////////////////////////////////////// -/////////DRINKS//////////////////////////////// -////////////////////////////////////////////// - -/datum/reagent/drink/tea/cherrytea - name = "Cherry Tea" - id = "cherrytea" - description = "A tasty mixture of cherries and tea. It's apparently good for you!" - color = "#c15962" - taste_description = "black tea with lots of cherries" - - glass_name = "cherry tea" - glass_desc = "A tasty mixture of cherries and tea. It's apparently good for you!" - - cup_name = "cup of cherry tea" - cup_desc = "A tasty mixture of cherries and tea. It's apparently good for you!" - -/datum/reagent/drink/tea/watermelontea - name = "Watermelon Tea" - id = "watermelontea" - description = "A tasty mixture of watermelon and tea. It's apparently good for you!" - color = "#9f2c2c" - taste_description = "black tea with sweet watermelon for flavouring" - - glass_name = "watermelon tea" - glass_desc = "A tasty mixture of watermelon and tea. It's apparently good for you!" - - cup_name = "cup of watermelon tea" - cup_desc = "A tasty mixture of watermelon and tea. It's apparently good for you!" - -/datum/reagent/drink/tea/matcha_latte //Putting this as tea to inherit tea variables. Should not have the same toxloss as matcha so it can be placed in a dispenser without breaking balance. - name = "Matcha latte" - id = "matcha_latte" - description = "A nice and tasty beverage to enjoy while studying." - taste_description = "creamy, vegetal sweetness" - color = "#b1c48c" - adj_temp = 5 - - glass_name = "matcha latte" - glass_desc = "A nice and refreshing beverage while you are studying." - - cup_icon_state = "cup_latte" - cup_name = "cup of matcha latte" - cup_desc = "A nice and refreshing beverage while you are studying." - -/datum/reagent/drink/tea/dyloteane - name = "The Anti-Irish" - id = "dyloteane" - glass_name = "Medicinal tea cup" - glass_desc = "Goes perfectly with alcohol poisoning!" - taste_description = "The sweet taste of multidepartment cooperation!" - cup_desc = "Goes perfectly with alcohol poisoning!" - cup_name = "Medicinal tea cup" - color = "#00FF00" - -/datum/reagent/drink/tea/dyloteane/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) - if(alien == IS_DIONA) - return - if(M.ingested) - for(var/datum/reagent/R in M.ingested.reagent_list) - if(istype(R, /datum/reagent/ethanol)) - R.remove_self(removed * 3) - if(M.bloodstr) - for(var/datum/reagent/R in M.bloodstr.reagent_list) - if(istype(R, /datum/reagent/ethanol)) - R.remove_self(removed * 10) - -/datum/reagent/drink/tea/dyloteane/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) - var/chem_effective = 1 - if(alien != IS_DIONA) - M.drowsyness = max(0, M.drowsyness - 6 * removed * chem_effective) - M.hallucination = max(0, M.hallucination - 9 * removed * chem_effective) - M.adjustToxLoss(-1 * removed * chem_effective) - -/datum/reagent/slimedrink - name = "Slime" - id = "slimedrink" - description = "A gooey semi-liquid produced from your fellow slimey crew members." - taste_description = "jiggly" - taste_mult = 1.3 - reagent_state = LIQUID - color = "#8bdce5" - - glass_name = "Slime" - glass_desc = "Slime thats safe to drink (relatively)" - -/datum/reagent/drink/soda - ingest_met = REM * 5 //Makes it so soda metabolizes faster, since without this increase, the nutrients it currently gives does nothing. Also, metabolises faster then normal nutrients due to being soda. - -/datum/reagent/ethanol/spiderdrink - name = "Brimming glass of spiders" - id = "spiderdrink" - description = "A fresh drink consisting of cloned spiderlings who are intoxicated by a healthy dose of absinthe." - taste_description = "TOO MANY LEGS" - color = "#526062" // rgb(82, 96, 98) - strength = 15 - - glass_name = "Brimming glass of spiders" - glass_desc = "A glass filled to the brim with tiny drunk spiderlings. Lets hope they dont escape." - -/datum/reagent/ethanol/snaps - name = "Akvavit" - id = "snaps" - description = "Burns the nose and throat and soothes it with a herby aftertaste...Barely." - taste_description = "strong spirit and a little dill" - color = "e6d670" // rgb: 230, 214, 112 - strength = 15 - - glass_name = "akvavit" - glass_desc = "Burns the nose and throat, and soothes it with a herby aftertaste...Barely." - -/datum/reagent/ethanol/bluetrain - name = "blue train" - id = "bluetrain" - description = "A drink only a fool or a very desperate creature would consume." - taste_description = "someone who decided to pour ice cold motor oil down your throat and finish it off with a large shot of burning pure alcohol." - color = "#c8a5dc" - adj_temp = -10 - targ_temp = 220 - strength = 10 - - glass_name = "blue train" - glass_desc = "A glass of what can only be described as the bastard child between coolant and alcohol made by a madman." - -/datum/reagent/drink/lowpower - name = "The low power" - id = "lowpower" - description = "Smells, and tastes like lemon.. with a hint of Ozone, for whatever reason. It glows softly." - taste_description = "creamy lemonade, with some zest" - color = "#5d8d39" - - glass_name = "lowpower" - glass_desc = "Smells, and tastes like lemon.. with a hint of Ozone, for whatever reason. It glows softly." - -/datum/reagent/drink/lowpower/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) - ..() - if(alien == IS_DIONA) - return - M.adjustToxLoss(-0.5 * removed) - -/datum/reagent/drink/highpower - name = "The High power" - id = "highpower" - description = "A strange, softly crackling drink, smelling just like lightning's just struck, twice. It's rather difficult to make this without busting the lights." - taste_description = "copper, ozone, and pain" - color = "#a2f563" - - glass_name = "highpower" - glass_desc = "A strange, softly crackling drink, smelling just like lightning's just struck, twice. It's rather difficult to make this without busting the lights." - -/datum/reagent/drink/highpower/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) - if(alien == IS_DIONA) - return - if(prob(5)) - M.say("!skin's crackles with energy and seems to be in pain.") - M.custom_pain("You feel painful electricity running through your body, like adrenaline, and like your blood's boiling!",30) - M.AdjustWeakened(3) //Getting sapped makes the victim fall - M.Stun(3) - M.add_chemical_effect(CE_SPEEDBOOST, 1) - -/datum/reagent/ethanol/coffee/jackbrew - name = "Rush hour" - id = "jackbrew" - description = "Irish coffee, and hyperzine. A common mix for panicked drinkers, EMTS, Paramedics, and CMOs alone on the job." - taste_description = "wishing you could give up on the day" - color = "#4C3100" - strength = 15 - - glass_name = "Rush hour" - glass_desc = "Irish coffee, and hyperzine. A common mix for panicked drinkers, EMTS, Paramedics, and CMOs alone on the job." - -/datum/reagent/ethanol/coffee/jackbrew/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) - if(alien == IS_TAJARA) - removed *= 1.25 - if(alien == IS_SLIME) - M.make_jittery(4) //Hyperactive fluid pumping results in unstable 'skeleton', resulting in vibration. - if(dose >= 5) - M.nutrition = (M.nutrition - (removed * 2)) //Sadly this movement starts burning food in higher doses. - ..() - if(prob(5)) - M.emote(pick("twitch", "blink_r", "shiver", "weh", "weh", "weh")) // weh - Jack - M.add_chemical_effect(CE_SPEEDBOOST, 1) - -/datum/reagent/ethanol/bookwyrm - name = "Bookwyrm's bite" - id = "bookwyrm" - description = "You'd probably fancy a nice nap by the fireplace after drinking this." - taste_description = "Mint, lime and a cold cozy nap" - color = "#5678c3" - strength = 20 - adj_temp = -10 - targ_temp = 273 //Dilluted cold front wont be the death of anyone who cant handle sipping liquid nitrogen. - - glass_name = "Bookwyrm's bite" - glass_desc = "A cold lime mint drink. Dont drink to much or you might fall asleep." - -/datum/reagent/ethanol/bookwyrm/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) - if(alien == IS_DIONA) - return - - var/threshold = 1 - if(alien == IS_SKRELL) - threshold = 1.2 - - if(alien == IS_SLIME) - threshold = 6 //Evens to 3 due to the fact they are considered 'small' for flaps. - - var/effective_dose = dose - if(issmall(M)) - effective_dose *= 2 - - if(effective_dose < 1 * threshold) - if(effective_dose == metabolism * 2 || prob(5)) - M.emote("yawn") - else if(effective_dose < 1.5 * threshold) - M.eye_blurry = max(M.eye_blurry, 10) - else if(effective_dose < 5 * threshold) - if(prob(50)) - M.Weaken(2) - M.drowsyness = max(M.drowsyness, 20) - else - if(alien == IS_SLIME) //They don't have eyes, and they don't really 'sleep'. Fumble their general senses. - M.eye_blurry = max(M.eye_blurry, 30) - if(prob(20)) - M.ear_deaf = max(M.ear_deaf, 4) - M.Confuse(2) - else - M.Weaken(2) - else - M.sleeping = max(M.sleeping, 20) - M.drowsyness = max(M.drowsyness, 60) - -/datum/reagent/ethanol/flapper - name = "Flapper" - id = "flapper" - description = "A common drink among blood-drinkers, and those who just wanna drink. Tinnibat be damned." - taste_description = "a bloody good time" - color = "#763424" - strength = 15 - - glass_name = "flapper" - glass_desc = "A common drink among blood-drinkers, and those who just wanna drink. Tinnibat be damned." - -/datum/reagent/toxin/oilslide - name = "Oil slide" - id = "oilslide" - description = "Tasty, if you're a synth, not so much for organics." - taste_description = "oil, slime, and fuel! Tastes also like synthetic backwash" - color = "#331a1a" - - glass_name = "oilslide" - glass_desc = "Tasty, if you're a synth, not so much for organics." - -/datum/reagent/ethanol/sitonmyface - name = "Sit on my face" - id = "sitonmyface" - description = "A drink made of irish coffee and nuts, mostly known for its vulgar name. Makes for a great pickup line though!" - taste_description = "creamy coffee and alcohol, and nuts" - color = "#896750" - strength = 15 - - glass_name = "Sit on my face" - glass_desc = "A drink made of irish coffee and nuts, mostly known for its vulgar name. Makes for a great pickup line though!" - -/datum/reagent/ethanol/hachi - name = "Hachi" - id = "hachi" - description = "An unusual fusion of bourbon and sake infused with lemon juice, and mushrooms. Sweet, savory, but mostly weird." - taste_description = "sweet lemons, black pepper, and savory mushroom" - color = "#DC971D" - strength = 20 - -/datum/reagent/drink/freshtea - name = "Green tea" - id = "freshtea" //Not meant to be obtainable, this is to define effects for teas made from grown teas. - description = "Tasty green tea, it has antioxidants, it's good for you! Fresh means it's even healthier!" - taste_description = "green tea" - color = "#cac162" - adj_dizzy = -4 - adj_drowsy = -1 - adj_sleepy = -3 - adj_temp = 20 - - glass_name = "green tea" - glass_desc = "Tasty green tea, it has antioxidants, it's good for you!" - - cup_icon_state = "cup_tea" - cup_name = "cup of tea" - cup_desc = "Tasty green tea, it has antioxidants, it's good for you!" - -/datum/reagent/drink/freshtea/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) - ..() - if(alien == IS_DIONA) - return - M.adjustToxLoss(-2 * removed) //Higher toxin removal than other tea to reflect difficulty in preparing, still worse than dylovene. - -/datum/reagent/drink/freshtea/green - name = "Green tea" - id = "freshteagreen" - description = "Floral green tea, it has antioxidants, it's good for you! Fresh means it's even healthier!" - taste_description = "floral with vegetal notes and a slightly bitter aftertaste" - color = "#cac162" - - glass_name = "green tea" - glass_desc = "Floral green tea, it has antioxidants, it's fresh and good for you!" - - cup_icon_state = "cup_tea" - cup_name = "cup of tea" - cup_desc = "Floral green tea, it has antioxidants, it's fresh and good for you!" - -/datum/reagent/drink/tealeavesgreen - name = "Green tea leaves" - id = "tealeavesgreen" - description = "Prepared green tea, just waiting for hot water." - taste_description = "overwhelmingly bitter with faint floral notes" - color = "#56761d" - - glass_name = "tea leaves" - glass_desc = "Dry tea leaves in a cup. Just add hot water!" - -/datum/reagent/drink/teamush - name = "Tea mush" - id = "teamush" - description = "Mashed tea leaves, a bit like grass clippings. You can't make proper tea out of this now." - taste_description = "overwhelmingly bitter plant" - color = "#7db72d" - - glass_name = "blended plant" - glass_desc = "Chunky, mashed up plant of some sort. Looks kinda gross." - -/datum/reagent/drink/instantteapowdergreen - name = "Instant green tea powder" - id = "instantteapowdergreen" - description = "Green tea powder missing all the goodness of green tea." //Heathen. - taste_description = "strong bitterness with a subtle chemical aftertaste" - color = "#56761d" - - glass_name = "tea powder" - glass_desc = "Instant green tea powder. Just add water for imitation green tea!" - -/datum/reagent/drink/instantteagreen - name = "Instant green tea" - id = "instantteagreen" - description = "Convenient green tea missing all the goodness of actual green tea." //It's not even hot. - taste_description = "bitterness with a subtle chemical aftertaste" - color = "#cac162" - - glass_name = "green tea" - glass_desc = "Green tea. It smells a bit off." - - cup_icon_state = "cup_tea" - cup_name = "cup of tea" - cup_desc = "Green tea. It smells a bit off." - -/datum/reagent/drink/matchapowder - name = "Matcha powder" - id = "matchapowder" - description = "Finely ground green tea. This is about the highest quality matcha you can prepare without traditional methods." - taste_description = "heavy bitterness" - color = "#86a443" - - glass_name = "matcha powder" - glass_desc = "Matcha powder, waiting for brewing." - -/datum/reagent/drink/matcha - name = "Matcha" - id = "matcha" - description = "A form of green tea where the leaf is ground and suspended in water rather than steeped. This is considered cooking grade." - taste_description = "floral, full-bodied bitterness with a subtle, earthy sweetness" - color = "#9bc265" - adj_dizzy = -4 - adj_drowsy = -1 - adj_sleepy = -3 - adj_temp = 20 - - glass_name = "matcha" - glass_desc = "Heavenly matcha. Good for body and spirit." - - cup_icon_state = "cup_tea" - cup_name = "cup of matcha" - cup_desc = "Heavenly matcha. Good for body and spirit." - -/datum/reagent/drink/matcha/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) - ..() - if(alien == IS_DIONA) - return - M.adjustToxLoss(-3 * removed) //Almost on par with dylovene despite being harder to obtain in bulk. Nerf if this causes problems. - -/datum/reagent/drink/juice/gelatin - name = "Gelatin" - id = "gelatin" - description = "It doesnt taste like anything." - taste_description = "nothing" - nutrition = 0 - color = "#aaabcf" - - glass_name = "Gelatin" - glass_desc = "It's like flavourless slime." - -/datum/reagent/drink/bubbleteawatermelon - name = "Watermelon bubble tea" - id = "bubbleteawatermelon" - description = "A tea with milk and watermelon in it and gelatin balls as well." - taste_description = "creamy tea and watermelon" - color = "#b83333" - - glass_name = "watermelon bubble tea" - glass_desc = "A sweet tea with tasty little flavoured gelatin balls in it, this one is with watermelon." - -/datum/reagent/drink/bubbleteastrawberry - name = "Strawberry bubble tea" - id = "bubbleteastrawberry" - description = "A tea with milk and strawberry in it and gelatin balls as well." - taste_description = "creamy tea and strawberry" - color = "#eb6c77" - - glass_name = "strawberry bubble tea" - glass_desc = "A sweet tea with tasty little flavoured gelatin balls in it, this one is with strawberry." - -/datum/reagent/drink/bubbleteacherry - name = "Cherry bubble tea" - id = "bubbleteacherry" - description = "A tea with milk and cherry in it and gelatin balls as well." - taste_description = "creamy tea and cherry" - color = "#801e28" - - glass_name = "cherry bubble tea" - glass_desc = "A sweet tea with tasty little flavoured gelatin balls in it, this one is with cherry." - -/datum/reagent/drink/bubbleteacoffee - name = "Coffee bubble tea" - id = "bubbleteacoffee" - description = "A tea with milk and coffee in it and gelatin balls as well." - taste_description = "creamy tea and coffee" - color = "#482910" - - glass_name = "coffee bubble tea" - glass_desc = "A sweet tea with tasty little flavoured gelatin balls in it, this one is with coffee." - -/datum/reagent/drink/bubbleteabanana - name = "Banana bubble tea" - id = "bubbleteabanana" - description = "A tea with milk and banana in it and gelatin balls as well." - taste_description = "creamy tea and banana" - color = "#c3af00" - - glass_name = "banana bubble tea" - glass_desc = "A sweet tea with tasty little flavoured gelatin balls in it, this one is with banana." - -/datum/reagent/drink/horchata - name = "Horchata" - id = "horchata" - description = "A sweet and cold rice milk beverage." - taste_description = "sweet rice milk and cinnamon" - color = "#ebcdc1" - adj_temp = -5 - - glass_name = "horchata" - glass_desc = "A sweet and cold rice milk beverage." - -/datum/reagent/ethanol/snaps - name = "Akvavit" - id = "snaps" - description = "Burns the nose and throat and soothes it with a herby aftertaste...Barely." - taste_description = "strong spirit and a little dill" - color = "e6d670" // rgb: 230, 214, 112 - strength = 15 - - glass_name = "akvavit" - glass_desc = "Burns the nose and throat, and soothes it with a herby aftertaste...Barely." - -/datum/reagent/ethanol/narsour - name = "Nar'Sour" - id = "narsour" - description = "Side effects include self-mutilation and hoarding plasteel." - taste_description = "blood and runes" - color = "#7D1717" - strength = 10 - - glass_icon_state = "narsour" - glass_name = "Nar'Sour" - glass_desc = "A new hit cocktail inspired by THE ARM Breweries will have you shouting Fuu ma'jin in no time!" - glass_icon_state = "narsour" - glass_icon_file = 'icons/obj/drinks_ch.dmi' - - -/datum/reagent/ethanol/cogchamp - name = "CogChamp" - id = "cogchamp" - description = "Now you can fill yourself with the power of Ratvar!" - taste_description = "brass taste with a hint of oil" - color = rgb(255, 201, 49) - strength = 10 - - glass_icon_state = "cogchamp" - glass_name = "CogChamp" - glass_desc = "Not even Ratvar's Four Generals could withstand this! Qevax Jryy!" - glass_icon_state = "cogchamp" - glass_icon_file = 'icons/obj/drinks_ch.dmi' - -//Arachnid slammer states - Jack - -/datum/reagent/ethanol/arachnidslammer - name = "Arachnid Slammer" - id = "arachnidslammer" - description = "An adventurous mix of a cheap, powerful ale with an equally cheap, powerful energy drink and combat drugs. The result should have been undrikable, and yet it sure does put a spring in your step." - taste_description = "hearty barley ale, almost illegal energy drink, combat stimulants, and the urge to go mine and wrestle a spider" - color = "#594219" - strength = 30 - nutriment_factor = 1 - - glass_name = "arachnid slammer" - glass_desc = "A freezing pint of delicious Araching Slammer, it foams constantly with the air crisp around it." - allergen_type = ALLERGEN_GRAINS //Barley is grain - -/datum/reagent/ethanol/arachnidslammer/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) - .=..() - M.reagents.add_reagent("infusedarachnidslammer", removed * 5) -/datum/reagent/ethanol/arachnidslammer/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) - .=..() - M.reagents.add_reagent("infusedarachnidslammer", removed * 5) - -/datum/reagent/infusedarachnidslammer - name = "Infused Arachnid Slammer" - id = "infusedarachnidslammer" - description = "When Arachnid Slammer is metabolized you get a concortion of chemicals that breaks down slower. While the alcohol is burned off, the new compounds seems dormant, like they're waiting for some malicious toxin.." - taste_description = "flat watered down Arachnid Slammer and a brewing tempest" - reagent_state = LIQUID - color = "#8040FF" - scannable = 1 - metabolism = REM - ingest_met = REM - - glass_name = "infused arachnid slammer" - glass_desc = "A pint of metabolized Arachnid Slammer. Even if its flat it still somehow foams and sparkles as well as bubbles more actively when spiders are nearby." - -/datum/reagent/infusedarachnidslammer/enragedarachnidslammer - name = "Enraged Arachnid Slammer" - id = "enragedarachnidslammer" - description = "The best term to scientifically describe this concortion is that the compounds of the Arachnid Slammer are going into a raging frenzy from spider toxin. Its now functioning like a form of potent chemical-based white blood cells that aims to break down harmful compounds and repair the body." - taste_description = "cold burning liquid rage and the urge to destroy any spider you see" - - glass_name = "enraged arachnid slammer" - glass_desc = "A pint of Enraged Arachnid Slammer. It bubbles and sparkles fiercly as if it was in a berserking state!" - -/datum/reagent/infusedarachnidslammer/enragedarachnidslammer/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) - var/chem_effective = 1 * M.species.chem_strength_heal - - M.adjustOxyLoss(-1.5 * removed * chem_effective) - M.adjustToxLoss(-1.5 * removed * chem_effective) - M.heal_organ_damage(1.5 * removed, 1.5 * removed * chem_effective) - M.add_chemical_effect(CE_PAINKILLER, 80 * chem_effective) - M.add_chemical_effect(CE_SPEEDBOOST, 0) - -/datum/reagent/drink/pilk - name = "Pilk" - id = "pilk" - description = "A forbidden mixture that dates back to the early days of space civilization, its creation is known to have caused at least one or two massacres." - taste_description = "heresy" - color = "#4C3100" - - glass_name = "Pilk" - glass_desc = "Why would you do this to yourself?" - - cup_name = "glass of Pilk" - cup_desc = "A glass of regret." - -//////////////////////////////////////////////// -/////////FOODSTUFF///////////////////////////// -////////////////////////////////////////////// - -/datum/reagent/cinnamonpowder - name = "ground cinnamon" - id = "cinnamonpowder" - description = "Cinnamon, a spice made from tree bark, ground into a fine powder. Probably not a good idea to eat on its own!" - taste_description= "sweet spice with a hint of wood" - color = "#a96622" - - glass_name = "ground cinnamon" - glass_desc = "A glass of ground cinnamon. Dare you take the challenge?" - -//YW drinks -/datum/reagent/drink/lovepotion_yw - name = "Strawberry Love Potion" - id = "strawberrylovepotion" - description = "Creamy strawberries and sugar, simple and sweet." - taste_description = "strawberries and cream" - color = "#fc8a8a" // rgb(252, 138, 138) - - glass_name = "Love Potion" - glass_desc = "Love me tender, love me sweet." - - -/datum/reagent/ethanol/wormblood - name = "Worm Blood" - id = "wormblood" - description = "Who had the grand idea to bottle THE BLOOD OF A WORM." - taste_description = "Wriggly cave fungus" - color = "#827A00" - strength = 30 - druggy = 10 - - glass_name = "Worm blood" - glass_desc = "Who had the grand idea to bottle THE BLOOD OF A WORM." - glass_icon_state = "wormblood" - glass_center_of_mass = list("x"=16, "y"=8) - glass_icon_file = 'icons/obj/drinks_yw.dmi' +//////////////////////////////////////////////// +/////////DRINKS//////////////////////////////// +////////////////////////////////////////////// + +/datum/reagent/drink/tea/cherrytea + name = "Cherry Tea" + id = "cherrytea" + description = "A tasty mixture of cherries and tea. It's apparently good for you!" + color = "#c15962" + taste_description = "black tea with lots of cherries" + + glass_name = "cherry tea" + glass_desc = "A tasty mixture of cherries and tea. It's apparently good for you!" + + cup_name = "cup of cherry tea" + cup_desc = "A tasty mixture of cherries and tea. It's apparently good for you!" + +/datum/reagent/drink/tea/watermelontea + name = "Watermelon Tea" + id = "watermelontea" + description = "A tasty mixture of watermelon and tea. It's apparently good for you!" + color = "#9f2c2c" + taste_description = "black tea with sweet watermelon for flavouring" + + glass_name = "watermelon tea" + glass_desc = "A tasty mixture of watermelon and tea. It's apparently good for you!" + + cup_name = "cup of watermelon tea" + cup_desc = "A tasty mixture of watermelon and tea. It's apparently good for you!" + +/datum/reagent/drink/tea/matcha_latte //Putting this as tea to inherit tea variables. Should not have the same toxloss as matcha so it can be placed in a dispenser without breaking balance. + name = "Matcha latte" + id = "matcha_latte" + description = "A nice and tasty beverage to enjoy while studying." + taste_description = "creamy, vegetal sweetness" + color = "#b1c48c" + adj_temp = 5 + + glass_name = "matcha latte" + glass_desc = "A nice and refreshing beverage while you are studying." + + cup_icon_state = "cup_latte" + cup_name = "cup of matcha latte" + cup_desc = "A nice and refreshing beverage while you are studying." + +/datum/reagent/drink/tea/dyloteane + name = "The Anti-Irish" + id = "dyloteane" + glass_name = "Medicinal tea cup" + glass_desc = "Goes perfectly with alcohol poisoning!" + taste_description = "The sweet taste of multidepartment cooperation!" + cup_desc = "Goes perfectly with alcohol poisoning!" + cup_name = "Medicinal tea cup" + color = "#00FF00" + +/datum/reagent/drink/tea/dyloteane/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) + if(alien == IS_DIONA) + return + if(M.ingested) + for(var/datum/reagent/R in M.ingested.reagent_list) + if(istype(R, /datum/reagent/ethanol)) + R.remove_self(removed * 3) + if(M.bloodstr) + for(var/datum/reagent/R in M.bloodstr.reagent_list) + if(istype(R, /datum/reagent/ethanol)) + R.remove_self(removed * 10) + +/datum/reagent/drink/tea/dyloteane/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) + var/chem_effective = 1 + if(alien != IS_DIONA) + M.drowsyness = max(0, M.drowsyness - 6 * removed * chem_effective) + M.hallucination = max(0, M.hallucination - 9 * removed * chem_effective) + M.adjustToxLoss(-1 * removed * chem_effective) + +/datum/reagent/slimedrink + name = "Slime" + id = "slimedrink" + description = "A gooey semi-liquid produced from your fellow slimey crew members." + taste_description = "jiggly" + taste_mult = 1.3 + reagent_state = LIQUID + color = "#8bdce5" + + glass_name = "Slime" + glass_desc = "Slime thats safe to drink (relatively)" + +/datum/reagent/drink/soda + ingest_met = REM * 5 //Makes it so soda metabolizes faster, since without this increase, the nutrients it currently gives does nothing. Also, metabolises faster then normal nutrients due to being soda. + +/datum/reagent/ethanol/spiderdrink + name = "Brimming glass of spiders" + id = "spiderdrink" + description = "A fresh drink consisting of cloned spiderlings who are intoxicated by a healthy dose of absinthe." + taste_description = "TOO MANY LEGS" + color = "#526062" // rgb(82, 96, 98) + strength = 15 + + glass_name = "Brimming glass of spiders" + glass_desc = "A glass filled to the brim with tiny drunk spiderlings. Lets hope they dont escape." + +/datum/reagent/ethanol/snaps + name = "Akvavit" + id = "snaps" + description = "Burns the nose and throat and soothes it with a herby aftertaste...Barely." + taste_description = "strong spirit and a little dill" + color = "e6d670" // rgb: 230, 214, 112 + strength = 15 + + glass_name = "akvavit" + glass_desc = "Burns the nose and throat, and soothes it with a herby aftertaste...Barely." + +/datum/reagent/ethanol/bluetrain + name = "blue train" + id = "bluetrain" + description = "A drink only a fool or a very desperate creature would consume." + taste_description = "someone who decided to pour ice cold motor oil down your throat and finish it off with a large shot of burning pure alcohol." + color = "#c8a5dc" + adj_temp = -10 + targ_temp = 220 + strength = 10 + + glass_name = "blue train" + glass_desc = "A glass of what can only be described as the bastard child between coolant and alcohol made by a madman." + +/datum/reagent/drink/lowpower + name = "The low power" + id = "lowpower" + description = "Smells, and tastes like lemon.. with a hint of Ozone, for whatever reason. It glows softly." + taste_description = "creamy lemonade, with some zest" + color = "#5d8d39" + + glass_name = "lowpower" + glass_desc = "Smells, and tastes like lemon.. with a hint of Ozone, for whatever reason. It glows softly." + +/datum/reagent/drink/lowpower/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) + ..() + if(alien == IS_DIONA) + return + M.adjustToxLoss(-0.5 * removed) + +/datum/reagent/drink/highpower + name = "The High power" + id = "highpower" + description = "A strange, softly crackling drink, smelling just like lightning's just struck, twice. It's rather difficult to make this without busting the lights." + taste_description = "copper, ozone, and pain" + color = "#a2f563" + + glass_name = "highpower" + glass_desc = "A strange, softly crackling drink, smelling just like lightning's just struck, twice. It's rather difficult to make this without busting the lights." + +/datum/reagent/drink/highpower/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) + if(alien == IS_DIONA) + return + if(prob(5)) + M.say("!skin's crackles with energy and seems to be in pain.") + M.custom_pain("You feel painful electricity running through your body, like adrenaline, and like your blood's boiling!",30) + M.AdjustWeakened(3) //Getting sapped makes the victim fall + M.Stun(3) + M.add_chemical_effect(CE_SPEEDBOOST, 1) + +/datum/reagent/ethanol/coffee/jackbrew + name = "Rush hour" + id = "jackbrew" + description = "Irish coffee, and hyperzine. A common mix for panicked drinkers, EMTS, Paramedics, and CMOs alone on the job." + taste_description = "wishing you could give up on the day" + color = "#4C3100" + strength = 15 + + glass_name = "Rush hour" + glass_desc = "Irish coffee, and hyperzine. A common mix for panicked drinkers, EMTS, Paramedics, and CMOs alone on the job." + +/datum/reagent/ethanol/coffee/jackbrew/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) + if(alien == IS_TAJARA) + removed *= 1.25 + if(alien == IS_SLIME) + M.make_jittery(4) //Hyperactive fluid pumping results in unstable 'skeleton', resulting in vibration. + if(dose >= 5) + M.nutrition = (M.nutrition - (removed * 2)) //Sadly this movement starts burning food in higher doses. + ..() + if(prob(5)) + M.emote(pick("twitch", "blink_r", "shiver", "weh", "weh", "weh")) // weh - Jack + M.add_chemical_effect(CE_SPEEDBOOST, 1) + +/datum/reagent/ethanol/bookwyrm + name = "Bookwyrm's bite" + id = "bookwyrm" + description = "You'd probably fancy a nice nap by the fireplace after drinking this." + taste_description = "Mint, lime and a cold cozy nap" + color = "#5678c3" + strength = 20 + adj_temp = -10 + targ_temp = 273 //Dilluted cold front wont be the death of anyone who cant handle sipping liquid nitrogen. + + glass_name = "Bookwyrm's bite" + glass_desc = "A cold lime mint drink. Dont drink to much or you might fall asleep." + +/datum/reagent/ethanol/bookwyrm/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) + if(alien == IS_DIONA) + return + + var/threshold = 1 + if(alien == IS_SKRELL) + threshold = 1.2 + + if(alien == IS_SLIME) + threshold = 6 //Evens to 3 due to the fact they are considered 'small' for flaps. + + var/effective_dose = dose + if(issmall(M)) + effective_dose *= 2 + + if(effective_dose < 1 * threshold) + if(effective_dose == metabolism * 2 || prob(5)) + M.emote("yawn") + else if(effective_dose < 1.5 * threshold) + M.eye_blurry = max(M.eye_blurry, 10) + else if(effective_dose < 5 * threshold) + if(prob(50)) + M.Weaken(2) + M.drowsyness = max(M.drowsyness, 20) + else + if(alien == IS_SLIME) //They don't have eyes, and they don't really 'sleep'. Fumble their general senses. + M.eye_blurry = max(M.eye_blurry, 30) + if(prob(20)) + M.ear_deaf = max(M.ear_deaf, 4) + M.Confuse(2) + else + M.Weaken(2) + else + M.sleeping = max(M.sleeping, 20) + M.drowsyness = max(M.drowsyness, 60) + +/datum/reagent/ethanol/flapper + name = "Flapper" + id = "flapper" + description = "A common drink among blood-drinkers, and those who just wanna drink. Tinnibat be damned." + taste_description = "a bloody good time" + color = "#763424" + strength = 15 + + glass_name = "flapper" + glass_desc = "A common drink among blood-drinkers, and those who just wanna drink. Tinnibat be damned." + +/datum/reagent/toxin/oilslide + name = "Oil slide" + id = "oilslide" + description = "Tasty, if you're a synth, not so much for organics." + taste_description = "oil, slime, and fuel! Tastes also like synthetic backwash" + color = "#331a1a" + + glass_name = "oilslide" + glass_desc = "Tasty, if you're a synth, not so much for organics." + +/datum/reagent/ethanol/sitonmyface + name = "Sit on my face" + id = "sitonmyface" + description = "A drink made of irish coffee and nuts, mostly known for its vulgar name. Makes for a great pickup line though!" + taste_description = "creamy coffee and alcohol, and nuts" + color = "#896750" + strength = 15 + + glass_name = "Sit on my face" + glass_desc = "A drink made of irish coffee and nuts, mostly known for its vulgar name. Makes for a great pickup line though!" + +/datum/reagent/ethanol/hachi + name = "Hachi" + id = "hachi" + description = "An unusual fusion of bourbon and sake infused with lemon juice, and mushrooms. Sweet, savory, but mostly weird." + taste_description = "sweet lemons, black pepper, and savory mushroom" + color = "#DC971D" + strength = 20 + +/datum/reagent/drink/freshtea + name = "Green tea" + id = "freshtea" //Not meant to be obtainable, this is to define effects for teas made from grown teas. + description = "Tasty green tea, it has antioxidants, it's good for you! Fresh means it's even healthier!" + taste_description = "green tea" + color = "#cac162" + adj_dizzy = -4 + adj_drowsy = -1 + adj_sleepy = -3 + adj_temp = 20 + + glass_name = "green tea" + glass_desc = "Tasty green tea, it has antioxidants, it's good for you!" + + cup_icon_state = "cup_tea" + cup_name = "cup of tea" + cup_desc = "Tasty green tea, it has antioxidants, it's good for you!" + +/datum/reagent/drink/freshtea/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) + ..() + if(alien == IS_DIONA) + return + M.adjustToxLoss(-2 * removed) //Higher toxin removal than other tea to reflect difficulty in preparing, still worse than dylovene. + +/datum/reagent/drink/freshtea/green + name = "Green tea" + id = "freshteagreen" + description = "Floral green tea, it has antioxidants, it's good for you! Fresh means it's even healthier!" + taste_description = "floral with vegetal notes and a slightly bitter aftertaste" + color = "#cac162" + + glass_name = "green tea" + glass_desc = "Floral green tea, it has antioxidants, it's fresh and good for you!" + + cup_icon_state = "cup_tea" + cup_name = "cup of tea" + cup_desc = "Floral green tea, it has antioxidants, it's fresh and good for you!" + +/datum/reagent/drink/tealeavesgreen + name = "Green tea leaves" + id = "tealeavesgreen" + description = "Prepared green tea, just waiting for hot water." + taste_description = "overwhelmingly bitter with faint floral notes" + color = "#56761d" + + glass_name = "tea leaves" + glass_desc = "Dry tea leaves in a cup. Just add hot water!" + +/datum/reagent/drink/teamush + name = "Tea mush" + id = "teamush" + description = "Mashed tea leaves, a bit like grass clippings. You can't make proper tea out of this now." + taste_description = "overwhelmingly bitter plant" + color = "#7db72d" + + glass_name = "blended plant" + glass_desc = "Chunky, mashed up plant of some sort. Looks kinda gross." + +/datum/reagent/drink/instantteapowdergreen + name = "Instant green tea powder" + id = "instantteapowdergreen" + description = "Green tea powder missing all the goodness of green tea." //Heathen. + taste_description = "strong bitterness with a subtle chemical aftertaste" + color = "#56761d" + + glass_name = "tea powder" + glass_desc = "Instant green tea powder. Just add water for imitation green tea!" + +/datum/reagent/drink/instantteagreen + name = "Instant green tea" + id = "instantteagreen" + description = "Convenient green tea missing all the goodness of actual green tea." //It's not even hot. + taste_description = "bitterness with a subtle chemical aftertaste" + color = "#cac162" + + glass_name = "green tea" + glass_desc = "Green tea. It smells a bit off." + + cup_icon_state = "cup_tea" + cup_name = "cup of tea" + cup_desc = "Green tea. It smells a bit off." + +/datum/reagent/drink/matchapowder + name = "Matcha powder" + id = "matchapowder" + description = "Finely ground green tea. This is about the highest quality matcha you can prepare without traditional methods." + taste_description = "heavy bitterness" + color = "#86a443" + + glass_name = "matcha powder" + glass_desc = "Matcha powder, waiting for brewing." + +/datum/reagent/drink/matcha + name = "Matcha" + id = "matcha" + description = "A form of green tea where the leaf is ground and suspended in water rather than steeped. This is considered cooking grade." + taste_description = "floral, full-bodied bitterness with a subtle, earthy sweetness" + color = "#9bc265" + adj_dizzy = -4 + adj_drowsy = -1 + adj_sleepy = -3 + adj_temp = 20 + + glass_name = "matcha" + glass_desc = "Heavenly matcha. Good for body and spirit." + + cup_icon_state = "cup_tea" + cup_name = "cup of matcha" + cup_desc = "Heavenly matcha. Good for body and spirit." + +/datum/reagent/drink/matcha/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) + ..() + if(alien == IS_DIONA) + return + M.adjustToxLoss(-3 * removed) //Almost on par with dylovene despite being harder to obtain in bulk. Nerf if this causes problems. + +/datum/reagent/drink/juice/gelatin + name = "Gelatin" + id = "gelatin" + description = "It doesnt taste like anything." + taste_description = "nothing" + nutrition = 0 + color = "#aaabcf" + + glass_name = "Gelatin" + glass_desc = "It's like flavourless slime." + +/datum/reagent/drink/bubbleteawatermelon + name = "Watermelon bubble tea" + id = "bubbleteawatermelon" + description = "A tea with milk and watermelon in it and gelatin balls as well." + taste_description = "creamy tea and watermelon" + color = "#b83333" + + glass_name = "watermelon bubble tea" + glass_desc = "A sweet tea with tasty little flavoured gelatin balls in it, this one is with watermelon." + +/datum/reagent/drink/bubbleteastrawberry + name = "Strawberry bubble tea" + id = "bubbleteastrawberry" + description = "A tea with milk and strawberry in it and gelatin balls as well." + taste_description = "creamy tea and strawberry" + color = "#eb6c77" + + glass_name = "strawberry bubble tea" + glass_desc = "A sweet tea with tasty little flavoured gelatin balls in it, this one is with strawberry." + +/datum/reagent/drink/bubbleteacherry + name = "Cherry bubble tea" + id = "bubbleteacherry" + description = "A tea with milk and cherry in it and gelatin balls as well." + taste_description = "creamy tea and cherry" + color = "#801e28" + + glass_name = "cherry bubble tea" + glass_desc = "A sweet tea with tasty little flavoured gelatin balls in it, this one is with cherry." + +/datum/reagent/drink/bubbleteacoffee + name = "Coffee bubble tea" + id = "bubbleteacoffee" + description = "A tea with milk and coffee in it and gelatin balls as well." + taste_description = "creamy tea and coffee" + color = "#482910" + + glass_name = "coffee bubble tea" + glass_desc = "A sweet tea with tasty little flavoured gelatin balls in it, this one is with coffee." + +/datum/reagent/drink/bubbleteabanana + name = "Banana bubble tea" + id = "bubbleteabanana" + description = "A tea with milk and banana in it and gelatin balls as well." + taste_description = "creamy tea and banana" + color = "#c3af00" + + glass_name = "banana bubble tea" + glass_desc = "A sweet tea with tasty little flavoured gelatin balls in it, this one is with banana." + +/datum/reagent/drink/horchata + name = "Horchata" + id = "horchata" + description = "A sweet and cold rice milk beverage." + taste_description = "sweet rice milk and cinnamon" + color = "#ebcdc1" + adj_temp = -5 + + glass_name = "horchata" + glass_desc = "A sweet and cold rice milk beverage." + +/datum/reagent/ethanol/snaps + name = "Akvavit" + id = "snaps" + description = "Burns the nose and throat and soothes it with a herby aftertaste...Barely." + taste_description = "strong spirit and a little dill" + color = "e6d670" // rgb: 230, 214, 112 + strength = 15 + + glass_name = "akvavit" + glass_desc = "Burns the nose and throat, and soothes it with a herby aftertaste...Barely." + +/datum/reagent/ethanol/narsour + name = "Nar'Sour" + id = "narsour" + description = "Side effects include self-mutilation and hoarding plasteel." + taste_description = "blood and runes" + color = "#7D1717" + strength = 10 + + glass_icon_state = "narsour" + glass_name = "Nar'Sour" + glass_desc = "A new hit cocktail inspired by THE ARM Breweries will have you shouting Fuu ma'jin in no time!" + +/datum/reagent/ethanol/cogchamp + name = "CogChamp" + id = "cogchamp" + description = "Now you can fill yourself with the power of Ratvar!" + taste_description = "brass taste with a hint of oil" + color = rgb(255, 201, 49) + strength = 10 + + glass_icon_state = "cogchamp" + glass_name = "CogChamp" + glass_desc = "Not even Ratvar's Four Generals could withstand this! Qevax Jryy!" + +//Arachnid slammer states - Jack + +/datum/reagent/ethanol/arachnidslammer + name = "Arachnid Slammer" + id = "arachnidslammer" + description = "An adventurous mix of a cheap, powerful ale with an equally cheap, powerful energy drink and combat drugs. The result should have been undrikable, and yet it sure does put a spring in your step." + taste_description = "hearty barley ale, almost illegal energy drink, combat stimulants, and the urge to go mine and wrestle a spider" + color = "#594219" + strength = 30 + nutriment_factor = 1 + + glass_name = "arachnid slammer" + glass_desc = "A freezing pint of delicious Araching Slammer, it foams constantly with the air crisp around it." + allergen_type = ALLERGEN_GRAINS //Barley is grain + +/datum/reagent/ethanol/arachnidslammer/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) + .=..() + M.reagents.add_reagent("infusedarachnidslammer", removed * 5) +/datum/reagent/ethanol/arachnidslammer/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) + .=..() + M.reagents.add_reagent("infusedarachnidslammer", removed * 5) + +/datum/reagent/infusedarachnidslammer + name = "Infused Arachnid Slammer" + id = "infusedarachnidslammer" + description = "When Arachnid Slammer is metabolized you get a concortion of chemicals that breaks down slower. While the alcohol is burned off, the new compounds seems dormant, like they're waiting for some malicious toxin.." + taste_description = "flat watered down Arachnid Slammer and a brewing tempest" + reagent_state = LIQUID + color = "#8040FF" + scannable = 1 + metabolism = REM + ingest_met = REM + + glass_name = "infused arachnid slammer" + glass_desc = "A pint of metabolized Arachnid Slammer. Even if its flat it still somehow foams and sparkles as well as bubbles more actively when spiders are nearby." + +/datum/reagent/infusedarachnidslammer/enragedarachnidslammer + name = "Enraged Arachnid Slammer" + id = "enragedarachnidslammer" + description = "The best term to scientifically describe this concortion is that the compounds of the Arachnid Slammer are going into a raging frenzy from spider toxin. Its now functioning like a form of potent chemical-based white blood cells that aims to break down harmful compounds and repair the body." + taste_description = "cold burning liquid rage and the urge to destroy any spider you see" + + glass_name = "enraged arachnid slammer" + glass_desc = "A pint of Enraged Arachnid Slammer. It bubbles and sparkles fiercly as if it was in a berserking state!" + +/datum/reagent/infusedarachnidslammer/enragedarachnidslammer/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) + var/chem_effective = 1 * M.species.chem_strength_heal + + M.adjustOxyLoss(-1.5 * removed * chem_effective) + M.adjustToxLoss(-1.5 * removed * chem_effective) + M.heal_organ_damage(1.5 * removed, 1.5 * removed * chem_effective) + M.add_chemical_effect(CE_PAINKILLER, 80 * chem_effective) + M.add_chemical_effect(CE_SPEEDBOOST, 0) + +/datum/reagent/drink/pilk + name = "Pilk" + id = "pilk" + description = "A forbidden mixture that dates back to the early days of space civilization, its creation is known to have caused at least one or two massacres." + taste_description = "heresy" + color = "#4C3100" + + glass_name = "Pilk" + glass_desc = "Why would you do this to yourself?" + + cup_name = "glass of Pilk" + cup_desc = "A glass of regret." + +//Ported Drinks +/datum/reagent/ethanol/alliescocktail + name = "Allies Cocktail" + id = "alliescocktail" + description = "A drink made from your allies. Not as sweet as those made from your enemies." + taste_description = "bitter yet free" + color = "#60f8f8" // rgb(96, 248, 248) + strength = 45 + + glass_name = "Allies cocktail" + glass_desc = "A drink made from your allies." + +/datum/reagent/ethanol/fetching_fizz + name = "Fetching Fizz" + id = "fetching_fizz" + description = "Cola/iron/uranium mixture resulting in a highly magnetic slurry. Mild alcohol content." + taste_description = "charged metal" + color = "#FF5B0F" // rgb(255, 91, 15) + strength = 90 + + glass_name = "Fetching Fizz" + glass_desc = "Induces magnetism in the imbiber. Started as a barroom prank but evolved to become popular with miners and scrappers. Metallic aftertaste." + +/datum/reagent/ethanol/fetching_fizz/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) + for(var/obj/item/weapon/ore/O in orange(3, M)) + step_towards(O, get_turf(M)) + +/datum/reagent/ethanol/hearty_punch + name = "Hearty Punch" + id = "hearty_punch" + description = "Brave bull/syndicate bomb/absinthe mixture resulting in an energizing beverage. Mild alcohol content." + taste_description = "bravado in the face of disaster" + color = "#8C0000" // rgb(140, 0, 0) + strength = 90 + glass_name = "Hearty Punch" + glass_desc = "Aromatic beverage served piping hot. According to folk tales it can almost wake the dead." + +/datum/reagent/ethanol/hearty_punch/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) + if(M.health<=0) + M.adjustBruteLoss(-3 * removed) + M.adjustFireLoss(-3 * removed) + M.adjustCloneLoss(-5 * removed) + M.adjustOxyLoss(-4 * removed) + M.adjustToxLoss(-3 * removed) + +/datum/reagent/ethanol/squirt_cider + name = "Squirt Cider" + id = "squirt_cider" + description = "Fermented squirt extract with a nose of stale bread and ocean water. Whatever a squirt is." + taste_description = "stale bread with a staler aftertaste" + color = "#FF0000" // rgb(255, 0, 0) + strength = 40 + glass_name = "Squirt Cider" + glass_desc = "Squirt cider will toughen you right up. Too bad about the musty aftertaste." + nutriment_factor = 2 + +/datum/reagent/ethanol/fringe_weaver + name = "Fringe Weaver" + id = "fringe_weaver" + description = "Bubbly, classy, and undoubtedly strong - a Glitch City classic." + taste_description = "ethylic alcohol with a hint of sugar" + color = "#FFEAC4" // rgb(255, 234, 197) + strength = 10 + glass_name = "Fringe Weaver" + glass_desc = "It's a wonder it doesn't spill out of the glass." + +/datum/reagent/ethanol/crevice_spike + name = "Crevice Spike" + id = "crevice_spike" + description = "Sour, bitter, and smashingly sobering." + taste_description = "a bitter SPIKE with a sour aftertaste" + color = "#5BD231" // rgb(91, 210, 49) + strength = 200 + glass_name = "Crevice Spike" + glass_desc = "It'll either knock the drunkenness out of you or knock you out cold. Both, probably." + +/datum/reagent/ethanol/crevice_spike/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) + M.adjustBruteLoss(50 * removed) + for(var/datum/reagent/R in M.ingested.reagent_list) + if(istype(R, /datum/reagent/ethanol)) + R.remove_self(50 * removed) + +/datum/reagent/ethanol/duplex + name = "Duplex" + id = "duplex" + description = "An inseparable combination of two fruity drinks." + taste_description = "green apples and blue raspberries" + color = "#50e5cf" // rgb(80, 229, 207) + strength = 50 + glass_name = "Duplex" + glass_desc = "To imbibe one component separately from the other is consider a great faux pas." + +/datum/reagent/ethanol/mauna_loa + name = "Mauna Loa" + id = "mauna_loa" + description = "Extremely hot; not for the faint of heart!" + taste_description = "fiery, with an aftertaste of burnt flesh" + color = "#fe8308" // rgb(254, 131, 8) + strength = 50 + glass_name = "Mauna Loa" + glass_desc = "Lava in a drink... mug... volcano... thing." + +/datum/reagent/ethanol/mauna_loa/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) + if(prob(10)) + M.adjust_fire_stacks(5*removed) + M.IgniteMob() + +/datum/reagent/ethanol/hiveminderaser + name = "Hivemind Eraser" + id = "hiveminderaser" + description = "A vessel of pure flavor." + taste_description = "psychic links" + color = "#FF80FC" // rgb(255, 128, 252) + strength = 50 + glass_name = "Hivemind Eraser" + glass_desc = "For when even mindshields can't save you." + +/datum/reagent/ethanol/erikasurprise + name = "Erika Surprise" + id = "erikasurprise" + description = "The surprise is, it's green!" + taste_description = "tartness and bananas" + color = "#2E6671" // rgb(46, 102, 113) + strength = 75 + glass_name = "Erika Surprise" + glass_desc = "The surprise is, it's green!" + +//////////////////////////////////////////////// +/////////FOODSTUFF///////////////////////////// +////////////////////////////////////////////// + +/datum/reagent/cinnamonpowder + name = "ground cinnamon" + id = "cinnamonpowder" + description = "Cinnamon, a spice made from tree bark, ground into a fine powder. Probably not a good idea to eat on its own!" + taste_description= "sweet spice with a hint of wood" + color = "#a96622" + + glass_name = "ground cinnamon" + glass_desc = "A glass of ground cinnamon. Dare you take the challenge?" + +//YW drinks +/datum/reagent/drink/lovepotion_yw + name = "Strawberry Love Potion" + id = "strawberrylovepotion" + description = "Creamy strawberries and sugar, simple and sweet." + taste_description = "strawberries and cream" + color = "#fc8a8a" // rgb(252, 138, 138) + + glass_name = "Love Potion" + glass_desc = "Love me tender, love me sweet." + +/datum/reagent/ethanol/wormblood + name = "Worm Blood" + id = "wormblood" + description = "Who had the grand idea to bottle THE BLOOD OF A WORM." + taste_description = "Wriggly cave fungus" + color = "#827A00" + strength = 30 + druggy = 10 + + glass_name = "Worm blood" + glass_desc = "Who had the grand idea to bottle THE BLOOD OF A WORM." + glass_icon_state = "wormblood" + glass_center_of_mass = list("x"=16, "y"=8) + glass_icon_file = 'icons/obj/drinks_yw.dmi' diff --git a/modular_chomp/code/modules/vore/eating/exportpanel_ch.dm b/modular_chomp/code/modules/vore/eating/exportpanel_ch.dm new file mode 100644 index 0000000000..6632ea9aec --- /dev/null +++ b/modular_chomp/code/modules/vore/eating/exportpanel_ch.dm @@ -0,0 +1,264 @@ +// +// Belly Export Panel +// + +/datum/vore_look/export_panel/proc/open_export_panel(mob/user) + tgui_interact(user) + +/datum/vore_look/export_panel/tgui_interact(mob/user, datum/tgui/ui) + ui = SStgui.try_update_ui(user, src, ui) + if(!ui) + ui = new(user, src, "VorePanelExport", "Vore Export Panel") + ui.open() + ui.set_autoupdate(FALSE) + +/datum/vore_look/export_panel/tgui_fallback(payload) + if(..()) + return TRUE + + //var/mob/living/host = usr + //host.vorebelly_printout(TRUE) + +/datum/vore_look/export_panel/tgui_act(action, params) + if(..()) + return TRUE + +/datum/vore_look/export_panel/tgui_data(mob/user) + var/list/data = list() + var/mob/living/host = user + + data["db_version"] = "0.1" + data["db_repo"] = "chompstation" + data["mob_name"] = host.real_name + + for(var/belly in host.vore_organs) + if(isbelly(belly)) + var/obj/belly/B = belly + var/belly_data = list() + + // General Information + belly_data["name"] = B.name + belly_data["desc"] = B.desc + belly_data["absorbed_desc"] = B.absorbed_desc + belly_data["vore_verb"] = B.vore_verb + belly_data["release_verb"] = B.release_verb + + // Controls + belly_data["mode"] = B.digest_mode + var/list/addons = list() + for(var/flag_name in B.mode_flag_list) + if(B.mode_flags & B.mode_flag_list[flag_name]) + addons.Add(flag_name) + belly_data["addons"] = addons + belly_data["item_mode"] = B.item_digest_mode + + // Messages + belly_data["struggle_messages_outside"] = list() + for(var/msg in B.struggle_messages_outside) + belly_data["struggle_messages_outside"] += msg + + belly_data["struggle_messages_inside"] = list() + for(var/msg in B.struggle_messages_inside) + belly_data["struggle_messages_inside"] += msg + + belly_data["absorbed_struggle_messages_outside"] = list() + for(var/msg in B.absorbed_struggle_messages_outside) + belly_data["absorbed_struggle_messages_outside"] += msg + + belly_data["absorbed_struggle_messages_inside"] = list() + for(var/msg in B.absorbed_struggle_messages_inside) + belly_data["absorbed_struggle_messages_inside"] += msg + + belly_data["digest_messages_owner"] = list() + for(var/msg in B.digest_messages_owner) + belly_data["digest_messages_owner"] += msg + + belly_data["digest_messages_prey"] = list() + for(var/msg in B.digest_messages_prey) + belly_data["digest_messages_prey"] += msg + + belly_data["absorb_messages_owner"] = list() + for(var/msg in B.absorb_messages_owner) + belly_data["absorb_messages_owner"] += msg + + belly_data["absorb_messages_prey"] = list() + for(var/msg in B.absorb_messages_prey) + belly_data["absorb_messages_prey"] += msg + + belly_data["unabsorb_messages_owner"] = list() + for(var/msg in B.unabsorb_messages_owner) + belly_data["unabsorb_messages_owner"] += msg + + belly_data["unabsorb_messages_prey"] = list() + for(var/msg in B.unabsorb_messages_prey) + belly_data["unabsorb_messages_prey"] += msg + + belly_data["examine_messages"] = list() + for(var/msg in B.examine_messages) + belly_data["examine_messages"] += msg + + belly_data["examine_messages_absorbed"] = list() + for(var/msg in B.examine_messages_absorbed) + belly_data["examine_messages_absorbed"] += msg + + //belly_data["emote_list"] = list() + //for(var/EL in B.emote_lists) + // for(var/msg in B.emote_lists[EL]) + // msg_list += msg + // + // belly_data["emote_lists"] += list(EL, msg_list) + + // I will use this first before the code above gets fixed + belly_data["emotes_digest"] = list() + for(var/msg in B.emote_lists[DM_DIGEST]) + belly_data["emotes_digest"] += msg + + belly_data["emotes_hold"] = list() + for(var/msg in B.emote_lists[DM_HOLD]) + belly_data["emotes_hold"] += msg + + belly_data["emotes_holdabsorbed"] = list() + for(var/msg in B.emote_lists[DM_HOLD_ABSORBED]) + belly_data["emotes_holdabsorbed"] += msg + + belly_data["emotes_absorb"] = list() + for(var/msg in B.emote_lists[DM_ABSORB]) + belly_data["emotes_absorb"] += msg + + belly_data["emotes_heal"] = list() + for(var/msg in B.emote_lists[DM_HEAL]) + belly_data["emotes_heal"] += msg + + belly_data["emotes_drain"] = list() + for(var/msg in B.emote_lists[DM_DRAIN]) + belly_data["emotes_drain"] += msg + + belly_data["emotes_steal"] = list() + for(var/msg in B.emote_lists[DM_SIZE_STEAL]) + belly_data["emotes_steal"] += msg + + belly_data["emotes_egg"] = list() + for(var/msg in B.emote_lists[DM_EGG]) + belly_data["emotes_egg"] += msg + + belly_data["emotes_shrink"] = list() + for(var/msg in B.emote_lists[DM_SHRINK]) + belly_data["emotes_shrink"] += msg + + belly_data["emotes_grow"] = list() + for(var/msg in B.emote_lists[DM_GROW]) + belly_data["emotes_grow"] += msg + + belly_data["emotes_unabsorb"] = list() + for(var/msg in B.emote_lists[DM_UNABSORB]) + belly_data["emotes_unabsorb"] += msg + + // Options + belly_data["digest_brute"] = B.digest_brute + belly_data["digest_burn"] = B.digest_burn + belly_data["digest_oxy"] = B.digest_oxy + + belly_data["can_taste"] = B.can_taste + belly_data["contaminates"] = B.contaminates + belly_data["contamination_flavor"] = B.contamination_flavor + belly_data["contamination_color"] = B.contamination_color + belly_data["nutrition_percent"] = B.nutrition_percent + belly_data["bulge_size"] = B.bulge_size + belly_data["display_absorbed_examine"] = B.display_absorbed_examine + belly_data["save_digest_mode"] = B.save_digest_mode + belly_data["emote_active"] = B.emote_active + belly_data["emote_time"] = B.emote_time + belly_data["shrink_grow_size"] = B.shrink_grow_size + belly_data["vorespawn_blacklist"] = B.vorespawn_blacklist + belly_data["egg_type"] = B.egg_type + belly_data["selective_preference"] = B.selective_preference + + // Sounds + belly_data["is_wet"] = B.is_wet + belly_data["wet_loop"] = B.wet_loop + belly_data["fancy_vore"] = B.fancy_vore + belly_data["vore_sound"] = B.vore_sound + belly_data["release_sound"] = B.release_sound + + // Visuals + belly_data["affects_vore_sprites"] = B.affects_vore_sprites + belly_data["count_absorbed_prey_for_sprite"] = B.count_absorbed_prey_for_sprite + belly_data["resist_triggers_animation"] = B.resist_triggers_animation + belly_data["size_factor_for_sprite"] = B.size_factor_for_sprite + belly_data["belly_sprite_to_affect"] = B.belly_sprite_to_affect + + // Visuals (Belly Fullscreens Preview and Coloring) + belly_data["belly_fullscreen_color"] = B.belly_fullscreen_color + + // Visuals (Vore FX) + belly_data["disable_hud"] = B.disable_hud + + // Interactions + belly_data["escapable"] = B.escapable + + belly_data["escapechance"] = B.escapechance + belly_data["escapetime"] = B.escapetime + + belly_data["transferchance"] = B.transferchance + belly_data["transferlocation"] = B.transferlocation + + belly_data["transferchance_secondary"] = B.transferchance_secondary + belly_data["transferlocation_secondary"] = B.transferlocation_secondary + + belly_data["absorbchance"] = B.absorbchance + belly_data["digestchance"] = B.digestchance + + // Interactions (Auto-Transfer) + belly_data["autotransferchance"] = B.autotransferchance + belly_data["autotransferwait"] = B.autotransferwait + belly_data["autotransferlocation"] = B.autotransferlocation + belly_data["autotransfer_enabled"] = B.autotransfer_enabled + belly_data["autotransfer_min_amount"] = B.autotransfer_min_amount + belly_data["autotransfer_max_amount"] = B.autotransfer_max_amount + + // Liquid Options + belly_data["show_liquids"] = B.show_liquids + belly_data["reagentbellymode"] = B.reagentbellymode + belly_data["reagent_chosen"] = B.reagent_chosen + belly_data["reagent_name"] = B.reagent_name + belly_data["reagent_transfer_verb"] = B.reagent_transfer_verb + belly_data["gen_time_display"] = B.gen_time_display + belly_data["custom_max_volume"] = B.custom_max_volume + belly_data["vorefootsteps_sounds"] = B.vorefootsteps_sounds + + var/list/reagent_flags = list() + for(var/flag_name in B.reagent_mode_flag_list) + if(B.reagent_mode_flags & B.reagent_mode_flag_list[flag_name]) + reagent_flags.Add(flag_name) + belly_data["reagent_mode_flag_list"] = reagent_flags + + data["bellies"] += list(belly_data) + + // Liquid Messages + belly_data["liquid_fullness1_messages"] = B.liquid_fullness1_messages + belly_data["liquid_fullness2_messages"] = B.liquid_fullness2_messages + belly_data["liquid_fullness3_messages"] = B.liquid_fullness3_messages + belly_data["liquid_fullness4_messages"] = B.liquid_fullness4_messages + belly_data["liquid_fullness5_messages"] = B.liquid_fullness5_messages + + belly_data["fullness1_messages"] = list() + for(var/msg in B.fullness1_messages) + belly_data["fullness1_messages"] += msg + + belly_data["fullness2_messages"] = list() + for(var/msg in B.fullness2_messages) + belly_data["fullness2_messages"] += msg + + belly_data["fullness3_messages"] = list() + for(var/msg in B.fullness3_messages) + belly_data["fullness3_messages"] += msg + + belly_data["fullness4_messages"] = list() + for(var/msg in B.fullness4_messages) + belly_data["fullness4_messages"] += msg + + belly_data["fullness5_messages"] = list() + for(var/msg in B.fullness5_messages) + belly_data["fullness5_messages"] += msg + + return data diff --git a/modular_chomp/code/modules/xenobio/machinery/monkey_processor.dm b/modular_chomp/code/modules/xenobio/machinery/monkey_processor.dm new file mode 100644 index 0000000000..39bf7963fc --- /dev/null +++ b/modular_chomp/code/modules/xenobio/machinery/monkey_processor.dm @@ -0,0 +1,49 @@ +//To help streamline virology work. Would be broken if put in Xenobio so maybe perhaps don't do that. +//Or do. I'm just a dev, not your boss. + +/obj/machinery/processor/monkey + name = "monkey processor" + desc = "An industrial grinder used to automate the process of monkey recycling." + description_info = "Clickdrag dead monkeys to it to insert them. It will make a new monkey cube for every monkey it processes." + +/obj/item/weapon/circuitboard/processor/monkey + name = T_BOARD("monkey processor") + build_path = /obj/machinery/processor/monkey + origin_tech = list(TECH_DATA = 2, TECH_BIO = 2) + +/obj/machinery/processor/monkey/begin_processing() + if(processing) + return // Already doing it. + processing = TRUE + playsound(src, 'sound/machines/juicer.ogg', 50, 1) + for(var/atom/movable/AM in to_be_processed) + extract(AM) + sleep(1 SECONDS) + + while(monkeys_recycled >= 1) + new /obj/item/weapon/reagent_containers/food/snacks/monkeycube(get_turf(src)) + playsound(src, 'sound/effects/splat.ogg', 50, 1) + monkeys_recycled -= 1 + sleep(1 SECOND) + + processing = FALSE + playsound(src, 'sound/machines/ding.ogg', 50, 1) + +/obj/machinery/processor/monkey/extract(var/atom/movable/AM) + if(istype(AM, /mob/living/carbon/human)) + var/mob/living/carbon/human/M = AM + playsound(src, 'sound/effects/splat.ogg', 50, 1) + to_be_processed.Remove(M) + qdel(M) + monkeys_recycled++ + sleep(1 SECOND) + +/obj/machinery/processor/monkey/can_insert(var/atom/movable/AM) + if(istype(AM, /mob/living/carbon/human)) + var/mob/living/carbon/human/H = AM + if(!istype(H.species, /datum/species/monkey)) + return FALSE + if(H.stat != DEAD) + return FALSE + return TRUE + return FALSE \ No newline at end of file diff --git a/modular_chomp/icons/obj/drinks.dmi b/modular_chomp/icons/obj/drinks.dmi new file mode 100644 index 0000000000..3a51730298 Binary files /dev/null and b/modular_chomp/icons/obj/drinks.dmi differ diff --git a/modular_chomp/icons/turf/desert_planet.dmi b/modular_chomp/icons/turf/desert_planet.dmi new file mode 100644 index 0000000000..c9b6d3a7b5 Binary files /dev/null and b/modular_chomp/icons/turf/desert_planet.dmi differ diff --git a/modular_chomp/icons/turf/outdoors_edge.dmi b/modular_chomp/icons/turf/outdoors_edge.dmi new file mode 100644 index 0000000000..c9b6d3a7b5 Binary files /dev/null and b/modular_chomp/icons/turf/outdoors_edge.dmi differ diff --git a/modular_chomp/maps/submaps/shelters/CrashedInfestedShip-60x29.dmm b/modular_chomp/maps/submaps/shelters/CrashedInfestedShip-60x29.dmm new file mode 100644 index 0000000000..3f490d3077 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/CrashedInfestedShip-60x29.dmm @@ -0,0 +1,388 @@ +"ao" = (/obj/machinery/atmospherics/binary/circulator,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"as" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"at" = (/obj/structure/prop/alien/pod/hybrid,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/CrashedInfestedShip) +"aH" = (/obj/machinery/optable,/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/CrashedInfestedShip) +"aJ" = (/obj/effect/floor_decal/techfloor{dir = 5},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"bc" = (/turf/simulated/floor/airless,/area/survivalpod/superpose/CrashedInfestedShip) +"bi" = (/turf/simulated/floor,/area/template_noop) +"bm" = (/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"bo" = (/obj/structure/closet/secure_closet/egg/xenomorph,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"bp" = (/obj/effect/floor_decal/techfloor/corner{dir = 9},/obj/fire,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"bv" = (/obj/fire,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"bw" = (/obj/structure/prop/alien/pod/open,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"bH" = (/obj/structure/table/alien/blue,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/item/weapon/hand_labeler,/obj/item/device/tape/random,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/CrashedInfestedShip) +"bI" = (/obj/effect/floor_decal/techfloor,/obj/fire,/obj/fire,/obj/effect/decal/cleanable/generic,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"bN" = (/obj/random/maintenance/clean,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"bO" = (/obj/effect/floor_decal/techfloor,/obj/structure/bed/chair/wood/wings{dir = 1},/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/CrashedInfestedShip) +"cf" = (/obj/machinery/light/poi{dir = 1},/turf/simulated/floor/carpet/gaycarpet,/area/survivalpod/superpose/CrashedInfestedShip) +"cB" = (/obj/structure/prop/alien/computer/camera{dir = 4},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"cL" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1; target_pressure = 200},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"cP" = (/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/CrashedInfestedShip) +"cS" = (/obj/structure/bed/nest,/obj/machinery/light/poi{dir = 4},/turf/simulated/floor/carpet,/area/survivalpod/superpose/CrashedInfestedShip) +"cX" = (/obj/effect/floor_decal/techfloor/corner{dir = 10},/obj/fire,/obj/item/trash/material/device,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"db" = (/obj/structure/closet/alien,/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/turf/template_noop,/area/survivalpod/superpose/CrashedInfestedShip) +"de" = (/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/CrashedInfestedShip) +"dg" = (/obj/structure/loot_pile/surface/alien/engineering,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"dx" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"dz" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"dB" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/template_noop,/area/survivalpod/superpose/CrashedInfestedShip) +"dC" = (/obj/effect/floor_decal/techfloor/hole{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"dF" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced,/turf/template_noop,/area/survivalpod/superpose/CrashedInfestedShip) +"dN" = (/obj/machinery/light/poi{dir = 4},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"dS" = (/obj/structure/cryofeed{dir = 2},/obj/machinery/light/small/emergency,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/CrashedInfestedShip) +"dY" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/fire,/obj/machinery/light/poi{dir = 8},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"ep" = (/obj/random/maintenance/engineering,/obj/fire,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"et" = (/obj/fire,/obj/machinery/light/poi{dir = 1},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"ex" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"eB" = (/obj/structure/closet/alien,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/CrashedInfestedShip) +"eE" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/random/maintenance/engineering,/obj/fire,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"eG" = (/obj/effect/floor_decal/techfloor,/obj/fire,/obj/machinery/light/poi{dir = 1},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"eI" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/fire,/obj/fire,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"fc" = (/turf/simulated/floor/carpet/tealcarpet,/area/survivalpod/superpose/CrashedInfestedShip) +"ff" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"fi" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/CrashedInfestedShip) +"fm" = (/obj/machinery/computer/security/abductor{icon_screen = null},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"fA" = (/obj/structure/cryofeed,/obj/structure/window/reinforced/survival_pod{dir = 5},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/CrashedInfestedShip) +"fD" = (/obj/effect/floor_decal/techfloor,/obj/fire,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"gc" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"gd" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/random/maintenance/engineering,/obj/fire,/obj/fire,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"gm" = (/obj/fire,/obj/fire,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"gt" = (/obj/machinery/the_singularitygen,/turf/simulated/floor/airless,/area/survivalpod/superpose/CrashedInfestedShip) +"gz" = (/obj/structure/bed/chair/wood/wings,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/CrashedInfestedShip) +"gB" = (/obj/effect/floor_decal/techfloor,/obj/machinery/light/poi{dir = 8},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"gK" = (/obj/structure/loot_pile/surface/alien/engineering,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"gW" = (/obj/machinery/door/airlock/alien{req_one_access = null},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/CrashedInfestedShip) +"hw" = (/obj/machinery/vending/engivend{emagged = 1; req_access = list(777); req_log_access = null},/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/CrashedInfestedShip) +"hR" = (/obj/machinery/cryopod{dir = 4},/obj/structure/cryofeed{pixel_x = -32},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"hV" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"iq" = (/obj/item/trash/material/metal,/obj/item/trash/material/circuit,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"is" = (/obj/fire,/obj/effect/decal/cleanable/generic,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"iw" = (/obj/structure/bed/nest,/turf/simulated/floor/carpet/blue,/area/survivalpod/superpose/CrashedInfestedShip) +"iy" = (/obj/structure/table/alien/blue,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/item/device/sleevemate,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/CrashedInfestedShip) +"iG" = (/obj/fire,/obj/item/trash/material/metal,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"iM" = (/obj/effect/floor_decal/techfloor/corner{dir = 9},/obj/fire,/obj/item/trash/material/circuit,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"iQ" = (/obj/structure/particle_accelerator/particle_emitter/center{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"jb" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/fire,/obj/fire,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"jd" = (/obj/machinery/atmospherics/pipe/tank/phoron/full,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"jg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/shuttle/wall/alien/blue/hard_corner,/area/survivalpod/superpose/CrashedInfestedShip) +"jh" = (/obj/structure/loot_pile/surface/alien/engineering,/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/CrashedInfestedShip) +"ji" = (/obj/structure/closet/alien,/obj/random/toolbox,/obj/random/toolbox,/obj/random/toolbox,/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/item/weapon/storage/toolbox/syndicate,/obj/fiftyspawner/phoronrglass,/obj/fiftyspawner/phoronrglass,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/CrashedInfestedShip) +"jm" = (/obj/structure/table/alien,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"jq" = (/obj/effect/floor_decal/techfloor,/obj/fire,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"jr" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"jI" = (/obj/fire,/obj/item/trash/material/metal,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"jK" = (/obj/machinery/light/poi,/turf/simulated/floor/carpet/tealcarpet,/area/survivalpod/superpose/CrashedInfestedShip) +"jW" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/CrashedInfestedShip) +"jZ" = (/obj/machinery/cryopod,/obj/structure/cryofeed{dir = 4; pixel_x = 32},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"ku" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/fire,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"kD" = (/obj/machinery/atmospherics/binary/pump/on{target_pressure = 200},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"kN" = (/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/obj/structure/closet{name = "Survival closet"},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"kO" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/machinery/door/window/brigdoor/eastleft{name = "Laser Armor"},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/alien{pixel_y = -6},/obj/item/weapon/gun/energy/alien,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/CrashedInfestedShip) +"kS" = (/obj/structure/table/bench/glass,/turf/simulated/floor/carpet/tealcarpet,/area/survivalpod/superpose/CrashedInfestedShip) +"kU" = (/obj/machinery/light/poi,/turf/template_noop,/area/survivalpod/superpose/CrashedInfestedShip) +"kV" = (/obj/effect/floor_decal/techfloor/corner{dir = 6},/obj/fire,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"lp" = (/obj/structure/lattice,/obj/fire,/turf/template_noop,/area/survivalpod/superpose/CrashedInfestedShip) +"ly" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/random/maintenance/engineering,/obj/effect/decal/cleanable/generic,/turf/simulated/shuttle/floor/alien,/area/survivalpod/superpose/CrashedInfestedShip) +"lJ" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/fire,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"mm" = (/obj/machinery/power/emitter/gyrotron,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/cyan,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"mp" = (/obj/fire,/turf/simulated/floor,/area/template_noop) +"mt" = (/obj/effect/decal/cleanable/generic,/turf/template_noop,/area/survivalpod/superpose/CrashedInfestedShip) +"mv" = (/obj/structure/table/alien/blue,/obj/item/weapon/reagent_containers/glass/beaker/bluespace,/obj/item/weapon/reagent_containers/glass/beaker/bluespace{pixel_x = -7},/obj/item/weapon/storage/belt/medical/alien,/obj/item/weapon/storage/belt/medical/alien{pixel_y = 6},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/CrashedInfestedShip) +"my" = (/obj/machinery/oxygen_pump/anesthetic,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"mH" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/cyan,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"mK" = (/obj/machinery/power/emitter/gyrotron,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/cyan,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"mQ" = (/obj/structure/closet/alien,/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/CrashedInfestedShip) +"mT" = (/obj/machinery/cryopod,/obj/structure/cryofeed{dir = 4; pixel_x = 32},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"nj" = (/obj/structure/table/alien,/obj/item/weapon/soap/deluxe,/obj/item/weapon/soap/deluxe,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/CrashedInfestedShip) +"nt" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/random/maintenance/engineering,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"nv" = (/obj/structure/prop/alien/computer/camera{dir = 1},/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"nx" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/CrashedInfestedShip) +"nB" = (/obj/structure/closet/alien,/obj/random/toolbox,/obj/random/toolbox,/obj/random/toolbox,/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/item/weapon/storage/toolbox/syndicate,/obj/fiftyspawner/plasteel,/obj/fiftyspawner/plasteel,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/machinery/light/poi{dir = 1},/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/CrashedInfestedShip) +"nC" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"nX" = (/obj/structure/alien/membrane,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"ob" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"oh" = (/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/machinery/door/window/brigdoor/westleft{name = "Combat Armor"},/obj/structure/table/rack/shelf/steel,/obj/item/clothing/suit/armor/alien/tank,/obj/item/clothing/head/helmet/alien/tank,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/CrashedInfestedShip) +"op" = (/obj/structure/window/reinforced/survival_pod{dir = 10},/obj/machinery/light/poi,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/CrashedInfestedShip) +"oI" = (/obj/effect/floor_decal/techfloor,/obj/machinery/vending/deluxe_dinner{req_access = null; req_log_access = null},/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/CrashedInfestedShip) +"oM" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"oR" = (/obj/structure/table/darkglass,/obj/random/maintenance/security,/obj/random/maintenance/security,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"ph" = (/obj/machinery/power/generator{anchored = 1; dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"pi" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/CrashedInfestedShip) +"pu" = (/obj/machinery/sleeper{dir = 4; emagged = 1; initial_bin_rating = 4},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/CrashedInfestedShip) +"pC" = (/obj/effect/floor_decal/techfloor,/obj/structure/prop/alien/dispenser,/obj/machinery/light/poi{dir = 8},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"pO" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/fire,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"qb" = (/obj/machinery/light/poi{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"qe" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light/poi{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"qm" = (/obj/structure/closet/alien,/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"qo" = (/obj/machinery/power/rad_collector,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"qC" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/CrashedInfestedShip) +"qE" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"qL" = (/obj/random/maintenance/clean,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/CrashedInfestedShip) +"qP" = (/obj/effect/floor_decal/techfloor,/obj/machinery/light/poi{dir = 1},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"qQ" = (/turf/simulated/shuttle/floor/alien,/area/survivalpod/superpose/CrashedInfestedShip) +"qS" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"qY" = (/obj/machinery/cryopod{dir = 4},/obj/structure/cryofeed{pixel_x = -32},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"ri" = (/obj/fire,/turf/simulated/floor/airless,/area/survivalpod/superpose/CrashedInfestedShip) +"ru" = (/obj/machinery/light/poi,/turf/simulated/floor/carpet/blue,/area/survivalpod/superpose/CrashedInfestedShip) +"rx" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"rI" = (/obj/structure/bed/nest,/turf/simulated/floor/carpet/tealcarpet,/area/survivalpod/superpose/CrashedInfestedShip) +"rJ" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"rL" = (/obj/effect/floor_decal/techfloor{dir = 10},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"rX" = (/obj/fire,/obj/machinery/light/poi,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"se" = (/obj/effect/alien/weeds/node,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"sn" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/item/trash/material/device,/turf/simulated/shuttle/floor/alien,/area/survivalpod/superpose/CrashedInfestedShip) +"sp" = (/obj/fire,/obj/fire,/obj/item/trash/material/device,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"ss" = (/obj/structure/prop/alien/computer{dir = 1},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"sC" = (/obj/fire,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"sM" = (/obj/machinery/light/poi{dir = 1},/turf/simulated/floor/carpet/tealcarpet,/area/survivalpod/superpose/CrashedInfestedShip) +"td" = (/obj/structure/table/alien,/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"tr" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/smes/buildable{icon = 'icons/obj/alien_smes.dmi'; icon_state = "unit"; input_level = 950000; name = "Alien Royal Capacitor"; output_level = 950000},/obj/machinery/light/poi,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"tu" = (/obj/machinery/light/poi{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"tF" = (/obj/machinery/cryopod/robot,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"tK" = (/obj/structure/prop/alien/computer/hybrid,/turf/template_noop,/area/survivalpod/superpose/CrashedInfestedShip) +"tN" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/light/poi,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"tX" = (/obj/effect/floor_decal/techfloor,/obj/fire,/obj/item/trash/material/circuit,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"uf" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/table/alien/blue,/obj/item/weapon/paper_bin,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen/reagent/paralysis,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"uI" = (/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/machinery/door/window/brigdoor/eastright{name = "Laser Armor"},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/darkmatter{pixel_y = 6},/obj/item/weapon/gun/energy/darkmatter,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/CrashedInfestedShip) +"uQ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"uT" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"ve" = (/obj/structure/table/alien/blue,/obj/structure/window/reinforced/survival_pod,/obj/item/weapon/hand_labeler,/obj/item/device/tape/random,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/CrashedInfestedShip) +"vg" = (/obj/structure/table/bench/glass,/turf/simulated/floor/carpet,/area/survivalpod/superpose/CrashedInfestedShip) +"vm" = (/obj/fire,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"vv" = (/obj/fire,/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/CrashedInfestedShip) +"vJ" = (/obj/item/trash/material/metal,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"vQ" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/CrashedInfestedShip) +"vU" = (/obj/random/maintenance/engineering,/turf/template_noop,/area/survivalpod/superpose/CrashedInfestedShip) +"vV" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/CrashedInfestedShip) +"wn" = (/obj/fire,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"wr" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"wD" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/CrashedInfestedShip) +"wK" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/machinery/light/poi{dir = 4},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"xl" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/cyan,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"xs" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/fire,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"xC" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/CrashedInfestedShip) +"xG" = (/obj/structure/prop/alien/computer/hybrid{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"xT" = (/obj/structure/table/darkglass,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/CrashedInfestedShip) +"ya" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"yi" = (/obj/structure/table/darkglass,/obj/random/maintenance/clean,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/CrashedInfestedShip) +"yv" = (/obj/structure/prop/fake_ai{name = "P0ps1ck13"},/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/CrashedInfestedShip) +"yI" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"yP" = (/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/CrashedInfestedShip) +"yU" = (/obj/machinery/light/poi,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"yY" = (/obj/structure/particle_accelerator/particle_emitter/right{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"zc" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"zj" = (/obj/fire,/obj/fire,/turf/template_noop,/area/survivalpod/superpose/CrashedInfestedShip) +"zu" = (/obj/structure/table/darkglass,/obj/random/maintenance/medical,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/CrashedInfestedShip) +"zz" = (/obj/effect/floor_decal/techfloor,/turf/template_noop,/area/survivalpod/superpose/CrashedInfestedShip) +"zD" = (/obj/machinery/field_generator{anchored = 1; state = 1},/obj/fire,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"zG" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/fire,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"zH" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/fire,/obj/fire,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"zI" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"zV" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"Aj" = (/obj/structure/table/bench/glass,/turf/simulated/floor/carpet/blue,/area/survivalpod/superpose/CrashedInfestedShip) +"AB" = (/obj/structure/loot_pile/surface/alien/security,/turf/simulated/shuttle/wall/alien/blue/hard_corner,/area/survivalpod/superpose/CrashedInfestedShip) +"AC" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; name = "Scrubber to Waste"},/obj/machinery/light/poi,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"AL" = (/obj/structure/prop/alien/pod/open,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"AO" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/random/maintenance/engineering,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"AP" = (/obj/machinery/vending/medical{dir = 4; emagged = 1; pixel_x = 5; req_access = list(777)},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"AR" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/template_noop,/area/survivalpod/superpose/CrashedInfestedShip) +"AS" = (/obj/effect/floor_decal/techfloor{dir = 9},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"AV" = (/obj/machinery/atmospherics/pipe/tank/phoron/full,/obj/machinery/light/poi{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"Bd" = (/obj/machinery/vending/deluxe_boozeomat{req_access = null; req_log_access = null},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"Bf" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"Bh" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/machinery/door/window/brigdoor/westright{name = "Combat Armor"},/obj/structure/table/rack/shelf/steel,/obj/item/clothing/suit/armor/alien,/obj/item/clothing/head/helmet/alien,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/CrashedInfestedShip) +"Bt" = (/obj/random/maintenance/clean,/obj/fire,/obj/item/trash/material/circuit,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"BE" = (/obj/structure/prop/alien/pod/hybrid,/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/CrashedInfestedShip) +"BH" = (/obj/effect/floor_decal/techfloor,/obj/fire,/obj/fire,/obj/effect/decal/cleanable/generic,/turf/simulated/shuttle/floor/alien,/area/survivalpod/superpose/CrashedInfestedShip) +"Cl" = (/obj/effect/floor_decal/techfloor,/obj/machinery/chemical_dispenser/ert/specialops/abductor{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"Cr" = (/obj/fire,/obj/item/trash/material/circuit,/turf/simulated/floor/airless,/area/survivalpod/superpose/CrashedInfestedShip) +"Cy" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/meter,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"CG" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/fire,/obj/effect/decal/cleanable/generic,/turf/simulated/shuttle/floor/alien,/area/survivalpod/superpose/CrashedInfestedShip) +"CO" = (/turf/template_noop,/area/template_noop) +"CS" = (/obj/effect/floor_decal/techfloor,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"CY" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/CrashedInfestedShip) +"Dg" = (/obj/fire,/obj/machinery/light/poi,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"Dl" = (/obj/random/maintenance/medical,/obj/fire,/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/CrashedInfestedShip) +"Dn" = (/obj/structure/loot_pile/surface/alien/engineering,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"Dv" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"DA" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/item/weapon/cell/device/weapon/recharge/alien/hybrid{pixel_y = -7},/obj/item/weapon/cell/device/weapon/recharge/alien/hybrid{pixel_y = 7},/obj/item/weapon/cell/device/weapon/recharge/alien/hybrid,/obj/structure/table/alien/blue,/turf/simulated/shuttle/floor/alien,/area/survivalpod/superpose/CrashedInfestedShip) +"DF" = (/obj/structure/prop/alien/pod/hybrid,/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/CrashedInfestedShip) +"DG" = (/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"DJ" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/CrashedInfestedShip) +"DK" = (/obj/structure/table/alien/blue,/obj/structure/window/reinforced/survival_pod,/obj/item/weapon/tape_roll,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/CrashedInfestedShip) +"DX" = (/obj/machinery/vending/deluxe_dinner{req_access = null; req_log_access = null},/turf/simulated/shuttle/wall/alien/blue/hard_corner,/area/survivalpod/superpose/CrashedInfestedShip) +"Ee" = (/obj/structure/table/bench/glass,/turf/simulated/floor/carpet/gaycarpet,/area/survivalpod/superpose/CrashedInfestedShip) +"Ej" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/fire,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"El" = (/obj/structure/toilet{dir = 1},/obj/structure/curtain/open/shower/security,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/CrashedInfestedShip) +"Ep" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"EJ" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/random/maintenance/engineering,/obj/fire,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"EM" = (/obj/structure/closet/alien,/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/obj/machinery/light/poi{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"EY" = (/obj/structure/lattice,/turf/template_noop,/area/survivalpod/superpose/CrashedInfestedShip) +"EZ" = (/obj/structure/alien/wall,/turf/template_noop,/area/survivalpod/superpose/CrashedInfestedShip) +"Ff" = (/obj/machinery/door/airlock/alien{req_one_access = null},/turf/template_noop,/area/survivalpod/superpose/CrashedInfestedShip) +"Fm" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/shuttle/floor/alien,/area/survivalpod/superpose/CrashedInfestedShip) +"Fu" = (/obj/random/maintenance/engineering,/turf/simulated/shuttle/floor/alien,/area/survivalpod/superpose/CrashedInfestedShip) +"FU" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"FX" = (/obj/random/maintenance/cargo,/obj/fire,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"FZ" = (/obj/machinery/shower{pixel_y = 16},/obj/structure/curtain/open/shower/security,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/CrashedInfestedShip) +"Gd" = (/obj/fire,/turf/template_noop,/area/survivalpod/superpose/CrashedInfestedShip) +"GH" = (/obj/structure/window/reinforced/survival_pod{dir = 5},/obj/machinery/light/poi{dir = 4},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/CrashedInfestedShip) +"GQ" = (/turf/simulated/shuttle/wall/alien/blue/hard_corner,/area/survivalpod/superpose/CrashedInfestedShip) +"GR" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/fire,/turf/simulated/shuttle/floor/alien,/area/survivalpod/superpose/CrashedInfestedShip) +"Hq" = (/obj/machinery/light/poi{dir = 1},/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/CrashedInfestedShip) +"HX" = (/obj/structure/closet/alien,/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/shuttle/floor/alien,/area/survivalpod/superpose/CrashedInfestedShip) +"Ib" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"Ir" = (/obj/structure/table/alien/blue,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/item/weapon/paper_bin,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen/reagent/paralysis,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/CrashedInfestedShip) +"Is" = (/obj/machinery/light/poi,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"It" = (/obj/machinery/power/rad_collector,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/cyan,/obj/fire,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"II" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; name = "Scrubber to Waste"},/obj/random/maintenance/engineering,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"IO" = (/obj/structure/prop/blackbox/xenofrigate,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/CrashedInfestedShip) +"IW" = (/obj/random/maintenance/engineering,/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/CrashedInfestedShip) +"Jh" = (/obj/fire,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"Jt" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; name = "Scrubber to Waste"},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"JB" = (/obj/effect/floor_decal/techfloor{dir = 6},/obj/structure/bed/chair/bay/comfy/captain{dir = 4},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"JD" = (/obj/structure/cryofeed{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 9},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/CrashedInfestedShip) +"JJ" = (/obj/random/maintenance/engineering,/obj/fire,/obj/fire,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"JW" = (/obj/machinery/media/jukebox/casinojukebox,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/CrashedInfestedShip) +"Kc" = (/turf/simulated/floor/carpet/blue,/area/survivalpod/superpose/CrashedInfestedShip) +"Ko" = (/obj/machinery/power/emitter/gyrotron{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"Kp" = (/obj/random/maintenance/engineering,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"Kq" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/bed/chair/bay/comfy/teal,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"Kx" = (/obj/machinery/light/poi,/turf/simulated/floor/carpet,/area/survivalpod/superpose/CrashedInfestedShip) +"KB" = (/obj/effect/floor_decal/techfloor/corner{dir = 5},/obj/fire,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"KS" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/prop/alien/dispenser,/obj/machinery/light/poi{dir = 8},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"KT" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/fire,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"La" = (/obj/machinery/door/window/survival_pod,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/CrashedInfestedShip) +"LH" = (/obj/fire,/obj/fire,/obj/effect/decal/cleanable/generic,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"LM" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/fire,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"LY" = (/obj/random/maintenance/cargo,/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/CrashedInfestedShip) +"Md" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"Mw" = (/obj/effect/decal/cleanable/generic,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"Nd" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/fire,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"Nm" = (/obj/effect/floor_decal/techfloor{dir = 5},/turf/template_noop,/area/survivalpod/superpose/CrashedInfestedShip) +"ND" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/random/maintenance/engineering,/obj/fire,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"NI" = (/obj/structure/table/alien/blue,/obj/structure/window/reinforced/survival_pod,/obj/item/weapon/clipboard,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/CrashedInfestedShip) +"NJ" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/fire,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"NP" = (/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"NS" = (/obj/effect/floor_decal/techfloor,/obj/fire,/obj/fire,/obj/item/trash/material/metal,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"NY" = (/obj/structure/bed/nest,/turf/simulated/floor/carpet,/area/survivalpod/superpose/CrashedInfestedShip) +"Oj" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/fire,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"OS" = (/obj/structure/closet/crate,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/machinery/light/poi,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"OY" = (/obj/random/maintenance/engineering,/obj/fire,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"Pi" = (/turf/template_noop,/area/survivalpod/superpose/CrashedInfestedShip) +"Pq" = (/obj/machinery/light/poi{dir = 4},/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 8},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"Py" = (/obj/structure/closet/crate,/obj/fiftyspawner/wood,/obj/fiftyspawner/wood,/obj/fiftyspawner/wood/sif,/obj/fiftyspawner/wood/sif,/obj/fiftyspawner/turcarpet,/obj/fiftyspawner/tealcarpet,/obj/fiftyspawner/sblucarpet,/obj/fiftyspawner/purcarpet,/obj/fiftyspawner/oracarpet,/obj/fiftyspawner/blucarpet,/obj/fiftyspawner/marble,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/fiftyspawner/cardboard,/obj/fiftyspawner/cardboard,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"PB" = (/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/CrashedInfestedShip) +"PF" = (/obj/machinery/cryopod{dir = 4},/obj/structure/cryofeed{pixel_x = -32},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"PL" = (/obj/fire,/obj/item/trash/material/circuit,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"PR" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/CrashedInfestedShip) +"PT" = (/obj/machinery/computer/crew{icon = 'icons/obj/abductor_vr.dmi'; icon_screen = null; icon_state = "console-c"},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"Qe" = (/obj/machinery/door/window/survival_pod{dir = 2},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/CrashedInfestedShip) +"Qf" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1; target_pressure = 200},/obj/random/maintenance/engineering,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"Qi" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"Qu" = (/obj/structure/table/alien/blue,/obj/machinery/door/window/brigdoor/northright{dir = 2; req_access = null},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/CrashedInfestedShip) +"QH" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"QT" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/random/maintenance/medical,/obj/fire,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"Re" = (/obj/fire,/obj/item/trash/material/device,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"Rs" = (/obj/fire,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"RC" = (/obj/fire,/obj/fire,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"RT" = (/obj/machinery/atmospherics/pipe/tank/phoron/full,/turf/template_noop,/area/survivalpod/superpose/CrashedInfestedShip) +"RY" = (/obj/effect/floor_decal/techfloor,/obj/fire,/obj/fire,/obj/fire,/obj/effect/decal/cleanable/generic,/turf/simulated/shuttle/floor/alien,/area/survivalpod/superpose/CrashedInfestedShip) +"Sd" = (/obj/machinery/door/airlock/alien{req_one_access = null},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"Sh" = (/obj/fire,/turf/template_noop,/area/template_noop) +"SE" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/random/maintenance/engineering,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"SI" = (/obj/effect/floor_decal/techfloor,/obj/fire,/obj/fire,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"SK" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/machinery/meter,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"SO" = (/obj/structure/table/darkglass,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/CrashedInfestedShip) +"SS" = (/turf/simulated/shuttle/wall/alien/blue,/area/survivalpod/superpose/CrashedInfestedShip) +"SY" = (/obj/effect/floor_decal/techfloor/corner{dir = 10},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"Ta" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/machinery/meter,/obj/fire,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"Ti" = (/obj/effect/floor_decal/techfloor,/obj/structure/bed/chair/bay/comfy/teal{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"Tn" = (/obj/effect/floor_decal/techfloor,/obj/fire,/obj/fire,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"Tr" = (/obj/structure/table/alien/blue,/obj/machinery/door/window/brigdoor/northright{req_access = null},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/CrashedInfestedShip) +"Tx" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/meter,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"TD" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; name = "Scrubber to Waste"},/obj/machinery/light/poi{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"TF" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/cyan,/obj/fire,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"TH" = (/obj/effect/floor_decal/techfloor,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/fire,/obj/effect/decal/cleanable/generic,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"TK" = (/turf/simulated/floor/carpet/gaycarpet,/area/survivalpod/superpose/CrashedInfestedShip) +"TL" = (/obj/effect/floor_decal/techfloor,/obj/fire,/obj/fire,/turf/simulated/shuttle/floor/alien,/area/survivalpod/superpose/CrashedInfestedShip) +"TM" = (/obj/machinery/light/poi{dir = 1},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"Um" = (/turf/simulated/shuttle/floor/white,/area/template_noop) +"Un" = (/obj/structure/closet/alien,/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"Up" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/smes/buildable{icon = 'icons/obj/alien_smes.dmi'; icon_state = "unit"; input_level = 950000; name = "Alien Royal Capacitor"; output_level = 950000},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"Uu" = (/obj/machinery/atmospherics/unary/engine/biggest{dir = 4},/turf/template_noop,/area/template_noop) +"Uy" = (/obj/fire,/obj/machinery/light/poi{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"UH" = (/obj/random/maintenance/engineering,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"UI" = (/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/CrashedInfestedShip) +"US" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"Vk" = (/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"Vq" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/CrashedInfestedShip) +"Vr" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/fire,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"Vu" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/cyan,/obj/random/maintenance/clean,/obj/fire,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"Vw" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/CrashedInfestedShip) +"VF" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 8},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"VL" = (/obj/random/maintenance/medical,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"VP" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"VR" = (/obj/machinery/field_generator{anchored = 1; state = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"VS" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"VV" = (/obj/random/maintenance/cargo,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"Wr" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/light/poi,/obj/effect/decal/cleanable/generic,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"WD" = (/obj/machinery/light/poi{dir = 1},/turf/simulated/floor/carpet/blue,/area/survivalpod/superpose/CrashedInfestedShip) +"WJ" = (/obj/machinery/sleep_console{dir = 4},/obj/machinery/light/poi,/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/CrashedInfestedShip) +"WQ" = (/obj/structure/bed/nest,/turf/simulated/floor/carpet/gaycarpet,/area/survivalpod/superpose/CrashedInfestedShip) +"WT" = (/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"WX" = (/obj/machinery/vending/tool{emagged = 1; req_access = list(777); req_log_access = null},/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/CrashedInfestedShip) +"Xb" = (/obj/structure/closet/secure_closet/egg/xenomorph,/obj/machinery/light/poi{dir = 4},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"Xe" = (/obj/machinery/light/poi{dir = 1},/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/CrashedInfestedShip) +"Xg" = (/obj/machinery/cryopod,/obj/structure/cryofeed{dir = 4; pixel_x = 32},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"Xi" = (/obj/machinery/atmospherics/binary/pump/on{target_pressure = 200},/turf/template_noop,/area/survivalpod/superpose/CrashedInfestedShip) +"Xo" = (/obj/fire,/obj/item/trash/material/metal,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"Xv" = (/turf/simulated/floor/carpet,/area/survivalpod/superpose/CrashedInfestedShip) +"XA" = (/obj/structure/particle_accelerator/fuel_chamber{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"XC" = (/obj/structure/loot_pile/surface/alien/medical,/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/CrashedInfestedShip) +"XF" = (/obj/fire,/obj/fire,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"XJ" = (/obj/random/maintenance/medical,/turf/simulated/shuttle/floor/white,/area/template_noop) +"XY" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"Yi" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/template_noop,/area/survivalpod/superpose/CrashedInfestedShip) +"Yw" = (/obj/structure/alien/wall,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"Yx" = (/obj/structure/alien/membrane,/turf/template_noop,/area/survivalpod/superpose/CrashedInfestedShip) +"YA" = (/obj/structure/closet/alien,/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CrashedInfestedShip) +"YP" = (/obj/machinery/atmospherics/unary/engine/bigger{dir = 4; pixel_x = -3},/turf/template_noop,/area/template_noop) +"Zh" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/filingcabinet/medical,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/CrashedInfestedShip) +"Zl" = (/obj/random/maintenance/clean,/obj/fire,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"Zp" = (/obj/machinery/computer/operating{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"Zq" = (/obj/machinery/power/rad_collector,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/cyan,/turf/simulated/floor,/area/survivalpod/superpose/CrashedInfestedShip) +"ZQ" = (/obj/effect/floor_decal/techfloor{dir = 6},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) +"ZX" = (/obj/fire,/obj/fire,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/CrashedInfestedShip) + +(1,1,1) = {" +COCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOGQSSGQGQEZEZGQGQGQvVjWjWDJGQSSCOCOCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOGQGQGQGQGQGQGQbvbvWTGQGQGQSSCOCOCOCOCOCOCOCOCOCOCOCOWTGQjdjdtKRTAVGQXegzgzgzgzXeGQSSCOCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOWTGQdgbwqeaophdzUpNdTDVFGQWTSSCOGQGQwDGQGQSSCOCOCOYPWTGQkDkDKpXikDKpUISOxTyixTUIJWGQSSCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOWTGQnCntxsTaxsSKzVLMJtPqGQqmWTGQSSWXjinBhwGQPiCOCOCOGQGQoMoMCyoMXYKpVqbObObObOVqVqoIGQCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOUuCOWTGQWTbveErJpOeIgdRCOYbvgWWTbvGQmQLYcPcPcPGQPiPiCOCOCOGQgKOSALVkYAGQVkVkVkIsVkVkVkBdGQSSCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOSSGQmKUSZqVuTFItmHqSmmqSjgOYbmgWIWIWLYcPLYjhGQPiPiwDGQGQGQGQGQgWGQGQGQgWGQGQGQGQGQGQGQGQSSCOCOCOCOCOCOCOCOCOCO +COCOCOGQGQGQGQpiGQvVjWjWjWDJGQCYGQGQJJWTGQufMdMdKqMdZhGQSSHXMwbmvmetBtbNvmiGetvmvmbmbmbmbmTMbmHXSSGQGQnXnXYwCOCOCOCOCOCO +COCOCOmpWTGQSSCSeGfDfDNSCSCSqPCSSSGQvmbvGQGQDKveQuNIGQGQqQPLZXZXvmvmLHLHZXMwMwbmbmbmUHbmbNbmbmbmFuGQoRWTNYGQSSCOCOCOCOCO +COCOCOShbvGQzIzDJhJhwnJhJhsCJhVkFUgWbmZXMwbmbmVVvmFXbmbmbmvmGQGQgWGQGQGQgWGQGQGQgWGQGQGQgWGQGQbmbmgWbmXvcSGQGQwDGQSSCOCO +COCOCObiGdGdzGgmRsJhsCGdPiNPVkiqwKGQgBCSfDTHtXSIbITLRYBHRYSYGQDFqQBEGQUIUIeBGQUIUIeBGQUIUIeBGQbmdNGQbmXvNYGQfmdxPTGQSSCO +COCOCOPiPiPiYiPiPilpEYPizjlpXFNPFUjgkVjqTnjqjqcXgmJhDgNPJhFUGQfAyvJDGQqCKcAjGQqCfckSGQqCXvvgGQbmbmDXbNbmbmGQKSARNmPiEZCO +COCOCObiWTGQZQJhPiGdbcbcbcEYJhVRrLfiBfEpVSexQHQiJhSSSSSSJhrLGQatdSatGQzuruiwGQyijKrIGQyiKxNYGQCSCSGQCSCSCSgWCSzzPitdfiCO +COCOCObiWTGQNPJhPiGdrigtCrPiGdNPvJPRBfiQVkXAdCQiJhxCIOxCJhNPGQGQABGQGQGQGQGQGQGQGQGQGQGQGQGQGQNPNPGQtuDGqbGQjmDGNPVPPRCO +COCOUubiWTGQaJRsNPEYbcririPimtNPASnxBfyYzczcuTQiJhSSSSSSJhASGQkOHqBhGQyisMrIGQzucfWQGQxTWDiwGQjrjrGQasasasgWjrjraJtdnxCO +COCOCOGQGQWTobJhNPEYPiPiEYEYJhNPFUjgKBEjMdMdEjiMspJhUyqENPVrGQuIyPohGQvQfckSGQvQTKEeGQvQKcAjGQbmbmGQWTWTWTGQpCCSJBnvGQCO +COCOCObiWTPiYiJhRsJhPiPiNPNPRsqEwKGQdYNJjbEJNJQTNJlyGRCGsnbpGQDAFmDAGQqLUIeBGQUIUIeBGQUIUIeBGQbmdNGQboWTboGQcByassGQSSCO +COCOCObiWTPizIVRNPJhsCReXoJhjIVkFUgWvmMwvmvmvmisvmbmVLisPLbmGQGQgWGQGQGQgWGQGQGQgWGQGQGQgWGQGQbNvUGQboseXbGQGQwDGQSSCOCO +COCOCObiPiWTSSjrWrjrjrjrjrjrtNjrSSGQvmbmGQGQIrbHTriyGQGQqQPibmvmvmvmvmiGvmisMwMwbmbmbmbmbmbmbmbmPiGQboWTboGQSSCOCOCOCOCO +COCOCOPiPiGQGQpiGQvVjWjWjWDJGQCYGQGQvmbmPiClyIyITiyIUnGQSSdbPiyUMwMwvmZlvmbmrXiGepvmbNbmbmyUbmHXPiEZGQGQGQSSCOCOCOCOCOCO +COCOCOCOCOSSGQKohVuQuQuQuQqohVKohVjgvmbmFfvvDlvvXJXJUmmvPiPidFGQPiPiGQGQgWGQGQGQgWGQGQGQSdGQGQGQYxEZCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOWTGQWTbvkuSESESEffWTWTbvgWbmqQPiXCdeDlvvdeAPGQPiCOCOCOPikNALPyVkEMGQqYVkmTGQnjPBLaFZGQPiCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOWTGQnCrxlJKTlJNDOjzHIIVFGQHXSSPiSSWJpuaHZpWTSSCOCOCOGQPidBAOTxAOgcGQPFFmjZGQPBPBGHGQGQCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOUuCOWTGQdgDntraophdzxlwrACVFWTGQSSCOGQGQDvmyWTSSCOCOCOCOWTPicLcLWTcLQfGQhRqQXgGQQeopVwGQSSCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOGQGQGQGQGQGQWTWTWTWTGQWTWTSSCOCOCOCOCOCOCOCOCOCOCOCOPikUIbIbxGIbIbGQtFyUtFGQElGQGQSSCOCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOGQGQGQWTWTWTGQGQGQGQGQGQGQGQSSCOCOCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCO +"} diff --git a/modular_chomp/maps/submaps/shelters/CrashedQurantineShip-25x17.dmm b/modular_chomp/maps/submaps/shelters/CrashedQurantineShip-25x17.dmm new file mode 100644 index 0000000000..63fe2d50ad --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/CrashedQurantineShip-25x17.dmm @@ -0,0 +1,1380 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/template_noop, +/area/template_noop) +"ab" = ( +/turf/simulated/mineral/floor/ignore_mapgen, +/area/survivalpod/superpose/CrashedQurantineShip) +"ac" = ( +/obj/item/clothing/head/cone, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/survivalpod/superpose/CrashedQurantineShip) +"ad" = ( +/turf/simulated/shuttle/wall, +/area/survivalpod/superpose/CrashedQurantineShip) +"ae" = ( +/obj/item/weapon/tool/crowbar/red, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"af" = ( +/obj/item/trash/chips, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"ag" = ( +/obj/random/maintenance, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"ah" = ( +/obj/machinery/door/blast/regular{ + name = "Cargo Door" + }, +/obj/item/tape/medical{ + dir = 4; + icon_state = "tape_door_0"; + layer = 3.4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"ai" = ( +/obj/item/trash/cigbutt, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"aj" = ( +/obj/machinery/door/airlock/command{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"ak" = ( +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"al" = ( +/obj/structure/sign/biohazard{ + dir = 1 + }, +/turf/simulated/shuttle/wall/hard_corner, +/area/survivalpod/superpose/CrashedQurantineShip) +"am" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"an" = ( +/obj/machinery/vending/snack{ + contraband = null; + products = list(/obj/item/weapon/reagent_containers/food/snacks/candy=0,/obj/item/weapon/reagent_containers/food/drinks/dry_ramen=0,/obj/item/weapon/reagent_containers/food/snacks/chips=0,/obj/item/weapon/reagent_containers/food/snacks/sosjerky=0,/obj/item/weapon/reagent_containers/food/snacks/no_raisin=0,/obj/item/weapon/reagent_containers/food/snacks/packaged/spacetwinkie=0,/obj/item/weapon/reagent_containers/food/snacks/cheesiehonkers=0,/obj/item/weapon/reagent_containers/food/snacks/tastybread=0,/obj/item/weapon/reagent_containers/food/snacks/skrellsnacks=0) + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"ao" = ( +/obj/item/weapon/pickaxe/drill, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"ap" = ( +/obj/effect/decal/remains/xeno, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"aq" = ( +/obj/machinery/button{ + name = "Cargo Hatch" + }, +/turf/simulated/shuttle/wall, +/area/survivalpod/superpose/CrashedQurantineShip) +"ar" = ( +/obj/machinery/computer, +/turf/simulated/shuttle/floor, +/area/survivalpod/superpose/CrashedQurantineShip) +"as" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/decal/cleanable/vomit, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"at" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"au" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"av" = ( +/obj/machinery/door/airlock/engineering{ + icon_state = "door_locked"; + locked = 1; + name = "Cargo Bay" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"aw" = ( +/obj/item/weapon/material/shard, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"ax" = ( +/obj/random/paicard, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"ay" = ( +/obj/effect/decal/remains/human, +/obj/item/clothing/under/mbill{ + desc = "A uniform belonging to Major Bill's Transportation, a shipping megacorporation. This looks at least a few decades out of date."; + name = "\improper old Major Bill's uniform" + }, +/obj/item/clothing/head/soft/mbill{ + desc = "It's a ballcap bearing the colors of Major Bill's Shipping. This one looks at least a few decades out of date."; + name = "old shipping cap" + }, +/turf/simulated/shuttle/floor, +/area/survivalpod/superpose/CrashedQurantineShip) +"az" = ( +/obj/effect/decal/remains/human, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"aA" = ( +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"aB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/shuttle/plating, +/area/survivalpod/superpose/CrashedQurantineShip) +"aC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/shuttle/plating, +/area/survivalpod/superpose/CrashedQurantineShip) +"aD" = ( +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"aE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/shuttle/plating, +/area/survivalpod/superpose/CrashedQurantineShip) +"aF" = ( +/obj/item/clothing/suit/space/emergency, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"aG" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"aH" = ( +/obj/item/trash/candy, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"aI" = ( +/obj/structure/table/rack, +/obj/structure/loot_pile/maint/boxfort, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"aJ" = ( +/obj/structure/table/rack, +/obj/item/weapon/shovel, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"aK" = ( +/obj/structure/closet/crate/secure/science{ + icon_state = "scisecurecrateopen"; + locked = 0; + name = "Virus Samples - FRAGILE"; + opened = 1 + }, +/obj/item/weapon/virusdish/random, +/obj/item/weapon/virusdish/random, +/obj/item/weapon/virusdish/random, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"aL" = ( +/obj/structure/table/standard, +/obj/item/device/taperecorder, +/turf/simulated/shuttle/floor, +/area/survivalpod/superpose/CrashedQurantineShip) +"aM" = ( +/obj/structure/inflatable/door, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/survivalpod/superpose/CrashedQurantineShip) +"aO" = ( +/obj/structure/inflatable, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/survivalpod/superpose/CrashedQurantineShip) +"aP" = ( +/obj/structure/bed/chair, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"aQ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"aR" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"aS" = ( +/obj/structure/bed/chair, +/obj/effect/decal/remains/human, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/soft/mbill{ + desc = "It's a ballcap bearing the colors of Major Bill's Shipping. This one looks at least a few decades out of date."; + name = "old shipping cap" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"aT" = ( +/obj/structure/bed/chair, +/obj/effect/decal/remains/human, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"aU" = ( +/obj/effect/decal/remains/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"aV" = ( +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"aW" = ( +/obj/item/weapon/coin/silver, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"aX" = ( +/obj/effect/decal/remains/human, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"aZ" = ( +/obj/effect/decal/cleanable/generic, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bf" = ( +/obj/item/weapon/tank/emergency/oxygen/engi, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bh" = ( +/obj/item/trash/sosjerky, +/obj/effect/decal/remains/human, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bi" = ( +/obj/effect/decal/remains/human, +/obj/item/clothing/mask/breath, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating, +/area/survivalpod/superpose/CrashedQurantineShip) +"bk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating, +/area/survivalpod/superpose/CrashedQurantineShip) +"bl" = ( +/obj/machinery/button{ + dir = 4; + name = "Cargo Access" + }, +/turf/simulated/shuttle/wall, +/area/survivalpod/superpose/CrashedQurantineShip) +"bm" = ( +/obj/machinery/recharge_station, +/turf/simulated/shuttle/floor, +/area/survivalpod/superpose/CrashedQurantineShip) +"bn" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/effect/decal/cleanable/vomit, +/obj/effect/decal/remains/human, +/turf/simulated/shuttle/floor, +/area/survivalpod/superpose/CrashedQurantineShip) +"bo" = ( +/obj/effect/decal/cleanable/vomit, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bp" = ( +/obj/effect/decal/remains/human, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bq" = ( +/obj/machinery/door/airlock{ + name = "Charge Station" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bs" = ( +/obj/structure/bed/chair, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bt" = ( +/obj/structure/bed/chair, +/obj/effect/decal/remains/human, +/obj/item/clothing/suit/space/emergency, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bu" = ( +/obj/machinery/vending/cola{ + contraband = null; + products = list(/obj/item/weapon/reagent_containers/food/drinks/cans/cola=0,/obj/item/weapon/reagent_containers/food/drinks/cans/space_mountain_wind=0,/obj/item/weapon/reagent_containers/food/drinks/cans/dr_gibb=0,/obj/item/weapon/reagent_containers/food/drinks/cans/starkist=0,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle=0,/obj/item/weapon/reagent_containers/food/drinks/cans/space_up=0,/obj/item/weapon/reagent_containers/food/drinks/cans/iced_tea=0,/obj/item/weapon/reagent_containers/food/drinks/cans/grape_juice=0,/obj/item/weapon/reagent_containers/food/drinks/cans/gingerale=0) + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bv" = ( +/obj/structure/closet/crate, +/obj/fiftyspawner/plasteel, +/obj/fiftyspawner/plasteel, +/obj/fiftyspawner/phoronrglass, +/obj/fiftyspawner/phoronrglass, +/obj/item/stack/material/lead{ + amount = 50 + }, +/obj/item/stack/material/lead{ + amount = 50 + }, +/obj/fiftyspawner/gold, +/obj/fiftyspawner/phoron, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bw" = ( +/obj/item/weapon/storage/backpack/messenger, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/reagent_containers/food/snacks/sosjerky, +/obj/item/weapon/cell/device/hyper, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy, +/obj/item/weapon/flame/lighter/random, +/obj/item/weapon/storage/box/survival/space, +/obj/item/device/radio, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/weapon/reagent_containers/pill/dylovene, +/obj/item/weapon/reagent_containers/pill/dylovene, +/obj/item/device/flashlight/maglight, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/random/soap, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, +/obj/item/device/fbp_backup_cell, +/obj/item/device/pda, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/device/starcaster_news, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/item/device/suit_cooling_unit/emergency, +/obj/item/device/gps, +/obj/structure/closet{ + name = "Survival closet" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bx" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4; + icon_state = "heater" + }, +/turf/simulated/shuttle/plating, +/area/survivalpod/superpose/CrashedQurantineShip) +"by" = ( +/obj/effect/decal/cleanable/generic, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bz" = ( +/obj/item/trash/syndi_cakes, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bA" = ( +/obj/item/trash/cigbutt, +/obj/item/weapon/tank/emergency/oxygen, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bB" = ( +/obj/item/weapon/material/knife/tacknife/boot, +/obj/item/clothing/mask/breath, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bD" = ( +/obj/item/trash/sosjerky, +/obj/item/weapon/storage/box/donut/empty, +/obj/item/weapon/reagent_containers/food/drinks/sillycup, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/plating, +/area/survivalpod/superpose/CrashedQurantineShip) +"bF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/survivalpod/superpose/CrashedQurantineShip) +"bG" = ( +/obj/item/trash/tastybread, +/obj/item/weapon/material/butterfly/boxcutter, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bH" = ( +/obj/structure/prop/blackbox/quarantined_shuttle, +/turf/simulated/shuttle/floor, +/area/survivalpod/superpose/CrashedQurantineShip) +"bI" = ( +/obj/effect/decal/cleanable/vomit, +/obj/effect/decal/cleanable/mucus/mapped, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bJ" = ( +/obj/item/trash/cheesie, +/obj/effect/decal/remains/human, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bL" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/remains/human, +/obj/item/clothing/mask/breath, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bM" = ( +/obj/structure/table/rack, +/obj/item/clothing/head/soft/mbill{ + desc = "It's a ballcap bearing the colors of Major Bill's Shipping. This one looks at least a few decades out of date."; + name = "old shipping cap" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bN" = ( +/obj/effect/decal/cleanable/vomit, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bO" = ( +/obj/item/clothing/head/helmet/space/emergency, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bP" = ( +/obj/item/weapon/virusdish/random, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bQ" = ( +/obj/structure/ore_box, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bR" = ( +/obj/effect/decal/remains/mouse, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bS" = ( +/obj/item/tape/medical{ + icon_state = "tape_v_0" + }, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/survivalpod/superpose/CrashedQurantineShip) +"bT" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/decal/remains/human, +/obj/item/clothing/under/mbill{ + desc = "A uniform belonging to Major Bill's Transportation, a shipping megacorporation. This looks at least a few decades out of date."; + name = "\improper old Major Bill's uniform" + }, +/obj/item/clothing/head/soft/mbill{ + desc = "It's a ballcap bearing the colors of Major Bill's Shipping. This one looks at least a few decades out of date."; + name = "old shipping cap" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bV" = ( +/obj/item/taperoll/medical, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/survivalpod/superpose/CrashedQurantineShip) +"bW" = ( +/obj/effect/decal/remains/human, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bX" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/remains/xeno, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"bY" = ( +/obj/structure/closet/crate, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/survivalpod/superpose/CrashedQurantineShip) +"bZ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/item/weapon/card/id/external{ + desc = "An identification card of some sort. Looks like this one was issued by the Vir Independent Mining Corp."; + name = "VIMC identification card"; + rank = "Miner"; + registered_name = "Nadia Chu" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"ca" = ( +/obj/item/tape/medical{ + dir = 1; + icon_state = "tape_dir_0" + }, +/obj/item/tape/medical{ + dir = 4; + icon_state = "tape_dir_0" + }, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/survivalpod/superpose/CrashedQurantineShip) +"cb" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"cc" = ( +/obj/item/poster, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"cd" = ( +/obj/item/tape/medical{ + icon_state = "tape_h_0" + }, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/survivalpod/superpose/CrashedQurantineShip) +"ce" = ( +/obj/structure/lattice, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/survivalpod/superpose/CrashedQurantineShip) +"cf" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion_l" + }, +/turf/simulated/shuttle/plating, +/area/survivalpod/superpose/CrashedQurantineShip) +"ch" = ( +/turf/simulated/shuttle/wall/hard_corner, +/area/survivalpod/superpose/CrashedQurantineShip) +"cj" = ( +/obj/machinery/door/airlock/external{ + desc = "It opens and closes. It is stamped with the logo of Major Bill's Transportation"; + frequency = 1380; + icon_state = "door_locked"; + id_tag = null; + locked = 1; + name = "MBT-540" + }, +/obj/item/tape/medical{ + dir = 4; + icon_state = "tape_door_0"; + layer = 3.4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/survivalpod/superpose/CrashedQurantineShip) +"ck" = ( +/obj/structure/sign/biohazard, +/turf/simulated/shuttle/wall/hard_corner, +/area/survivalpod/superpose/CrashedQurantineShip) +"cl" = ( +/obj/structure/grille, +/obj/structure/shuttle/window, +/obj/machinery/door/blast/regular{ + dir = 8; + id = "QShuttlePoIDoors"; + layer = 3.3; + name = "Emergency Lockdown Shutters" + }, +/obj/item/tape/medical{ + dir = 4; + icon_state = "tape_door_0"; + layer = 3.4 + }, +/turf/simulated/shuttle/plating, +/area/survivalpod/superpose/CrashedQurantineShip) +"cm" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/iron, +/area/survivalpod/superpose/CrashedQurantineShip) +"cn" = ( +/obj/structure/sign/kiddieplaque{ + desc = "By order of the S.D.D.C, this site or craft is to be buried and not disturbed until such time that sterility can be confirmed. Dated: 20/12/2491 "; + name = "\improper Sif Department of Disease Control notice" + }, +/turf/simulated/wall/iron, +/area/survivalpod/superpose/CrashedQurantineShip) +"hs" = ( +/obj/item/bodybag, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/survivalpod/superpose/CrashedQurantineShip) +"hJ" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/bodybags, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/survivalpod/superpose/CrashedQurantineShip) +"jX" = ( +/obj/structure/table/steel, +/obj/item/weapon/tool/crowbar/power, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/survivalpod/superpose/CrashedQurantineShip) +"ky" = ( +/obj/structure/closet/crate/medical, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/survivalpod/superpose/CrashedQurantineShip) +"vi" = ( +/obj/structure/table/steel, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/survivalpod/superpose/CrashedQurantineShip) +"Ll" = ( +/obj/structure/sign/warning, +/turf/simulated/wall/iron, +/area/survivalpod/superpose/CrashedQurantineShip) +"Lm" = ( +/obj/structure/table/steel, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; + name = "Chemistry Cleaner" + }, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/survivalpod/superpose/CrashedQurantineShip) +"MX" = ( +/obj/structure/table/steel, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/survivalpod/superpose/CrashedQurantineShip) +"Pl" = ( +/obj/structure/dispenser/oxygen, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/survivalpod/superpose/CrashedQurantineShip) +"TE" = ( +/obj/structure/table/rack, +/obj/item/clothing/head/bio_hood, +/obj/item/clothing/suit/bio_suit, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/survivalpod/superpose/CrashedQurantineShip) +"UU" = ( +/obj/item/weapon/reagent_containers/syringe/antiviral, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/survivalpod/superpose/CrashedQurantineShip) +"WS" = ( +/obj/item/weapon/weldingtool/largetank, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/survivalpod/superpose/CrashedQurantineShip) +"Xh" = ( +/obj/structure/table/steel, +/obj/item/clothing/suit/bio_suit, +/obj/random/medical/lite, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/survivalpod/superpose/CrashedQurantineShip) +"Yj" = ( +/obj/structure/closet/l3closet/virology, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/survivalpod/superpose/CrashedQurantineShip) + +(1,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +aa +aa +aa +aa +"} +(2,1,1) = {" +aa +aa +ab +ac +ab +aa +aa +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +"} +(3,1,1) = {" +aa +aa +ab +ab +ab +ad +cl +cl +cl +ad +ab +ac +ab +ab +ab +ac +aa +"} +(4,1,1) = {" +aa +aa +ab +ab +ad +ad +ar +ay +ar +ad +ad +ab +ab +ab +ab +ab +ab +"} +(5,1,1) = {" +aa +aa +ab +ad +ad +ad +as +ai +bT +ad +ad +ad +bS +ca +ab +ab +ab +"} +(6,1,1) = {" +aa +aa +ab +cl +bn +ad +bH +ai +aL +ad +bm +cl +ab +cd +ab +Pl +ky +"} +(7,1,1) = {" +aa +aa +aO +ch +am +ad +ad +aj +ad +ad +bq +ch +aO +cd +ab +vi +vi +"} +(8,1,1) = {" +aa +aa +aM +cj +bo +aD +bJ +ak +ae +bW +bG +cj +aO +cd +ab +MX +ab +"} +(9,1,1) = {" +aa +aa +aO +cj +bp +by +bU +az +af +aW +bI +cj +aM +cd +ab +Lm +ab +"} +(10,1,1) = {" +aa +aa +aO +al +ad +ap +at +ad +aP +aA +ad +ck +aO +cd +ab +jX +ab +"} +(11,1,1) = {" +aa +aa +ab +cl +bs +bz +bL +aB +aR +aX +bX +cl +ab +cd +ce +TE +ab +"} +(12,1,1) = {" +aa +aa +aa +ad +bs +aA +aQ +aC +aS +aA +aQ +ad +ab +cd +cm +ab +ab +"} +(13,1,1) = {" +aa +aa +aa +cl +bt +bA +aQ +aE +aT +aZ +bZ +cl +ab +cd +cn +ab +ab +"} +(14,1,1) = {" +aa +aa +ab +ad +ad +bB +au +ad +aP +bf +ad +ad +ab +cd +Ll +WS +ab +"} +(15,1,1) = {" +aa +ab +ab +ad +an +bW +bN +aF +bU +bh +cb +ad +bV +cd +hs +ab +ab +"} +(16,1,1) = {" +aa +ac +ab +ad +bu +bD +bO +aH +aU +bi +bM +ad +ab +cd +hs +hs +aa +"} +(17,1,1) = {" +aa +ab +ab +ad +ad +ad +av +ad +av +ad +ad +ad +ab +cd +hs +hs +aa +"} +(18,1,1) = {" +aa +ab +ab +ad +bv +bE +bP +aI +aV +bj +bQ +ad +ab +cd +ab +ab +aa +"} +(19,1,1) = {" +aa +aa +ab +ad +ao +aG +aA +aA +aA +aG +cc +ad +ab +cd +hJ +ab +aa +"} +(20,1,1) = {" +aa +aa +ab +ad +bw +bF +aw +aJ +bR +bk +aA +ad +bY +cd +Xh +ab +aa +"} +(21,1,1) = {" +aa +ad +ad +ad +ad +ad +ax +aA +bP +ad +ad +ad +ad +ad +Yj +ab +ab +"} +(22,1,1) = {" +aa +ad +bx +ad +bx +aq +aA +aK +ag +ad +bx +ad +bx +ad +ab +ab +ab +"} +(23,1,1) = {" +ab +ad +cf +ad +cf +ad +ah +ah +ah +bl +cf +ad +cf +ad +UU +ab +ac +"} +(24,1,1) = {" +ab +ac +ab +aa +aa +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +"} +(25,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/modular_chomp/maps/submaps/shelters/CultShip-28x17.dmm b/modular_chomp/maps/submaps/shelters/CultShip-28x17.dmm new file mode 100644 index 0000000000..e771450dba --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/CultShip-28x17.dmm @@ -0,0 +1,107 @@ +"aw" = (/turf/simulated/wall/cult,/area/survivalpod/superpose/CultShip) +"aP" = (/obj/structure/table/fancyblack,/obj/item/weapon/book/tome/imbued,/obj/item/weapon/digestion_remains/skull/unathi,/obj/item/device/soulstone,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CultShip) +"be" = (/obj/structure/cult/pylon,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/CultShip) +"bq" = (/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CultShip) +"bW" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"cH" = (/obj/effect/floor_decal/techfloor{dir = 6},/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"dJ" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/survivalpod/superpose/CultShip) +"eP" = (/obj/effect/floor_decal/techfloor,/obj/machinery/porta_turret/alien{faction = "neutral"},/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"fd" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/hosdouble,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CultShip) +"fw" = (/obj/machinery/light/floortube/flicker{dir = 8; pixel_x = -3},/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"fZ" = (/obj/item/clothing/shoes/cult,/obj/item/clothing/suit/cultrobes/alt,/obj/item/clothing/head/helmet/space/cult,/obj/structure/table/fancyblack,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/CultShip) +"gU" = (/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/survivalpod/superpose/CultShip) +"he" = (/obj/structure/cult/pylon,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/CultShip) +"iz" = (/obj/machinery/porta_turret/alien{faction = "neutral"},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/CultShip) +"jq" = (/obj/effect/floor_decal/techfloor,/obj/machinery/light/floortube/flicker{pixel_y = 13},/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"js" = (/obj/effect/floor_decal/techfloor/corner{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/CultShip) +"jv" = (/obj/structure/cult/talisman,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/CultShip) +"jO" = (/obj/effect/catwalk_plated/white,/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/survivalpod/superpose/CultShip) +"kf" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/survivalpod/superpose/CultShip) +"kT" = (/obj/structure/bed/chair/bay/comfy/purple{dir = 8},/obj/effect/floor_decal/techfloor{dir = 9},/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"mT" = (/obj/structure/toilet/prison{name = "toilet"; pixel_y = 10},/obj/structure/window/reinforced/survival_pod{dir = 4; opacity = 1},/obj/structure/curtain/open/shower/security,/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"nj" = (/obj/machinery/light/floortube/flicker{dir = 8; pixel_x = 5},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/CultShip) +"nq" = (/obj/item/weapon/melee/cultblade,/obj/structure/table/fancyblack,/obj/item/device/soulstone,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/CultShip) +"oY" = (/obj/structure/cult/talisman,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/CultShip) +"py" = (/obj/machinery/door/airlock/phoron,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CultShip) +"pJ" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/CultShip) +"rC" = (/obj/structure/constructshell/cult,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/CultShip) +"us" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CultShip) +"vf" = (/turf/simulated/wall/phoron,/area/survivalpod/superpose/CultShip) +"vl" = (/obj/machinery/light/floortube/flicker{pixel_y = 5},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CultShip) +"vG" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/CultShip) +"vX" = (/obj/structure/curtain/open/shower/security,/obj/machinery/shower{pixel_y = 20},/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"wl" = (/obj/effect/floor_decal/techfloor/corner,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/CultShip) +"xg" = (/obj/effect/floor_decal/techfloor,/obj/structure/cult/forge,/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"xh" = (/obj/item/clothing/shoes/cult,/obj/item/clothing/suit/cultrobes/alt,/obj/item/clothing/head/helmet/space/cult,/obj/structure/table/fancyblack,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/CultShip) +"xq" = (/obj/effect/catwalk_plated/dark,/obj/machinery/pointdefense,/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"yi" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/porta_turret/alien{faction = "neutral"},/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"ym" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/survivalpod/superpose/CultShip) +"yq" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/survivalpod/superpose/CultShip) +"yE" = (/obj/structure/table/marble{color = "#B03A2E"},/obj/random/soap{pixel_y = 5},/obj/random/soap,/obj/item/weapon/towel/random{pixel_y = 4},/obj/item/weapon/towel/random{pixel_y = 4},/obj/item/weapon/towel/random{pixel_y = 8},/obj/item/weapon/towel/random{pixel_y = 8},/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"Ai" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/light/floortube/flicker{pixel_y = -3},/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"Bw" = (/obj/structure/bed/chair/wood/wings{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CultShip) +"BV" = (/obj/item/weapon/storage/backpack/cultpack,/obj/structure/table/fancyblack,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/CultShip) +"CY" = (/obj/machinery/porta_turret/alien/destroyed,/obj/effect/catwalk_plated/white,/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"De" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"Dz" = (/obj/structure/bed/chair/wood/wings{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/CultShip) +"EA" = (/obj/structure/cult/tome,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/CultShip) +"Ff" = (/obj/effect/catwalk_plated/white,/obj/machinery/pointdefense,/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"Fw" = (/obj/machinery/porta_turret/alien{faction = "neutral"},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/CultShip) +"HF" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"II" = (/obj/effect/floor_decal/techfloor{dir = 5},/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"IX" = (/obj/structure/simple_door/cult,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CultShip) +"Kj" = (/obj/structure/closet/cabinet,/obj/random/curseditem,/obj/random/curseditem,/obj/item/weapon/melee/cursedblade,/obj/item/weapon/melee/cultblade,/obj/item/weapon/beartrap/hunting,/obj/item/weapon/beartrap/hunting,/obj/item/stack/material/phoron{amount = 25},/obj/item/stack/material/phoron{amount = 25},/obj/item/device/soulstone,/obj/item/device/soulstone,/obj/item/weapon/storage/belt/soulstone/full,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CultShip) +"Kq" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"Kt" = (/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/structure/table/rack/shelf/steel,/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"KV" = (/obj/machinery/atmospherics/unary/engine/biggest{dir = 8},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/survivalpod/superpose/CultShip) +"Ln" = (/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"LR" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/light/floortube/flicker{dir = 8; pixel_x = -3},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/CultShip) +"Md" = (/obj/machinery/porta_turret/alien/destroyed,/obj/effect/catwalk_plated/dark,/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"Mg" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/CultShip) +"Mh" = (/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/CultShip) +"Mo" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/CultShip) +"MH" = (/obj/structure/bed/chair/wood/wings{dir = 4},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/CultShip) +"Nl" = (/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/CultShip) +"NH" = (/obj/machinery/power/smes/buildable{icon = 'icons/obj/alien_smes.dmi'; icon_state = "unit"; input_level = 950000; name = "Alien Royal Capacitor"; output_level = 950000},/obj/effect/floor_decal/techfloor{dir = 5},/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"NJ" = (/obj/item/weapon/material/knife/ritual,/obj/structure/table/fancyblack,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/CultShip) +"NQ" = (/obj/effect/catwalk_plated/dark,/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/survivalpod/superpose/CultShip) +"Oh" = (/obj/structure/salvageable/console_os{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/CultShip) +"Op" = (/obj/structure/constructshell/cult,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/CultShip) +"ON" = (/obj/structure/salvageable/computer,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/CultShip) +"OU" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{dir = 8; pixel_x = 25},/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"Pi" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 4},/turf/simulated/floor/redgrid/animated,/area/survivalpod/superpose/CultShip) +"PR" = (/turf/simulated/floor/redgrid/animated,/area/survivalpod/superpose/CultShip) +"Qh" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/survivalpod/superpose/CultShip) +"UE" = (/obj/structure/bed/chair/bay/comfy/purple{dir = 8},/obj/effect/floor_decal/techfloor{dir = 10},/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"UG" = (/turf/template_noop,/area/template_noop) +"VA" = (/obj/effect/floor_decal/emblem/black,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CultShip) +"VL" = (/obj/effect/floor_decal/techfloor/corner,/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"Wd" = (/obj/structure/simple_door/cult,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/CultShip) +"Wm" = (/obj/effect/floor_decal/techfloor{dir = 6},/obj/machinery/power/smes/buildable{icon = 'icons/obj/alien_smes.dmi'; icon_state = "unit"; input_level = 950000; name = "Alien Royal Capacitor"; output_level = 950000},/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"WT" = (/obj/structure/table/fancyblack,/obj/item/weapon/flame/candle/candelabra/everburn{pixel_y = 8},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/CultShip) +"Xw" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/survivalpod/superpose/CultShip) +"Yl" = (/obj/effect/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/cult,/area/survivalpod/superpose/CultShip) +"Yu" = (/obj/machinery/door/airlock/phoron,/obj/structure/fans/hardlight/colorable/abductor,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/CultShip) +"YN" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/power/apc/alarms_hidden{dir = 1; pixel_y = 20},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/CultShip) +"YO" = (/obj/structure/cult/talisman,/obj/item/device/soulstone,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/CultShip) +"ZJ" = (/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/survivalpod/superpose/CultShip) + +(1,1,1) = {" +UGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUG +UGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGCYawawawUGUGUG +UGUGUGUGUGUGUGUGUGUGUGUGUGUGvfawyqkfQhawawawawZJZJUGUGUG +UGUGUGUGUGUGUGUGUGxqawyqkfQhawbeNlMhizawYNKtawZJZJUGUGUG +UGUGUGUGUGvfawYuawawawxhfZxhMhNlMhNlwlIXMgPRawKVZJUGUGUG +UGMdawyqQhawpJnjawFwNlMhNlVLHFHFjqHFWmawLRgUawNQjONQUGUG +UGawawjvheawvGnjawNlOpNlOpDeawawyqQhawawMgPiawawawjOUGUG +UGymOhUEePawawYuawHFHFHFHFcHawKjbqbqfdawMoxgvfawZJZJUGUG +UGdJONvlbqWdbqvlbqVAvlbqvlbqpybqbqbqWTawvlusvfawZJZJUGUG +UGXwOhkTyiawbWbWbWbWbWbWbWIIawBwaPbqfdawawawvfawKVZJUGUG +UGawawoYbeawNlMhNlMhrCMhrCDeawawyqQhawawmTvXawawawNQUGUG +UGCYawyqQhawMHEAYODzMhNlMhYlbWbWAibWNHawfwLnawjONQjOUGUG +UGUGUGUGUGvfawawawawawnqBVNJNlMhNlMhjsIXLnOUawZJZJUGUGUG +UGUGUGUGUGUGUGUGUGFfawyqkfQhawheMhNlFwawKqyEawZJZJUGUGUG +UGUGUGUGUGUGUGUGUGUGUGUGUGUGvfawyqkfQhawawawawKVZJUGUGUG +UGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGMdawawawUGUGUG +UGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUGUG +"} diff --git a/modular_chomp/maps/submaps/shelters/DemonPool-21x21.dmm b/modular_chomp/maps/submaps/shelters/DemonPool-21x21.dmm new file mode 100644 index 0000000000..241ed36fb4 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/DemonPool-21x21.dmm @@ -0,0 +1,77 @@ +"aq" = (/obj/structure/grille/broken/cult,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/DemonPool) +"fb" = (/obj/structure/table/hardwoodtable,/obj/item/weapon/flame/candle/candelabra/everburn{pixel_y = 8},/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPool) +"fv" = (/obj/structure/bed/chair/wood/wings{dir = 8},/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPool) +"hg" = (/obj/structure/simple_door/sandstone{color = "#D35400"},/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPool) +"hP" = (/obj/fire,/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPool) +"kL" = (/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/survivalpod/superpose/DemonPool) +"kM" = (/turf/simulated/wall/cult,/area/survivalpod/superpose/DemonPool) +"ok" = (/obj/structure/bed/chair/wood/wings{dir = 4},/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPool) +"ot" = (/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/obj/structure/closet{name = "Survival closet"},/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/DemonPool) +"oD" = (/turf/simulated/floor/lava/outdoors,/area/survivalpod/superpose/DemonPool) +"oT" = (/mob/living/simple_mob/vore/demonAI{faction = "neutral"},/turf/simulated/floor/gorefloor,/area/survivalpod/superpose/DemonPool) +"pi" = (/turf/simulated/gore,/area/survivalpod/superpose/DemonPool) +"qR" = (/obj/structure/grille/cult,/turf/simulated/floor/gorefloor,/area/survivalpod/superpose/DemonPool) +"ra" = (/obj/fire,/mob/living/simple_mob/vore/demonAI/lutra{faction = "neutral"},/turf/simulated/floor/gorefloor,/area/survivalpod/superpose/DemonPool) +"rx" = (/obj/fire,/turf/simulated/floor/gorefloor,/area/survivalpod/superpose/DemonPool) +"sn" = (/obj/structure/grille/cult,/obj/structure/bonfire/permanent,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/DemonPool) +"tU" = (/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/DemonPool) +"wH" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8; icon_state = "pwindow"},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/survivalpod/superpose/DemonPool) +"xx" = (/mob/living/simple_mob/vore/demonAI/wendigo{faction = "neutral"},/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPool) +"yi" = (/obj/structure/bed/chair/bay/chair/padded/red/bignest,/turf/simulated/floor/wood/alt/tile,/area/survivalpod/superpose/DemonPool) +"zf" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8; icon_state = "pwindow"},/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/survivalpod/superpose/DemonPool) +"zp" = (/turf/simulated/floor/gorefloor,/area/survivalpod/superpose/DemonPool) +"By" = (/obj/fire,/obj/fire,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/DemonPool) +"BE" = (/obj/structure/grille/broken/cult,/obj/fire,/turf/template_noop,/area/survivalpod/superpose/DemonPool) +"CF" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/survivalpod/superpose/DemonPool) +"DW" = (/turf/simulated/goreeyes,/area/survivalpod/superpose/DemonPool) +"Eb" = (/obj/structure/closet/crate,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/turf/simulated/floor/gorefloor,/area/survivalpod/superpose/DemonPool) +"Gf" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/hosdouble,/turf/simulated/floor/wood/alt/tile,/area/survivalpod/superpose/DemonPool) +"HR" = (/obj/effect/gateway,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/DemonPool) +"Ie" = (/obj/fire,/obj/fire,/turf/simulated/floor/lava/outdoors,/area/survivalpod/superpose/DemonPool) +"Ig" = (/obj/structure/cult/forge,/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPool) +"In" = (/obj/structure/cult/pylon,/turf/simulated/floor/wood/alt/tile,/area/survivalpod/superpose/DemonPool) +"It" = (/mob/living/simple_mob/vore/demonAI/covern{faction = "neutral"},/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/DemonPool) +"IQ" = (/obj/structure/constructshell/cult,/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPool) +"KC" = (/obj/structure/cult/tome,/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPool) +"KM" = (/obj/structure/grille/cult,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/DemonPool) +"KS" = (/obj/fire,/turf/simulated/floor/lava/outdoors,/area/survivalpod/superpose/DemonPool) +"Lp" = (/obj/structure/grille/broken/cult,/turf/simulated/floor/gorefloor,/area/survivalpod/superpose/DemonPool) +"NU" = (/obj/fire,/obj/fire,/turf/simulated/floor/gorefloor,/area/survivalpod/superpose/DemonPool) +"OC" = (/obj/structure/table/marble{color = "#B03A2E"},/obj/item/clothing/shoes/cult,/obj/item/clothing/suit/cultrobes/alt,/obj/item/clothing/head/helmet/space/cult,/obj/item/device/soulstone,/turf/simulated/floor/wood/alt/tile,/area/survivalpod/superpose/DemonPool) +"Qs" = (/obj/structure/bed/chair/wood/wings{dir = 1},/turf/simulated/floor/wood/alt/tile,/area/survivalpod/superpose/DemonPool) +"Rj" = (/obj/structure/table/marble{color = "#B03A2E"},/obj/item/clothing/suit/cultrobes/alt,/obj/item/clothing/head/helmet/space/cult,/obj/item/clothing/shoes/cult,/obj/item/device/soulstone,/turf/simulated/floor/wood/alt/tile,/area/survivalpod/superpose/DemonPool) +"Ru" = (/turf/simulated/floor/wood/alt/tile,/area/survivalpod/superpose/DemonPool) +"Rz" = (/obj/structure/cult/talisman,/obj/item/weapon/melee/cultblade,/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPool) +"RL" = (/mob/living/simple_mob/vore/demonAI/engorge{evasion = 1; health = 750; projectilesound = 'sound/weapons/taser2.ogg'; projectiletype = /obj/item/projectile/beam/stun/electric_spider; size_multiplier = 3; faction = "neutral"},/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPool) +"RR" = (/obj/structure/grille/broken/cult,/turf/template_noop,/area/survivalpod/superpose/DemonPool) +"RW" = (/obj/structure/grille/cult,/turf/template_noop,/area/survivalpod/superpose/DemonPool) +"Sp" = (/obj/effect/gateway,/turf/simulated/floor/gorefloor,/area/survivalpod/superpose/DemonPool) +"Tl" = (/turf/template_noop,/area/survivalpod/superpose/DemonPool) +"VK" = (/obj/fire,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/DemonPool) +"VV" = (/obj/fire,/turf/template_noop,/area/survivalpod/superpose/DemonPool) +"We" = (/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPool) +"XD" = (/obj/structure/table/hardwoodtable,/obj/item/weapon/reagent_containers/food/snacks/sliceable/braincake,/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPool) + +(1,1,1) = {" +TlTlTltUTltUTltUTlTlTlTlTltUTlTlTlTlTlTlTl +tUVKTlDWpipipipiKMpiDWtUTlTlTltUTlVVTlTlTl +TlVKVVtUtUTlzpzpzppipiKMpipipiaqDWBEtUtUTl +TlTlKMVKVKVKrxrxrxrxrxzpoDoDtUtUpiVKpiTlTl +VVVKaqzpVKhPhPByVKVKtUzpKSKSVKtUTlVKpitUTl +VVVKKMzprxoTzptUzpIQWezprxzptUItVKVKpitUTl +TlVVaqtUrxpipikMpikMkMpipipiKMWehPVKpiTltU +TlVVLptUVKzpkMOCRuGfkMyiInpiHRzpVKVKDWtUTl +tUtUzppirxEbkMQsRuInkMRuRjkMWepiVKVKDWTlTl +TltUqRKSsnzpkMDWhgkMpihgkMkMzpDWsnVKpiTlDW +TlpipiIeKSWezfWekLWeRLkLWehgWetUtUVKpitUpi +TlDWpihPWeSpkMokXDfbfvRzKCkMWeoDtUtURRtUTl +tUtUtUWezppipikMwHCFkMkMkMDWIQtUzptUKMtUTl +TltUKMVKrapiDWzpoDoDzpotIgkMzprxVKzppitUTl +tUTlaqrxrxzptUzpoDoDWexxtUtUrxByVKTlpiTltU +TlTlqRtUrxrxzpVKVKVKrxVKrxVKNUVKzpTlpitUTl +pitUKMtUTlzpzpByByVKpipitUVKVKtUzpzppiTlTl +TlpipiTltUVKVKByVKBypiDWtUzpzpzpTlpiDWTlTl +TlDWpiRWRRVVVVVVTltUTlTlLpaqqRqRpiTlTltUTl +TlTlTlTlpipipipipitUtUtUtUtUTlTlTlTlTlTlTl +TlTlTlTlTlTlTlTlTltUTlTlTlTlTlTlTlTlTlTlTl +"} diff --git a/modular_chomp/maps/submaps/shelters/Dinner-25x25.dmm b/modular_chomp/maps/submaps/shelters/Dinner-25x25.dmm new file mode 100644 index 0000000000..d1fe2a4dcf --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/Dinner-25x25.dmm @@ -0,0 +1,1257 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/template_noop, +/area/template_noop) +"ab" = ( +/turf/template_noop, +/area/survivalpod/superpose/Dinner) +"ac" = ( +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/Dinner) +"ad" = ( +/turf/simulated/wall, +/area/survivalpod/superpose/Dinner) +"ae" = ( +/obj/structure/window/reinforced/full, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"af" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"ag" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"ah" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"ai" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/obj/item/weapon/reagent_containers/glass/beaker, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"aj" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/material/knife/butch, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"ak" = ( +/obj/machinery/vending/hotfood, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"al" = ( +/obj/machinery/vending/dinnerware, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"am" = ( +/obj/structure/sink/kitchen, +/turf/simulated/wall, +/area/survivalpod/superpose/Dinner) +"an" = ( +/obj/structure/flora/tree/sif, +/turf/template_noop, +/area/survivalpod/superpose/Dinner) +"ao" = ( +/obj/structure/bed/chair/wood, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"ap" = ( +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"aq" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"ar" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker, +/obj/item/weapon/material/kitchen/utensil/fork, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"as" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"at" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"au" = ( +/obj/structure/table/standard, +/obj/item/weapon/book/manual/chef_recipes, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"av" = ( +/obj/structure/table/standard, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"aw" = ( +/obj/machinery/appliance/mixer/cereal, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"ax" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"ay" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/reagent_containers/food/drinks/bottle/milk, +/obj/item/weapon/reagent_containers/food/drinks/bottle/milk, +/obj/item/weapon/reagent_containers/food/drinks/bottle/milk, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cream, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cream, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cream, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cream, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"az" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"aA" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/tiled, +/area/survivalpod/superpose/Dinner) +"aB" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/Dinner) +"aC" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/item/weapon/material/kitchen/utensil/fork, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"aD" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"aE" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"aF" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"aG" = ( +/turf/simulated/floor/tiled, +/area/survivalpod/superpose/Dinner) +"aH" = ( +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/Dinner) +"aI" = ( +/obj/structure/closet/crate/freezer, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/Dinner) +"aJ" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker, +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"aK" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"aL" = ( +/obj/machinery/light/small{ + brightness_color = "#DA0205"; + brightness_power = 1; + brightness_range = 5; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/survivalpod/superpose/Dinner) +"aM" = ( +/obj/machinery/light/small{ + brightness_color = "#DA0205"; + brightness_power = 1; + brightness_range = 5; + dir = 8 + }, +/obj/structure/kitchenspike, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/Dinner) +"aN" = ( +/obj/structure/closet/crate/freezer, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/Dinner) +"aO" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill, +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"aP" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/table/standard, +/obj/machinery/microwave, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"aQ" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/Dinner) +"aR" = ( +/obj/machinery/gibber, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/Dinner) +"aS" = ( +/obj/structure/table/standard, +/obj/item/weapon/module/power_control, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"aT" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/coatrack, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"aU" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/appliance/cooker/oven, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"aV" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/Dinner) +"aW" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"aX" = ( +/obj/machinery/appliance/cooker/fryer, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"aZ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/Dinner) +"ba" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"bb" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/appliance/cooker/grill, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"bc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/survivalpod/superpose/Dinner) +"bd" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor, +/area/survivalpod/superpose/Dinner) +"be" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/appliance/mixer/cereal, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"bf" = ( +/obj/machinery/light/small, +/obj/structure/table/standard, +/obj/item/weapon/bikehorn/fluff/chew_ire, +/turf/simulated/floor, +/area/survivalpod/superpose/Dinner) +"bg" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/reagent_containers/food/drinks/bottle/orangejuice, +/obj/item/weapon/reagent_containers/food/drinks/bottle/orangejuice, +/obj/item/weapon/reagent_containers/food/drinks/bottle/orangejuice, +/obj/item/weapon/reagent_containers/food/drinks/bottle/orangejuice, +/obj/item/weapon/reagent_containers/food/drinks/bottle/orangejuice, +/obj/item/weapon/reagent_containers/food/drinks/bottle/milk, +/obj/item/weapon/reagent_containers/food/drinks/bottle/milk, +/obj/item/weapon/reagent_containers/food/drinks/bottle/milk, +/obj/item/weapon/reagent_containers/food/drinks/bottle/milk, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cream, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cream, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"bh" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/bar_coffee{ + dir = 8; + pixel_y = 0; + pixel_x = 4 + }, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"bi" = ( +/obj/item/frame/apc, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/Dinner) +"bj" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/Dinner) +"bk" = ( +/obj/structure/bed/chair/office/light, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/Dinner) +"bl" = ( +/turf/simulated/floor/lino, +/area/survivalpod/superpose/Dinner) +"bm" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/Dinner) +"bn" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/cell/high, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/Dinner) +"bo" = ( +/obj/structure/table/woodentable, +/obj/random/mug, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/Dinner) +"bp" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/Dinner) +"bq" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/Dinner) +"br" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/windoor_assembly{ + dir = 2 + }, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"bs" = ( +/obj/structure/bookcase, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/Dinner) +"bt" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/space_heater, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"bu" = ( +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"bv" = ( +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/Dinner) +"bw" = ( +/obj/structure/toilet/prison{ + name = "toilet"; + pixel_y = 10 + }, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 4 + }, +/obj/structure/curtain/black{ + icon_state = "open"; + layer = 2; + name = "privacy curtain"; + opacity = 0; + dir = 2 + }, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/Dinner) +"bx" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"by" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"bz" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/Dinner) +"bA" = ( +/obj/structure/mirror{ + dir = 4; + pixel_x = -32 + }, +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/obj/structure/mirror{ + dir = 1; + pixel_y = -27 + }, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/Dinner) +"bB" = ( +/obj/machinery/light/small, +/obj/structure/table/standard, +/obj/random/soap, +/obj/random/soap{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/Dinner) +"bC" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/obj/structure/mirror{ + dir = 1; + pixel_y = -27 + }, +/turf/simulated/floor/tiled/hydro, +/area/survivalpod/superpose/Dinner) +"dQ" = ( +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/lino, +/area/survivalpod/superpose/Dinner) +"gw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor, +/area/survivalpod/superpose/Dinner) +"hm" = ( +/obj/machinery/power/port_gen/pacman, +/turf/simulated/floor, +/area/survivalpod/superpose/Dinner) +"lo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/survivalpod/superpose/Dinner) +"lT" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"qd" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/chem_master/condimaster, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"wn" = ( +/obj/item/weapon/reagent_containers/food/snacks/chip/nacho/guac, +/turf/simulated/floor, +/area/survivalpod/superpose/Dinner) +"KP" = ( +/obj/item/stack/cable_coil, +/turf/simulated/floor/tiled, +/area/survivalpod/superpose/Dinner) +"Lj" = ( +/turf/simulated/floor, +/area/survivalpod/superpose/Dinner) +"Nb" = ( +/obj/structure/table/steel, +/obj/item/stack/material/phoron{ + amount = 5 + }, +/obj/item/stack/material/phoron{ + amount = 5 + }, +/obj/fiftyspawner/wood, +/obj/fiftyspawner/steel, +/turf/simulated/floor, +/area/survivalpod/superpose/Dinner) +"Ql" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/Dinner) +"WB" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/Dinner) +"XK" = ( +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/Dinner) +"Zv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/mopbucket, +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/simulated/floor, +/area/survivalpod/superpose/Dinner) + +(1,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +an +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(3,1,1) = {" +aa +ab +ab +an +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +an +ab +aa +"} +(4,1,1) = {" +aa +ab +ab +ac +ac +ac +ac +ac +ac +ab +ac +ac +ac +ac +ac +ac +ab +ac +ac +ac +ac +ab +ab +ab +aa +"} +(5,1,1) = {" +aa +ac +ac +ab +ac +ac +ab +ac +ac +ab +ac +ac +ac +ac +ac +ac +ac +ab +ac +ac +ab +ac +ab +ab +aa +"} +(6,1,1) = {" +aa +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +aZ +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +aa +"} +(7,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ab +ab +ad +az +az +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(8,1,1) = {" +aa +ab +ab +ab +ad +ad +ae +ae +ae +ad +ap +ap +ad +ae +ae +ae +ad +ae +ae +ae +ad +ab +ab +ab +aa +"} +(9,1,1) = {" +aa +ab +ab +ad +ad +af +ao +aC +ax +ad +ap +aW +ad +ao +aC +ax +ao +aC +ax +af +ad +ad +ab +ab +aa +"} +(10,1,1) = {" +aa +ab +ad +ad +aq +af +ao +aD +ax +ad +az +az +ad +ao +aD +ax +ao +aD +ax +af +bt +ad +ad +ab +aa +"} +(11,1,1) = {" +aa +ad +ad +af +af +af +af +af +af +aT +af +af +ba +af +af +af +af +af +af +af +af +af +ad +ad +aa +"} +(12,1,1) = {" +aa +ae +af +ao +ar +ax +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ad +aa +"} +(13,1,1) = {" +aa +ae +af +ao +as +ax +lT +aE +aE +aE +aE +aE +aE +aE +aE +aE +aE +aE +aE +af +af +bx +bx +ae +aa +"} +(14,1,1) = {" +aa +ad +ad +ad +ad +ad +ad +aF +aJ +aO +aF +aF +aF +aF +aF +aF +aO +aJ +aF +af +af +aD +aC +ae +aa +"} +(15,1,1) = {" +aa +ad +ag +ap +at +ap +az +af +af +af +af +af +af +af +af +af +af +af +bu +af +af +by +by +ae +aa +"} +(16,1,1) = {" +aa +ad +WB +ap +ap +ap +az +af +qd +aP +aU +aX +bb +be +bg +bh +aS +aK +br +af +af +af +af +ad +aa +"} +(17,1,1) = {" +aa +ae +ai +ap +au +ap +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +bz +ad +ad +aa +"} +(18,1,1) = {" +aa +ae +aj +ap +ah +ap +aA +aG +aL +aG +aG +aG +aG +bc +bc +aG +aG +aL +KP +ad +bw +bv +bA +ad +aa +"} +(19,1,1) = {" +aa +ad +ak +ap +av +ap +ad +ad +ad +ad +ad +ad +lo +gw +ad +ad +ad +bq +ad +ad +bw +bv +bB +ad +aa +"} +(20,1,1) = {" +aa +ad +al +ap +ap +ap +ad +Ql +aM +aQ +aV +ad +bd +Zv +ad +bi +bm +bl +dQ +ad +bw +bv +bC +ad +aa +"} +(21,1,1) = {" +aa +ad +am +ap +ap +ap +aB +aH +aH +aH +ad +ad +aA +ad +ad +bj +bn +bl +bl +ad +ad +ad +ad +ad +aa +"} +(22,1,1) = {" +aa +ab +ad +ad +aw +ap +ad +aH +aH +aH +ad +hm +Lj +XK +ad +bk +bo +bl +bs +ad +wn +ad +ad +ab +aa +"} +(23,1,1) = {" +aa +ab +ab +ad +ad +ay +ad +aI +aN +aR +ad +Nb +Lj +bf +ad +bl +bp +bl +bs +ad +ad +ad +ab +ab +aa +"} +(24,1,1) = {" +aa +ab +ab +ab +ad +ad +ad +ad +ad +ad +ad +ad +aA +ad +ad +ad +ad +ad +ad +ad +ad +ab +ab +ab +aa +"} +(25,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/modular_chomp/maps/submaps/shelters/ExplorerHome-17x20.dmm b/modular_chomp/maps/submaps/shelters/ExplorerHome-17x20.dmm new file mode 100644 index 0000000000..97841fdb14 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/ExplorerHome-17x20.dmm @@ -0,0 +1,761 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/template_noop, +/area/survivalpod/superpose/ExplorerHome) +"ab" = ( +/obj/structure/railing, +/turf/template_noop, +/area/survivalpod/superpose/ExplorerHome) +"ac" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/template_noop, +/area/survivalpod/superpose/ExplorerHome) +"ad" = ( +/turf/simulated/floor/outdoors/grass/sif, +/area/survivalpod/superpose/ExplorerHome) +"ae" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/template_noop, +/area/survivalpod/superpose/ExplorerHome) +"af" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/sif, +/area/survivalpod/superpose/ExplorerHome) +"ag" = ( +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/ExplorerHome) +"ah" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/ExplorerHome) +"ai" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/sif, +/area/survivalpod/superpose/ExplorerHome) +"aj" = ( +/obj/structure/target_stake, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/ExplorerHome) +"ak" = ( +/obj/item/target, +/turf/simulated/floor/outdoors/grass/sif, +/area/survivalpod/superpose/ExplorerHome) +"al" = ( +/obj/item/target/syndicate, +/turf/simulated/floor/outdoors/grass/sif, +/area/survivalpod/superpose/ExplorerHome) +"am" = ( +/turf/simulated/wall/wood, +/area/survivalpod/superpose/ExplorerHome) +"an" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/ExplorerHome) +"ao" = ( +/obj/structure/closet/crate, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/ExplorerHome) +"ap" = ( +/turf/simulated/floor/wood, +/area/survivalpod/superpose/ExplorerHome) +"aq" = ( +/obj/structure/table/marble, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/tiled, +/area/survivalpod/superpose/ExplorerHome) +"ar" = ( +/obj/structure/table/marble, +/obj/item/weapon/material/knife, +/turf/simulated/floor/tiled, +/area/survivalpod/superpose/ExplorerHome) +"as" = ( +/obj/structure/grille/rustic, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/ExplorerHome) +"at" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/brute, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/burn, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/purity, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/ExplorerHome) +"au" = ( +/obj/structure/toilet, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/ExplorerHome) +"av" = ( +/obj/structure/table/marble, +/obj/random/drinkbottle, +/turf/simulated/floor/tiled, +/area/survivalpod/superpose/ExplorerHome) +"aw" = ( +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/tiled, +/area/survivalpod/superpose/ExplorerHome) +"ax" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced, +/obj/item/weapon/coin/phoron, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/ExplorerHome) +"ay" = ( +/obj/item/clothing/head/bearpelt{ + pixel_y = 6 + }, +/obj/structure/table/glass, +/obj/structure/window/reinforced, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/ExplorerHome) +"az" = ( +/obj/item/weapon/material/harpoon, +/obj/structure/table/glass, +/obj/structure/window/reinforced, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/ExplorerHome) +"aA" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced, +/obj/item/clothing/accessory/medal/conduct{ + pixel_y = 6 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/ExplorerHome) +"aB" = ( +/obj/structure/sink{ + dir = 8; + icon_state = "sink"; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + dir = 4; + pixel_x = -28; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/ExplorerHome) +"aC" = ( +/obj/item/weapon/towel, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/ExplorerHome) +"aD" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/tiled, +/area/survivalpod/superpose/ExplorerHome) +"aE" = ( +/turf/simulated/floor/tiled, +/area/survivalpod/superpose/ExplorerHome) +"aF" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/tiled, +/area/survivalpod/superpose/ExplorerHome) +"aG" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/ExplorerHome) +"aH" = ( +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/ExplorerHome) +"aI" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8; + icon_state = "twindow" + }, +/obj/machinery/shower{ + dir = 1 + }, +/obj/random/soap, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/ExplorerHome) +"aJ" = ( +/turf/simulated/floor/carpet/turcarpet, +/area/survivalpod/superpose/ExplorerHome) +"aK" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/carpet/turcarpet, +/area/survivalpod/superpose/ExplorerHome) +"aL" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/survivalpod/superpose/ExplorerHome) +"aM" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/storage/fancy/candle_box, +/turf/simulated/floor/carpet/turcarpet, +/area/survivalpod/superpose/ExplorerHome) +"aN" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/device/binoculars/spyglass, +/turf/simulated/floor/carpet/turcarpet, +/area/survivalpod/superpose/ExplorerHome) +"aO" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/carpet/turcarpet, +/area/survivalpod/superpose/ExplorerHome) +"aP" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/survivalpod/superpose/ExplorerHome) +"aQ" = ( +/obj/item/weapon/storage/backpack/messenger, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/reagent_containers/food/snacks/sosjerky, +/obj/item/weapon/cell/device/hyper, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy, +/obj/item/weapon/flame/lighter/random, +/obj/item/weapon/storage/box/survival/space, +/obj/item/device/radio, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/weapon/reagent_containers/pill/dylovene, +/obj/item/weapon/reagent_containers/pill/dylovene, +/obj/item/device/flashlight/maglight, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/random/soap, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, +/obj/item/device/fbp_backup_cell, +/obj/item/device/pda, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/device/starcaster_news, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/item/device/suit_cooling_unit/emergency, +/obj/item/device/gps, +/obj/structure/table/rack/shelf, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/ExplorerHome) +"aR" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/ExplorerHome) +"aS" = ( +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/ExplorerHome) +"aT" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/ExplorerHome) +"aU" = ( +/obj/structure/closet/crate, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/ExplorerHome) +"aV" = ( +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/ExplorerHome) +"aW" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/ExplorerHome) +"aX" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/ExplorerHome) +"aY" = ( +/obj/item/clothing/suit/storage/hooded/explorer, +/obj/item/clothing/mask/gas/explorer, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/structure/table/rack/shelf, +/obj/item/weapon/cell/device, +/obj/item/weapon/cell/device, +/obj/item/weapon/cell/device, +/obj/item/clothing/under/explorer, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/ExplorerHome) +"aZ" = ( +/obj/item/clothing/shoes/boots/winter/explorer, +/obj/item/weapon/gun/launcher/crossbow/bow/hardlight, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/ExplorerHome) +"ba" = ( +/obj/structure/table/woodentable, +/obj/random/action_figure, +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/ExplorerHome) +"bb" = ( +/obj/item/weapon/bedsheet/hopdouble, +/obj/structure/bed/double/padded, +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/ExplorerHome) +"bc" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/ExplorerHome) +"bd" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/item/weapon/material/twohanded/sledgehammer/mjollnir, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/ExplorerHome) +"be" = ( +/obj/structure/sign/kiddieplaque{ + desc = "To anyone reading this, you'll note that I'm not home right now, and unfortunately due to reassignment, I won't be for a very long time. Exploring somewhere really far and dangerous now. You can stay if you want, but please try to keep my home in good condition."; + name = "read me visitors" + }, +/turf/simulated/wall/wood, +/area/survivalpod/superpose/ExplorerHome) +"bf" = ( +/obj/structure/bonfire/sifwood, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/ExplorerHome) +"eB" = ( +/obj/structure/closet/crate, +/obj/fiftyspawner/wood, +/obj/fiftyspawner/wood, +/obj/fiftyspawner/wood/sif, +/obj/fiftyspawner/wood/sif, +/obj/fiftyspawner/turcarpet, +/obj/fiftyspawner/tealcarpet, +/obj/fiftyspawner/sblucarpet, +/obj/fiftyspawner/purcarpet, +/obj/fiftyspawner/oracarpet, +/obj/fiftyspawner/blucarpet, +/obj/fiftyspawner/marble, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/fiftyspawner/cardboard, +/obj/fiftyspawner/cardboard, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/ExplorerHome) +"GN" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/ExplorerHome) +"Ky" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/ore/diamond, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/ExplorerHome) + +(1,1,1) = {" +aa +ac +af +af +af +af +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +"} +(2,1,1) = {" +ab +ad +ad +ag +ad +ak +am +am +as +am +am +ad +am +am +as +am +am +bc +ag +ag +"} +(3,1,1) = {" +ab +ad +ag +aj +ag +al +am +aq +av +aD +am +ad +am +aQ +aU +aY +am +bc +ag +ag +"} +(4,1,1) = {" +ab +ad +ag +ag +ag +ak +am +ar +aw +aE +am +ad +am +ap +aV +aZ +am +bc +ag +ag +"} +(5,1,1) = {" +ab +ad +ag +ag +ag +ad +am +am +am +aF +am +am +am +an +am +am +am +bc +ag +ag +"} +(6,1,1) = {" +ab +ad +ag +ag +ag +ad +ad +as +ax +ap +ap +GN +ap +ap +ap +as +ad +ad +ag +ag +"} +(7,1,1) = {" +ab +ad +ag +ag +ag +am +am +am +ay +ap +aJ +aL +aJ +ap +aW +am +am +am +ag +ag +"} +(8,1,1) = {" +ab +ad +ag +ag +ag +am +ao +am +am +ap +aK +aM +aP +ap +am +am +bd +am +ag +ag +"} +(9,1,1) = {" +ab +ad +ag +ag +ag +an +ap +ap +an +ap +aK +aN +aP +ap +an +ap +ap +an +ag +ag +"} +(10,1,1) = {" +ab +ad +ag +ag +ag +am +eB +am +am +ap +aK +aO +aP +ap +am +am +Ky +be +ag +ag +"} +(11,1,1) = {" +ab +ad +ag +ag +ag +am +am +am +az +ap +aJ +aP +aJ +ap +aX +am +am +am +ag +ag +"} +(12,1,1) = {" +ab +ad +ah +ag +ah +ad +ad +as +aA +ap +ap +ap +ap +ap +ap +as +ad +ad +ag +ag +"} +(13,1,1) = {" +ab +ad +ah +bf +ah +ad +am +am +am +aG +am +am +am +aR +am +am +am +bc +ag +ag +"} +(14,1,1) = {" +ab +ad +ah +ag +ah +ad +am +at +aB +aH +am +ad +am +aS +aS +ba +am +bc +ag +ag +"} +(15,1,1) = {" +ab +ad +ag +ag +ag +ad +am +au +aC +aI +am +ad +am +aT +aS +bb +am +bc +ag +ag +"} +(16,1,1) = {" +ab +ad +ad +ag +ad +ad +am +am +am +am +am +ad +am +am +as +am +am +bc +ag +ag +"} +(17,1,1) = {" +aa +ae +ai +ai +ai +ai +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +"} diff --git a/modular_chomp/maps/submaps/shelters/Farm-32x32.dmm b/modular_chomp/maps/submaps/shelters/Farm-32x32.dmm new file mode 100644 index 0000000000..8503507137 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/Farm-32x32.dmm @@ -0,0 +1,1497 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aq" = ( +/obj/structure/fence/corner{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/Farm) +"av" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/item/seeds/icepepperseed, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/survivalpod/superpose/Farm) +"cs" = ( +/obj/machinery/seed_storage/garden, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/Farm) +"cz" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/yellowdouble, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/Farm) +"db" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/fancy/candle_box, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/Farm) +"dx" = ( +/obj/structure/table/marble, +/obj/item/weapon/material/knife, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/Farm) +"dJ" = ( +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/Farm) +"dM" = ( +/obj/item/weapon/material/knife/machete/hatchet, +/turf/simulated/floor/outdoors/mud{ + outdoors = 0 + }, +/area/survivalpod/superpose/Farm) +"dV" = ( +/obj/structure/table/bench/sifwooden, +/turf/simulated/floor/outdoors/rocks, +/area/survivalpod/superpose/Farm) +"eb" = ( +/obj/machinery/power/port_gen/pacman, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/Farm) +"ec" = ( +/obj/structure/window/reinforced/full{ + dir = 8 + }, +/obj/structure/window/reinforced/full{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/Farm) +"ep" = ( +/obj/structure/flora/bboulder1, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/Farm) +"eq" = ( +/turf/template_noop, +/area/template_noop) +"fp" = ( +/obj/structure/bed/chair/wood{ + dir = 8; + icon_state = "wooden_chair" + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/Farm) +"gq" = ( +/obj/structure/table/woodentable, +/obj/item/trash/candle, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/Farm) +"gB" = ( +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/survivalpod/superpose/Farm) +"gG" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/item/seeds/cornseed, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/survivalpod/superpose/Farm) +"hJ" = ( +/obj/structure/flora/smallbould, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/Farm) +"hQ" = ( +/turf/simulated/floor/water, +/area/survivalpod/superpose/Farm) +"kb" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/Farm) +"kd" = ( +/obj/item/weapon/material/fishing_rod/modern/strong, +/turf/simulated/floor/outdoors/rocks, +/area/survivalpod/superpose/Farm) +"my" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/item/seeds/wheatseed, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/survivalpod/superpose/Farm) +"mB" = ( +/obj/structure/sink/puddle, +/turf/simulated/floor/outdoors/mud{ + outdoors = 0 + }, +/area/survivalpod/superpose/Farm) +"nv" = ( +/obj/structure/fence/door{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/Farm) +"nN" = ( +/obj/structure/flora/tree/jungle_small, +/turf/simulated/floor/outdoors/grass/sif, +/area/survivalpod/superpose/Farm) +"oc" = ( +/turf/simulated/floor/outdoors/dirt, +/area/template_noop) +"or" = ( +/obj/structure/grille/rustic, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/Farm) +"pU" = ( +/obj/machinery/door/window/eastleft, +/obj/machinery/door/window/westleft, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/Farm) +"qW" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/Farm) +"te" = ( +/obj/machinery/vending/hydronutrients, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/Farm) +"ty" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/Farm) +"vN" = ( +/turf/simulated/floor/wood, +/area/survivalpod/superpose/Farm) +"wH" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/item/seeds/bluetomatoseed, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/survivalpod/superpose/Farm) +"ys" = ( +/obj/structure/table/marble, +/obj/machinery/microwave, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/Farm) +"Ah" = ( +/obj/item/clothing/shoes/boots/winter/hydro, +/obj/item/clothing/suit/storage/hooded/wintercoat/hydro, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/Farm) +"Bb" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/Farm) +"Bz" = ( +/obj/structure/reagent_dispensers/fueltank/high, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/Farm) +"BI" = ( +/obj/structure/reagent_dispensers/watertank/high, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/Farm) +"BR" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/Farm) +"Eu" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/Farm) +"Fe" = ( +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/outdoors/grass/sif, +/area/survivalpod/superpose/Farm) +"FS" = ( +/obj/structure/closet/crate, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/Farm) +"Gm" = ( +/turf/simulated/wall/wood, +/area/survivalpod/superpose/Farm) +"GB" = ( +/obj/structure/fence/corner{ + dir = 10 + }, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/Farm) +"GK" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/Farm) +"GQ" = ( +/obj/item/weapon/storage/box/wormcan/deluxe, +/turf/simulated/floor/outdoors/rocks, +/area/survivalpod/superpose/Farm) +"GX" = ( +/mob/living/bot/farmbot, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/survivalpod/superpose/Farm) +"Hv" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/Farm) +"If" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/manual/hydroponics_pod_people, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/Farm) +"Ip" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/Farm) +"Ir" = ( +/turf/simulated/floor/outdoors/mud{ + outdoors = 0 + }, +/area/survivalpod/superpose/Farm) +"Is" = ( +/obj/structure/fence, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/Farm) +"Iw" = ( +/obj/item/weapon/storage/backpack/messenger, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/reagent_containers/food/snacks/sosjerky, +/obj/item/weapon/cell/device/hyper, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy, +/obj/item/weapon/flame/lighter/random, +/obj/item/weapon/storage/box/survival/space, +/obj/item/device/radio, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/weapon/reagent_containers/pill/dylovene, +/obj/item/weapon/reagent_containers/pill/dylovene, +/obj/item/device/flashlight/maglight, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/random/soap, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, +/obj/item/device/fbp_backup_cell, +/obj/item/device/pda, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/device/starcaster_news, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/item/device/suit_cooling_unit/emergency, +/obj/item/device/gps, +/obj/structure/closet{ + name = "Survival closet" + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/Farm) +"IS" = ( +/obj/structure/table/marble, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/Farm) +"Ju" = ( +/obj/structure/table/marble, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/Farm) +"JM" = ( +/obj/machinery/appliance/cooker/oven, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/Farm) +"LM" = ( +/obj/machinery/power/apc/alarms_hidden{ + dir = 1; + pixel_y = 20 + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/Farm) +"Mo" = ( +/obj/structure/flora/bboulder2, +/turf/simulated/floor/outdoors/grass/sif, +/area/survivalpod/superpose/Farm) +"Ny" = ( +/turf/simulated/floor/plating, +/area/survivalpod/superpose/Farm) +"Oe" = ( +/turf/simulated/floor/outdoors/grass/sif, +/area/survivalpod/superpose/Farm) +"On" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/matches, +/obj/item/weapon/flame/match, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/Farm) +"Ox" = ( +/obj/structure/table/steel, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/Farm) +"OW" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/Farm) +"Sr" = ( +/obj/structure/fence/corner{ + dir = 6 + }, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/Farm) +"SV" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille/rustic, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/Farm) +"TA" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/Farm) +"UW" = ( +/turf/simulated/floor/outdoors/rocks, +/area/survivalpod/superpose/Farm) +"VN" = ( +/obj/structure/closet/crate, +/obj/fiftyspawner/wood, +/obj/fiftyspawner/wood, +/obj/fiftyspawner/wood/sif, +/obj/fiftyspawner/wood/sif, +/obj/fiftyspawner/turcarpet, +/obj/fiftyspawner/tealcarpet, +/obj/fiftyspawner/sblucarpet, +/obj/fiftyspawner/purcarpet, +/obj/fiftyspawner/oracarpet, +/obj/fiftyspawner/blucarpet, +/obj/fiftyspawner/marble, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/fiftyspawner/cardboard, +/obj/fiftyspawner/cardboard, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/Farm) +"WM" = ( +/obj/machinery/autolathe, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/Farm) +"Xe" = ( +/obj/structure/bonfire/permanent/sifwood, +/obj/item/weapon/reagent_containers/cooking_container/grill, +/turf/simulated/floor/outdoors/grass/sif, +/area/survivalpod/superpose/Farm) +"Yz" = ( +/obj/structure/fence/corner{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/Farm) +"Zf" = ( +/obj/structure/table/bench/sifwooden, +/turf/simulated/floor/outdoors/grass/sif, +/area/survivalpod/superpose/Farm) + +(1,1,1) = {" +eq +eq +eq +oc +oc +oc +oc +eq +eq +oc +eq +eq +eq +eq +eq +eq +oc +eq +oc +eq +eq +oc +eq +eq +eq +eq +oc +oc +eq +eq +eq +eq +"} +(2,1,1) = {" +eq +oc +Yz +Is +Is +Is +Is +Is +Is +Is +Is +Is +Is +Is +Is +Is +Is +Is +Is +Is +Is +Is +Is +Is +Is +Is +Is +Is +GB +eq +eq +eq +"} +(3,1,1) = {" +eq +eq +ty +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +dJ +Oe +Oe +Oe +Oe +Oe +Oe +ty +oc +eq +eq +"} +(4,1,1) = {" +eq +eq +ty +Oe +Oe +Oe +Oe +Oe +Oe +Gm +Gm +or +or +Gm +Gm +Gm +Gm +Gm +Oe +dJ +dJ +dJ +dJ +dJ +dJ +Oe +Oe +Oe +ty +eq +eq +eq +"} +(5,1,1) = {" +eq +oc +ty +Oe +Oe +Gm +Gm +Gm +Gm +Gm +On +TA +db +BR +Gm +If +Eu +Gm +dJ +dJ +UW +UW +UW +dJ +dJ +Oe +dJ +Oe +ty +eq +eq +eq +"} +(6,1,1) = {" +eq +eq +ty +Oe +Oe +Gm +JM +vN +Hv +Gm +TA +fp +vN +vN +OW +vN +vN +Gm +dJ +UW +UW +hQ +UW +UW +hJ +dJ +Oe +Oe +ty +eq +eq +eq +"} +(7,1,1) = {" +eq +eq +ty +Oe +Oe +or +ys +vN +vN +OW +vN +vN +vN +vN +Gm +vN +vN +Gm +dJ +UW +hQ +hQ +hQ +UW +UW +dJ +dJ +Oe +ty +eq +oc +eq +"} +(8,1,1) = {" +eq +oc +ty +Oe +Oe +or +IS +vN +vN +Gm +Ah +vN +vN +Eu +Gm +cz +gq +Gm +dJ +UW +hQ +hQ +hQ +hQ +UW +UW +dJ +Oe +ty +eq +eq +eq +"} +(9,1,1) = {" +eq +oc +ty +Oe +Oe +Gm +Ju +IS +dx +Gm +Gm +Gm +OW +Gm +Gm +Gm +Gm +Gm +dJ +UW +hQ +hQ +hQ +hQ +hQ +UW +dJ +Oe +ty +eq +eq +oc +"} +(10,1,1) = {" +eq +eq +ty +Oe +Oe +Gm +Gm +or +Gm +Gm +Gm +Bb +vN +Gm +cs +Oe +Oe +Mo +dJ +UW +hQ +hQ +hQ +hQ +hQ +UW +dJ +Oe +ty +eq +eq +oc +"} +(11,1,1) = {" +eq +eq +ty +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Gm +vN +vN +Gm +te +Oe +Oe +Oe +dJ +kd +dV +hQ +hQ +hQ +hQ +UW +dJ +Oe +ty +eq +eq +eq +"} +(12,1,1) = {" +eq +eq +ty +Oe +Oe +dJ +dJ +nN +dJ +dJ +Gm +Gm +OW +Gm +Ox +dJ +dJ +dJ +dJ +dJ +GQ +dV +hQ +hQ +hQ +UW +dJ +Oe +ty +oc +oc +eq +"} +(13,1,1) = {" +eq +oc +ty +Oe +Oe +Oe +Oe +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +Oe +Zf +dJ +dJ +kd +dV +hQ +UW +UW +dJ +Oe +ty +oc +eq +eq +"} +(14,1,1) = {" +eq +oc +ty +Oe +Oe +Oe +Oe +Oe +Oe +dJ +dJ +Oe +Oe +Oe +Oe +dJ +dJ +Zf +Xe +Zf +dJ +dJ +GQ +UW +UW +ep +dJ +Oe +ty +eq +eq +eq +"} +(15,1,1) = {" +eq +eq +ty +Oe +Oe +SV +SV +SV +ec +pU +SV +SV +SV +SV +Oe +Oe +dJ +dJ +Zf +Oe +dJ +dJ +dJ +dJ +dJ +dJ +dJ +Oe +ty +eq +eq +eq +"} +(16,1,1) = {" +eq +eq +ty +Oe +Oe +SV +gG +gB +wH +GX +wH +gB +my +SV +Oe +dJ +dJ +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +dJ +Oe +ty +oc +eq +eq +"} +(17,1,1) = {" +oc +eq +ty +Oe +Oe +SV +gG +gB +wH +gB +wH +gB +my +SV +Oe +Oe +dJ +Oe +Oe +Gm +Gm +or +or +or +Gm +Gm +Oe +Oe +ty +oc +eq +eq +"} +(18,1,1) = {" +eq +eq +ty +Oe +Oe +SV +gG +gB +wH +gB +wH +gB +my +SV +Oe +Oe +dJ +dJ +Oe +Gm +FS +eb +Iw +Ip +VN +Gm +dJ +Oe +ty +eq +oc +eq +"} +(19,1,1) = {" +eq +eq +ty +Oe +Oe +SV +gG +gB +Ir +Ir +Ir +gB +my +SV +Oe +Oe +dJ +dJ +Oe +Gm +LM +Ny +Ny +Ny +Ny +Gm +Oe +Oe +ty +eq +oc +eq +"} +(20,1,1) = {" +oc +oc +ty +Oe +Oe +SV +gG +gB +Ir +mB +Ir +gB +my +SV +Oe +dJ +dJ +dJ +dJ +Ny +Ny +Ny +Ny +Ny +qW +Gm +Oe +Oe +ty +eq +eq +eq +"} +(21,1,1) = {" +eq +eq +ty +Oe +Oe +SV +gG +gB +Ir +dM +Ir +gB +my +SV +Oe +dJ +dJ +dJ +dJ +Ny +Ny +Ny +WM +Ny +Ox +Gm +Oe +Oe +ty +eq +oc +eq +"} +(22,1,1) = {" +eq +oc +ty +Oe +Oe +SV +gG +gB +av +gB +av +gB +my +SV +Oe +dJ +dJ +dJ +dJ +Ny +Ny +Ny +Ny +Ny +Ox +Gm +Oe +Oe +ty +eq +oc +eq +"} +(23,1,1) = {" +eq +oc +ty +Oe +Oe +SV +gG +gB +av +gB +av +gB +my +SV +Oe +dJ +dJ +dJ +Oe +Gm +Ny +Ny +Ny +Ny +Ny +Gm +Oe +Oe +ty +oc +eq +eq +"} +(24,1,1) = {" +eq +eq +ty +Oe +Oe +SV +gG +gB +av +gB +av +gB +my +SV +Oe +dJ +dJ +dJ +Fe +Gm +BI +Bz +GK +GK +kb +Gm +Oe +Oe +ty +oc +eq +eq +"} +(25,1,1) = {" +eq +eq +ty +Oe +Oe +SV +SV +SV +SV +SV +SV +SV +SV +SV +Oe +dJ +dJ +dJ +Oe +Gm +Gm +or +or +or +Gm +Gm +Oe +Oe +ty +eq +eq +eq +"} +(26,1,1) = {" +eq +oc +ty +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +dJ +dJ +dJ +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +ty +eq +eq +eq +"} +(27,1,1) = {" +eq +oc +aq +Is +Is +Is +Is +Is +Is +Is +Is +Is +Is +Is +Is +nv +Is +nv +Is +Is +Is +Is +Is +Is +Is +Is +Is +Is +Sr +eq +oc +eq +"} +(28,1,1) = {" +eq +oc +oc +oc +eq +eq +eq +oc +oc +oc +eq +eq +eq +eq +eq +oc +oc +eq +eq +eq +eq +eq +eq +eq +eq +eq +oc +oc +eq +eq +oc +eq +"} +(29,1,1) = {" +eq +eq +eq +oc +eq +eq +eq +oc +oc +eq +eq +eq +oc +oc +eq +oc +eq +oc +eq +eq +eq +eq +eq +eq +oc +oc +eq +eq +eq +eq +oc +oc +"} +(30,1,1) = {" +eq +eq +eq +eq +eq +eq +oc +eq +eq +eq +eq +eq +eq +eq +eq +eq +oc +oc +eq +eq +eq +oc +oc +oc +oc +oc +eq +eq +eq +eq +eq +eq +"} +(31,1,1) = {" +eq +eq +eq +eq +eq +oc +eq +eq +eq +oc +oc +eq +eq +oc +eq +oc +eq +oc +eq +eq +oc +oc +oc +oc +eq +eq +eq +eq +eq +eq +eq +eq +"} +(32,1,1) = {" +eq +eq +eq +eq +eq +eq +eq +eq +eq +eq +eq +eq +eq +eq +eq +eq +eq +eq +eq +eq +eq +eq +eq +eq +eq +eq +eq +eq +eq +eq +eq +eq +"} diff --git a/modular_chomp/maps/submaps/shelters/FieldLab-20x20.dmm b/modular_chomp/maps/submaps/shelters/FieldLab-20x20.dmm new file mode 100644 index 0000000000..bc9a6f174f --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/FieldLab-20x20.dmm @@ -0,0 +1,850 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aG" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox, +/obj/random/tool, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"cq" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"eZ" = ( +/obj/item/robot_parts/chest, +/obj/item/robot_parts/l_arm, +/obj/item/robot_parts/r_arm, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"fc" = ( +/obj/structure/closet/secure_closet/hydroponics, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"fl" = ( +/turf/template_noop, +/area/survivalpod/superpose/FieldLab) +"gS" = ( +/obj/structure/table/standard, +/obj/item/device/multitool, +/obj/item/clothing/glasses/welding, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"hx" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"hM" = ( +/obj/structure/reagent_dispensers/fueltank/high, +/turf/simulated/floor, +/area/survivalpod/superpose/FieldLab) +"ja" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"ll" = ( +/obj/machinery/floodlight, +/turf/simulated/floor, +/area/survivalpod/superpose/FieldLab) +"lI" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"mb" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"mm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/FieldLab) +"mo" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"mF" = ( +/obj/structure/reagent_dispensers/watertank/high, +/turf/simulated/floor, +/area/survivalpod/superpose/FieldLab) +"mV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/FieldLab) +"nn" = ( +/obj/machinery/mecha_part_fabricator/pros, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"ns" = ( +/obj/machinery/autolathe, +/obj/item/weapon/rcd/advanced/loaded{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/weapon/rcd_ammo/large, +/obj/item/weapon/rcd_ammo/large, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/FieldLab) +"pr" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"py" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"qO" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"sx" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper{ + desc = "Gladstone for the last fucking time, We have crowbars for a REASON. Stop breaking in through the goddamn windows! We big red shiny doors for god's sakes!" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"tb" = ( +/obj/structure/table/standard, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"wi" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"xf" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"xJ" = ( +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/hyper; + dir = 8; + name = "Unknown APC"; + operating = 0; + pixel_x = -24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"xU" = ( +/obj/structure/table/standard, +/obj/random/tool, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"yX" = ( +/obj/structure/table/standard, +/obj/random/toolbox, +/obj/item/weapon/cell/super, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"zX" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"AB" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"AZ" = ( +/obj/item/weapon/storage/bag/circuits, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"Br" = ( +/obj/machinery/vending/hydronutrients, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"DW" = ( +/turf/simulated/wall/r_wall, +/area/survivalpod/superpose/FieldLab) +"Gk" = ( +/obj/structure/closet/crate, +/obj/fiftyspawner/plasteel, +/obj/fiftyspawner/plasteel, +/obj/fiftyspawner/phoronrglass, +/obj/fiftyspawner/phoronrglass, +/obj/item/stack/material/lead{ + amount = 50 + }, +/obj/item/stack/material/lead{ + amount = 50 + }, +/obj/fiftyspawner/gold, +/obj/fiftyspawner/phoron, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/FieldLab) +"Gt" = ( +/obj/machinery/space_heater, +/turf/simulated/floor, +/area/survivalpod/superpose/FieldLab) +"HA" = ( +/obj/structure/closet/crate/hydroponics, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"HQ" = ( +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"Iq" = ( +/turf/simulated/floor, +/area/survivalpod/superpose/FieldLab) +"IO" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"IV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/FieldLab) +"Jg" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"Kk" = ( +/obj/item/weapon/storage/backpack/messenger, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/reagent_containers/food/snacks/sosjerky, +/obj/item/weapon/cell/device/hyper, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy, +/obj/item/weapon/flame/lighter/random, +/obj/item/weapon/storage/box/survival/space, +/obj/item/device/radio, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/weapon/reagent_containers/pill/dylovene, +/obj/item/weapon/reagent_containers/pill/dylovene, +/obj/item/device/flashlight/maglight, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/random/soap, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, +/obj/item/device/fbp_backup_cell, +/obj/item/device/pda, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/device/starcaster_news, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/item/device/suit_cooling_unit/emergency, +/obj/item/device/gps, +/obj/structure/closet{ + name = "Survival closet" + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/FieldLab) +"KC" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"Me" = ( +/obj/structure/closet/crate, +/obj/fiftyspawner/wood, +/obj/fiftyspawner/wood, +/obj/fiftyspawner/wood/sif, +/obj/fiftyspawner/wood/sif, +/obj/fiftyspawner/turcarpet, +/obj/fiftyspawner/tealcarpet, +/obj/fiftyspawner/sblucarpet, +/obj/fiftyspawner/purcarpet, +/obj/fiftyspawner/oracarpet, +/obj/fiftyspawner/blucarpet, +/obj/fiftyspawner/marble, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/fiftyspawner/cardboard, +/obj/fiftyspawner/cardboard, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/FieldLab) +"MD" = ( +/obj/machinery/vending/tool, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"MK" = ( +/obj/machinery/power/port_gen/pacman, +/obj/item/stack/material/phoron{ + amount = 25 + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/FieldLab) +"MT" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/clothing/shoes/boots/winter, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"NN" = ( +/obj/machinery/vending/robotics, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"Oe" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"Pk" = ( +/obj/structure/closet/toolcloset, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"Qn" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/clothing/shoes/boots/winter, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"RT" = ( +/obj/structure/closet/crate, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/turf/simulated/floor, +/area/survivalpod/superpose/FieldLab) +"Ue" = ( +/obj/machinery/vending/hydroseeds, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"Vh" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor, +/area/survivalpod/superpose/FieldLab) +"Wc" = ( +/turf/template_noop, +/area/template_noop) +"Xa" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"Xv" = ( +/obj/item/weapon/cell/super, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"XW" = ( +/obj/structure/table/standard, +/obj/item/seeds/ambrosiavulgarisseed, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) +"XZ" = ( +/obj/machinery/vending/engivend{ + emagged = 1; + req_access = null; + req_log_access = null + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/FieldLab) + +(1,1,1) = {" +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +"} +(2,1,1) = {" +Wc +fl +DW +DW +DW +DW +DW +DW +DW +fl +fl +DW +DW +DW +DW +DW +DW +DW +fl +Wc +"} +(3,1,1) = {" +Wc +fl +mm +HQ +aG +xU +yX +xJ +mm +fl +fl +mm +HQ +IO +zX +IO +HA +mm +fl +Wc +"} +(4,1,1) = {" +Wc +fl +IV +HQ +HQ +HQ +HQ +Xa +IV +fl +fl +IV +Br +HQ +HQ +HQ +fc +IV +fl +Wc +"} +(5,1,1) = {" +Wc +fl +mV +HQ +XZ +MD +Pk +xf +mV +fl +fl +mV +Ue +hx +Oe +HQ +XW +mV +fl +Wc +"} +(6,1,1) = {" +Wc +fl +DW +mb +DW +DW +DW +DW +DW +HQ +HQ +DW +DW +DW +DW +mb +DW +DW +fl +Wc +"} +(7,1,1) = {" +Wc +fl +mm +HQ +mm +Vh +Gt +ns +MK +HQ +HQ +Iq +Kk +RT +mm +HQ +mm +fl +fl +Wc +"} +(8,1,1) = {" +Wc +fl +IV +HQ +mV +Vh +Gt +Iq +Iq +HQ +HQ +Iq +Gk +Me +mV +HQ +IV +fl +fl +Wc +"} +(9,1,1) = {" +Wc +fl +IV +qO +DW +DW +DW +DW +DW +HQ +HQ +DW +DW +DW +DW +pr +IV +fl +fl +Wc +"} +(10,1,1) = {" +Wc +fl +IV +HQ +mo +HQ +cq +HQ +mo +HQ +HQ +mo +HQ +HQ +mo +HQ +IV +fl +fl +Wc +"} +(11,1,1) = {" +Wc +fl +IV +HQ +mo +HQ +HQ +HQ +mo +HQ +HQ +mo +lI +HQ +mo +HQ +IV +fl +fl +Wc +"} +(12,1,1) = {" +Wc +fl +IV +qO +DW +DW +DW +DW +DW +HQ +HQ +DW +DW +DW +DW +pr +IV +fl +fl +Wc +"} +(13,1,1) = {" +Wc +fl +IV +HQ +mm +ll +ll +Iq +Iq +HQ +HQ +Iq +Iq +mF +mm +HQ +IV +fl +fl +Wc +"} +(14,1,1) = {" +Wc +fl +mV +HQ +mV +ll +ll +Iq +Iq +HQ +HQ +Iq +Iq +hM +mV +HQ +mV +fl +fl +Wc +"} +(15,1,1) = {" +Wc +fl +DW +mb +DW +DW +DW +DW +DW +HQ +HQ +DW +DW +DW +DW +mb +DW +DW +fl +Wc +"} +(16,1,1) = {" +Wc +fl +mm +HQ +HQ +Qn +AB +sx +mm +fl +fl +mm +Jg +ja +HQ +HQ +NN +mm +fl +Wc +"} +(17,1,1) = {" +Wc +fl +IV +HQ +HQ +HQ +HQ +HQ +IV +fl +fl +IV +tb +Xv +HQ +HQ +py +IV +fl +Wc +"} +(18,1,1) = {" +Wc +fl +mV +HQ +HQ +MT +AB +KC +mV +fl +fl +mV +gS +nn +AZ +eZ +wi +mV +fl +Wc +"} +(19,1,1) = {" +Wc +fl +DW +DW +DW +DW +DW +DW +DW +fl +fl +DW +DW +DW +DW +DW +DW +DW +fl +Wc +"} +(20,1,1) = {" +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +Wc +"} diff --git a/modular_chomp/maps/submaps/shelters/HellCave-40x25.dmm b/modular_chomp/maps/submaps/shelters/HellCave-40x25.dmm new file mode 100644 index 0000000000..e2de48cb1d --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/HellCave-40x25.dmm @@ -0,0 +1,75 @@ +"bL" = (/obj/item/weapon/bone/ribs,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/HellCave) +"bX" = (/obj/fire,/turf/simulated/floor/gorefloor,/area/survivalpod/superpose/HellCave) +"eh" = (/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/HellCave) +"eD" = (/turf/simulated/floor/cult,/area/survivalpod/superpose/HellCave) +"fH" = (/obj/structure/grille/broken/cult,/turf/simulated/floor/lava,/area/survivalpod/superpose/HellCave) +"gW" = (/obj/effect/map_effect/interval/sound_emitter/punching,/obj/effect/map_effect/interval/effect_emitter/smoke/fire,/turf/simulated/floor/lava,/area/survivalpod/superpose/HellCave) +"iK" = (/turf/simulated/floor/gorefloor,/area/survivalpod/superpose/HellCave) +"jG" = (/obj/structure/closet/crate,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/HellCave) +"kE" = (/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/obj/structure/closet{name = "Survival closet"},/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/HellCave) +"lQ" = (/obj/item/weapon/bone/skull/unknown,/turf/simulated/floor/lava,/area/survivalpod/superpose/HellCave) +"nD" = (/obj/effect/gibspawner/human,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/HellCave) +"qo" = (/obj/structure/cult/tome,/turf/simulated/floor/cult,/area/survivalpod/superpose/HellCave) +"vf" = (/turf/simulated/wall/cult,/area/survivalpod/superpose/HellCave) +"vT" = (/turf/simulated/floor/lava,/area/survivalpod/superpose/HellCave) +"xV" = (/obj/fire,/turf/simulated/floor/lava,/area/survivalpod/superpose/HellCave) +"yJ" = (/obj/machinery/crystal/lava,/turf/simulated/floor/lava,/area/survivalpod/superpose/HellCave) +"zh" = (/obj/structure/grille/broken/cult,/turf/simulated/floor/cult,/area/survivalpod/superpose/HellCave) +"zJ" = (/obj/structure/grille/cult,/turf/simulated/floor/cult,/area/survivalpod/superpose/HellCave) +"AB" = (/obj/structure/grille/cult,/turf/simulated/floor/lava,/area/survivalpod/superpose/HellCave) +"Bk" = (/obj/structure/closet/crate,/obj/fiftyspawner/plasteel,/obj/fiftyspawner/plasteel,/obj/fiftyspawner/phoronrglass,/obj/fiftyspawner/phoronrglass,/obj/item/stack/material/lead{amount = 50},/obj/item/stack/material/lead{amount = 50},/obj/fiftyspawner/gold,/obj/fiftyspawner/phoron,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/HellCave) +"Cy" = (/obj/structure/girder/cult,/turf/simulated/floor/lava,/area/survivalpod/superpose/HellCave) +"DW" = (/obj/structure/cult/pylon,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/HellCave) +"El" = (/obj/structure/simple_door/cult,/turf/simulated/floor/cult,/area/survivalpod/superpose/HellCave) +"Fv" = (/obj/structure/girder/cult,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/HellCave) +"Fz" = (/obj/item/weapon/bone/ribs,/turf/simulated/floor/lava,/area/survivalpod/superpose/HellCave) +"FX" = (/obj/structure/grille/cult,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/HellCave) +"Hm" = (/obj/structure/girder/cult,/turf/simulated/floor/cult,/area/survivalpod/superpose/HellCave) +"Ia" = (/turf/template_noop,/area/survivalpod/superpose/HellCave) +"Jb" = (/obj/effect/decal/remains/deer,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/HellCave) +"Ji" = (/obj/structure/grille/broken/cult,/obj/fire,/turf/simulated/floor/lava,/area/survivalpod/superpose/HellCave) +"Jt" = (/obj/structure/loot_pile/surface/bones,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/HellCave) +"Kb" = (/turf/simulated/goreeyes,/area/survivalpod/superpose/HellCave) +"Ko" = (/obj/structure/constructshell/cult,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/HellCave) +"LQ" = (/obj/structure/grille/cult,/turf/simulated/wall/cult,/area/survivalpod/superpose/HellCave) +"Mq" = (/obj/structure/grille/broken/cult,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/HellCave) +"Mv" = (/turf/simulated/floor/flesh/colour{color = red},/area/survivalpod/superpose/HellCave) +"ML" = (/obj/structure/closet/crate,/obj/fiftyspawner/wood,/obj/fiftyspawner/wood,/obj/fiftyspawner/wood/sif,/obj/fiftyspawner/wood/sif,/obj/fiftyspawner/turcarpet,/obj/fiftyspawner/tealcarpet,/obj/fiftyspawner/sblucarpet,/obj/fiftyspawner/purcarpet,/obj/fiftyspawner/oracarpet,/obj/fiftyspawner/blucarpet,/obj/fiftyspawner/marble,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/fiftyspawner/cardboard,/obj/fiftyspawner/cardboard,/turf/simulated/floor/cult,/area/survivalpod/superpose/HellCave) +"Nh" = (/turf/simulated/gore,/area/survivalpod/superpose/HellCave) +"PU" = (/obj/fire,/turf/template_noop,/area/survivalpod/superpose/HellCave) +"Qh" = (/obj/fire,/turf/simulated/wall/cult,/area/survivalpod/superpose/HellCave) +"RL" = (/obj/effect/decal/remains/deer,/turf/simulated/floor/cult,/area/survivalpod/superpose/HellCave) +"Sy" = (/obj/structure/grille/broken/cult,/obj/fire,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/HellCave) +"Ut" = (/obj/structure/cult/talisman,/turf/simulated/floor/cult,/area/survivalpod/superpose/HellCave) +"UO" = (/obj/item/weapon/bone/arm,/turf/simulated/floor/lava,/area/survivalpod/superpose/HellCave) +"Vn" = (/obj/structure/cult/forge,/turf/simulated/floor/cult,/area/survivalpod/superpose/HellCave) +"VA" = (/obj/structure/grille/broken/cult,/turf/simulated/floor/gorefloor,/area/survivalpod/superpose/HellCave) +"YJ" = (/obj/fire,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/HellCave) + +(1,1,1) = {" +IaehIaIaehIaehIaehehIaNhehehNhIaIaehIaIavfIaNhehNhIaehIaNhIaehehehvfehIaNhIaehIa +vfNhNhvfehehvfNhNhNhvTvTFXehvfehvTNhNhNhNhNhNhvfNhNhNhNhNhKbLQABJivTvTxVQhxVvTNh +NhNhehehehehehNhNhNhxVYJehDWehYJehNhNhNhNhKbDWehYJYJYJehehiKiKbXbXABvTvTvTyJvfeh +NhvfehehvTvTehehehNhehehehehehehehehNhNhkEehehehiKiKiKiKiKiKiKiKiKVAiKMviKvTvTeh +NhIaehvTvTvTvTYJehKbehehiKbXiKehehehnDNhehiKiKiKMvMviKiKMvMviKMvMviKMvMvMvvTxVvf +IaehvTvTgWFzvTehehYJiKMvMvMvMviKJbehehKbiKMvMviKMvehYJehiKiKiKiKiKVAiKMviKvTQhIa +IaehvTvTvTvTvTehehbXMvMviKiKMvMviKYJehYJiKiKiKehehehJtehehehbXbXiKABvTvTvTyJvTeh +IaehehvTxVxVnDehMqiKMviKehehiKMviKehehehiKiKiKehnDKbNhKbFvehABJifHvTxVxVxVxVvfeh +IaPUehehehYJehJbiKMvMviKehnDehMvMviKehehiKMvehehehYJYJYJehehKbNhKbNhNhNhNhNhNhIa +IavfehehehehMqehiKMviKiKehFvehiKMviKYJvTiKMviKiKiKiKiKiKiKiKiKehehBkNhNhNhNhNheh +IaIaIavfvfKbehiKMvMviKehehKbehiKMvehMqehehehMvMvMviKiKMvMviKMvehSyYJehvTvTvTNhIa +IaIaIaIaNhehehiKMviKehehehVAehiKMvMvehvTyJehiKiKiKiKiKehiKehMvMviKehYJYJvTvTvTeh +NhvfNhNhehehehMvMviKYJehehKbehiKiKMvehxVUOehehKovfzhElzJvfKoehMviKMvYJYJvTvTvfIa +IaNhNhehehFvehMviKiKYJehJtNhYJehiKMvehYJehehKbvfvfRLeDRLvfvfehehehMviKehehvfvTIa +NhNhYJYJehiKiKMviKiKehehNhNhYJehiKMviKehehbLehHmeDeDeDeDMLvfehehiKiKehehehIaIaIa +NhehYJehehiKMvMviKehehehNhNhehYJiKMvMvehehYJehvfVnqoUteDeDCylQDWiKMviKIavfIaehIa +vfehehiKiKMvMviKiKehYJNhNhNhehehehMvMviKiKYJehvfvfzJvfvfzhvTvTehehMvMviKJbvfIaIa +ehehiKiKIaMvMvMviKYJYJNhNhNhehehehiKMvMviKehehMqehehehehehYJYJehehMvMviKYJehvfvf +ehehvfIaIaMvMvMviKYJYJNhNhNhehehJbehiKMvMvMviKehiKiKiKiKehehiKehiKMvMviKYJMqNheh +IaIaIaMvMvMvMvMviKYJYJNhNhNhjGehehehnDehiKiKMvMvMvMvMvMvMviKiKMvMvMviKiKYJehNheh +IaIaIaMvMvMvMvMviKehehNhNhNhNhehIaKbehehYJehiKehMvMviKiKMvMvMvMviKehehehehehNhNh +IaehiKMvMviKiKiKiKehNhNhNhNhNhehvfehehehYJehehehvfiKiKehiKiKiKIaehYJehehehNhNhIa +IaNhehiKiKiKiKiKIavfvfNhNhNhNhvfIavfehehehNhvfvfNhehvfehehehMqvfehehehKbNhNhNheh +IaIaNhehehehehIaehIaIavfNhNhvfIaIaIaehNhNhNhvfvfNhNhNhvfvfehvfIaIaehNhNhNhNhNhIa +IaIaehIaIaNhehIaIaehehIaIaIaIaNhNhIaIaehehehIaIaIaehehehIaIaIaehehIaIaIaIaIaehIa +"} diff --git a/modular_chomp/maps/submaps/shelters/HydroCave-40x40.dmm b/modular_chomp/maps/submaps/shelters/HydroCave-40x40.dmm new file mode 100644 index 0000000000..ca301c3fd6 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/HydroCave-40x40.dmm @@ -0,0 +1,299 @@ +"ah" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/wall/r_wall,/area/survivalpod/superpose/HydroCave) +"ak" = (/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/grass,/area/survivalpod/superpose/HydroCave) +"at" = (/obj/structure/closet/emcloset,/obj/item/clothing/mask/breath,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"av" = (/obj/structure/toilet{dir = 1},/obj/machinery/light/small{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/HydroCave) +"aF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5; level = 2},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"aM" = (/obj/machinery/light{dir = 8},/obj/machinery/alarm/monitor{dir = 4; locked = 0; pixel_x = -23; req_access = null},/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"aX" = (/obj/structure/salvageable/console_broken_os,/turf/simulated/floor/tiled/red,/area/survivalpod/superpose/HydroCave) +"br" = (/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/HydroCave) +"bz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"ci" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/sink{pixel_y = 25},/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"cv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/wall,/area/survivalpod/superpose/HydroCave) +"cG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock{id_tag = "awaydorm3"; name = "Dorm 3"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"cI" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/vending/snack,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"cN" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/obj/structure/table/glass,/turf/simulated/floor/carpet,/area/survivalpod/superpose/HydroCave) +"cT" = (/obj/structure/extinguisher_cabinet{pixel_y = -28},/obj/structure/flora/pumpkin,/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"cY" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"dh" = (/obj/structure/sign/warning/lethal_turrets,/turf/simulated/wall/r_wall,/area/survivalpod/superpose/HydroCave) +"dz" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"dG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/red,/area/survivalpod/superpose/HydroCave) +"dI" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/vending/coffee,/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"dU" = (/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/grass,/area/survivalpod/superpose/HydroCave) +"ep" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"er" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"ev" = (/obj/effect/decal/cleanable/dirt,/obj/structure/flora/pumpkin,/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"eV" = (/obj/structure/closet/secure_closet{icon_broken = "hydrosecurebroken"; icon_closed = "hydrosecure"; icon_locked = "hydrosecure1"; icon_off = "hydrosecureoff"; icon_opened = "hydrosecureopen"; icon_state = "hydrosecure"; locked = 0; name = "botanist's locker"; req_access_txt = "201"},/obj/item/clothing/mask/bandana,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/HydroCave) +"fc" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"fj" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled/red,/area/survivalpod/superpose/HydroCave) +"fm" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Security Checkpoint"; req_access_txt = "201"},/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"fo" = (/obj/machinery/light{dir = 4},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"fz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/random/trash,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"fM" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"fN" = (/obj/effect/decal/cleanable/dirt,/obj/structure/flora/pumpkin,/turf/simulated/floor/tiled{icon_state = "dark"},/area/survivalpod/superpose/HydroCave) +"ga" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{dir = 8; name = "Security Checkpoint"; req_access_txt = "201"},/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"gh" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"gX" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/HydroCave) +"hM" = (/obj/machinery/alarm/monitor{dir = 4; locked = 0; pixel_x = -23; req_access = null},/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"id" = (/obj/effect/decal/cleanable/dirt,/turf/template_noop,/area/template_noop) +"ih" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"it" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"iD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1; initialize_directions = 14; tag = "icon-manifold-r-f (NORTH)"},/turf/simulated/wall,/area/survivalpod/superpose/HydroCave) +"iY" = (/obj/machinery/door/airlock/security{name = "Security Checkpoint"; req_access_txt = "201"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"jg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"ji" = (/obj/machinery/seed_extractor,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/HydroCave) +"jm" = (/turf/simulated/mineral/ignore_mapgen/cave,/area/template_noop) +"ju" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"jw" = (/obj/machinery/biogenerator,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/HydroCave) +"jY" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"kc" = (/turf/simulated/wall,/area/survivalpod/superpose/HydroCave) +"kO" = (/obj/effect/decal/cleanable/blood/splatter{color = "red"},/turf/template_noop,/area/template_noop) +"la" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"lU" = (/obj/item/weapon/beartrap/hunting{anchored = 1; deployed = 1; icon_state = "beartrap1"},/turf/simulated/mineral/floor/ignore_mapgen/cave,/area/template_noop) +"lX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/obj/random/trash,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"lY" = (/obj/machinery/atmospherics/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/bed,/obj/item/weapon/bedsheet/pirate,/turf/simulated/floor/carpet,/area/survivalpod/superpose/HydroCave) +"mc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/blood/oil{color = "black"},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"mg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/wall/r_wall,/area/survivalpod/superpose/HydroCave) +"mx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"mz" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"mA" = (/obj/machinery/light/small{dir = 1},/obj/machinery/alarm/monitor{locked = 0; pixel_y = 23; req_access = null},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/carpet,/area/survivalpod/superpose/HydroCave) +"mE" = (/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"mJ" = (/obj/structure/reagent_dispensers/beerkeg/fakenuke,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/HydroCave) +"mV" = (/obj/machinery/light/small,/obj/machinery/alarm/monitor{dir = 1; locked = 0; pixel_y = -23; req_access = null},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/HydroCave) +"nb" = (/obj/machinery/porta_turret/stationary/syndie,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/HydroCave) +"nj" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"nk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Security Checkpoint Maintenance"; req_access_txt = "201"; req_one_access_txt = "0"},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"nV" = (/obj/machinery/vending/deluxe_dinner{req_access = null; req_log_access = null},/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"og" = (/obj/structure/closet/crate,/obj/fiftyspawner/wood,/obj/fiftyspawner/wood,/obj/fiftyspawner/wood/sif,/obj/fiftyspawner/wood/sif,/obj/fiftyspawner/turcarpet,/obj/fiftyspawner/tealcarpet,/obj/fiftyspawner/sblucarpet,/obj/fiftyspawner/purcarpet,/obj/fiftyspawner/oracarpet,/obj/fiftyspawner/blucarpet,/obj/fiftyspawner/marble,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/fiftyspawner/cardboard,/obj/fiftyspawner/cardboard,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1; initialize_directions = 14; tag = "icon-manifold-b-f (NORTH)"},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"oq" = (/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/obj/structure/closet/walllocker_double/north,/turf/simulated/floor/wood,/area/survivalpod/superpose/HydroCave) +"oQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock{id_tag = "awaydorm2"; name = "Dorm 2"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"oX" = (/obj/effect/decal/cleanable/blood/oil{color = "black"},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"oZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/wall/r_wall,/area/survivalpod/superpose/HydroCave) +"pd" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/structure/sign/deathsposal{desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'"; name = "\improper DISPOSAL: LEADS TO EXTERIOR"; pixel_y = 32},/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/HydroCave) +"ph" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"pA" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{base_state = "right"; dir = 4; icon_state = "right"; name = "Hydroponics Desk"; req_access_txt = "201"},/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"pG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8; initialize_directions = 7; tag = "icon-manifold-b-f (WEST)"},/obj/machinery/newscaster{pixel_x = -30},/turf/simulated/floor/carpet,/area/survivalpod/superpose/HydroCave) +"pT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/random/trash,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"qi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/wall,/area/survivalpod/superpose/HydroCave) +"qw" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/obj/machinery/portable_atmospherics/hydroponics,/obj/item/seeds/pumpkinseed,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/HydroCave) +"qN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1; initialize_directions = 14; tag = "icon-manifold-b-f (NORTH)"},/turf/simulated/floor/tiled/red,/area/survivalpod/superpose/HydroCave) +"rn" = (/obj/structure/closet/secure_closet{icon_broken = "secbroken"; icon_closed = "sec"; icon_locked = "sec1"; icon_off = "secoff"; icon_opened = "secopen"; icon_state = "sec1"; name = "security officer's locker"; req_access_txt = "201"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/red,/area/survivalpod/superpose/HydroCave) +"rs" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"rD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8; initialize_directions = 7; tag = "icon-manifold-r-f (WEST)"},/turf/simulated/floor/carpet,/area/survivalpod/superpose/HydroCave) +"rK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/random/trash,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"rP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"se" = (/turf/simulated/floor/tiled{icon_state = "dark"},/area/survivalpod/superpose/HydroCave) +"sh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/newscaster/security_unit{pixel_x = -30},/obj/effect/decal/cleanable/dirt,/obj/structure/table/standard,/turf/simulated/floor/tiled/red,/area/survivalpod/superpose/HydroCave) +"sm" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor/tiled/steel_grid,/area/survivalpod/superpose/HydroCave) +"sQ" = (/obj/machinery/light{dir = 4},/obj/machinery/alarm/monitor{dir = 8; locked = 0; pixel_x = 23; req_access = null},/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"sR" = (/obj/structure/table/steel,/obj/item/stack/material/phoron{amount = 5},/obj/item/stack/material/phoron{amount = 5},/obj/fiftyspawner/wood,/obj/fiftyspawner/steel,/turf/simulated/floor,/area/survivalpod/superpose/HydroCave) +"sZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"tt" = (/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"; tag = "icon-pipe-j1 (WEST)"},/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"tu" = (/obj/machinery/atmospherics/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/tiled/red,/area/survivalpod/superpose/HydroCave) +"up" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/power/port_gen/pacman,/obj/structure/cable,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"uH" = (/obj/structure/toilet{dir = 1},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/HydroCave) +"vD" = (/obj/machinery/vending/hydronutrients,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/HydroCave) +"vK" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"wi" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8; initialize_directions = 7; tag = "icon-manifold-b-f (WEST)"},/obj/structure/closet/secure_closet{desc = "It's a secure locker for personnel. The first card swiped gains control."; icon_broken = "cabinetdetective_broken"; icon_closed = "cabinetdetective"; icon_locked = "cabinetdetective_locked"; icon_off = "cabinetdetective_broken"; icon_opened = "cabinetdetective_open"; icon_state = "cabinetdetective"; locked = 0; name = "personal closet"; req_access_txt = "201"},/obj/item/clothing/under/suit_jacket/female,/turf/simulated/floor/carpet,/area/survivalpod/superpose/HydroCave) +"wj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/bed/chair/office/dark,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"wo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"wz" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8; initialize_directions = 7; tag = "icon-manifold-b-f (WEST)"},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"wC" = (/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/grass,/area/survivalpod/superpose/HydroCave) +"wO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"wV" = (/turf/simulated/floor/tiled/techfloor,/area/template_noop) +"xe" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"xz" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/obj/machinery/portable_atmospherics/hydroponics,/obj/item/seeds/pumpkinseed,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/HydroCave) +"xL" = (/obj/structure/table/glass,/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"xR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/red,/area/survivalpod/superpose/HydroCave) +"xV" = (/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"xZ" = (/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"yk" = (/obj/structure/bed,/turf/simulated/floor/carpet,/area/survivalpod/superpose/HydroCave) +"yn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"yw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/blood/oil{color = "black"},/obj/random/trash,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"yL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/wall,/area/survivalpod/superpose/HydroCave) +"zf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/wall,/area/survivalpod/superpose/HydroCave) +"zj" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"zz" = (/obj/machinery/door/airlock/angled_tgmc/wide/generic_steel{dir = 4},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/HydroCave) +"zA" = (/turf/simulated/mineral/floor/ignore_mapgen/cave,/area/template_noop) +"zB" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"zR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/closet,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"Aa" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1; initialize_directions = 14; tag = "icon-manifold-b-f (NORTH)"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"Ax" = (/turf/simulated/floor/tiled/red,/area/survivalpod/superpose/HydroCave) +"AE" = (/obj/machinery/light{dir = 8},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"AV" = (/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"Bs" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"Bv" = (/obj/effect/fusion_em_field,/turf/simulated/mineral/floor/ignore_mapgen/cave,/area/template_noop) +"By" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled/red,/area/survivalpod/superpose/HydroCave) +"BI" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"BX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"BY" = (/obj/machinery/newscaster{pixel_y = -28},/turf/simulated/floor/carpet,/area/survivalpod/superpose/HydroCave) +"Ci" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/decal/cleanable/blood/oil{color = "black"},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"Cs" = (/obj/machinery/atmospherics/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/table/glass,/turf/simulated/floor/carpet,/area/survivalpod/superpose/HydroCave) +"Ct" = (/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/HydroCave) +"CT" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/red,/area/survivalpod/superpose/HydroCave) +"CV" = (/obj/structure/safe/floor,/obj/item/weapon/moneybag/vault,/obj/item/weapon/moneybag/vault,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/HydroCave) +"DN" = (/obj/structure/closet/crate,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"DW" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"Eh" = (/obj/structure/sink{pixel_y = 25},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/HydroCave) +"EB" = (/obj/machinery/alarm/monitor{dir = 4; locked = 0; pixel_x = -23; req_access = null},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/filingcabinet,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/red,/area/survivalpod/superpose/HydroCave) +"EC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/wall,/area/survivalpod/superpose/HydroCave) +"EE" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"Fb" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/reagent_containers/food/snacks/clownburger,/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"Fc" = (/obj/structure/sign/warning/secure_area,/turf/simulated/wall/r_wall,/area/survivalpod/superpose/HydroCave) +"Ff" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8; initialize_directions = 7; tag = "icon-manifold-r-f (WEST)"},/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/turf/simulated/floor/tiled/red,/area/survivalpod/superpose/HydroCave) +"Fg" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"Fh" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/obj/structure/bed,/obj/item/weapon/bedsheet/mime,/turf/simulated/floor/carpet,/area/survivalpod/superpose/HydroCave) +"Fn" = (/obj/effect/decal/cleanable/blood/tracks{color = "red"; desc = "Your instincts say you shouldn't be following these."; icon = 'icons/effects/blood.dmi'; icon_state = "tracks"},/turf/template_noop,/area/template_noop) +"FB" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/tiled/red,/area/survivalpod/superpose/HydroCave) +"Ge" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"Gf" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"Gg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"Gj" = (/obj/structure/disposalpipe/segment,/obj/machinery/portable_atmospherics/hydroponics,/obj/item/seeds/pumpkinseed,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/HydroCave) +"Gm" = (/obj/structure/closet/crate/hydroponics,/obj/structure/flora/pumpkin,/obj/structure/flora/pumpkin,/obj/structure/flora/pumpkin,/obj/structure/flora/pumpkin,/obj/structure/flora/pumpkin,/obj/structure/flora/pumpkin,/obj/structure/flora/pumpkin,/obj/structure/flora/pumpkin,/obj/structure/flora/pumpkin,/obj/structure/flora/pumpkin,/obj/structure/flora/pumpkin,/turf/simulated/floor/tiled{icon_state = "dark"},/area/survivalpod/superpose/HydroCave) +"Gx" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/HydroCave) +"Gy" = (/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"GJ" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"Hr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/table/standard,/turf/simulated/floor/tiled/red,/area/survivalpod/superpose/HydroCave) +"HA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/closet/secure_closet{desc = "It's a secure locker for personnel. The first card swiped gains control."; icon_broken = "cabinetdetective_broken"; icon_closed = "cabinetdetective"; icon_locked = "cabinetdetective_locked"; icon_off = "cabinetdetective_broken"; icon_opened = "cabinetdetective_open"; icon_state = "cabinetdetective"; locked = 0; name = "personal closet"; req_access_txt = "201"},/obj/item/clothing/under/pj/blue,/turf/simulated/floor/carpet,/area/survivalpod/superpose/HydroCave) +"HB" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1; initialize_directions = 14; tag = "icon-manifold-r-f (NORTH)"},/turf/simulated/wall/r_wall,/area/survivalpod/superpose/HydroCave) +"HE" = (/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/flora/pumpkin,/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"HP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/random/trash,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"Ig" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"Im" = (/obj/effect/decal/cleanable/blood/tracks{color = "red"; desc = "Your instincts say you shouldn't be following these."; icon = 'icons/effects/blood.dmi'; icon_state = "tracks"},/turf/simulated/mineral/floor/ignore_mapgen/cave,/area/template_noop) +"In" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"It" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"Iu" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"ID" = (/obj/structure/sink{pixel_y = 25},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/HydroCave) +"IY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1; initialize_directions = 14; tag = "icon-manifold-b-f (NORTH)"},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"Jj" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"Jp" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/sign/deathsposal{desc = "A warning sign which reads 'DISPOSAL: LEADS TO EXTERIOR'"; name = "\improper DISPOSAL: LEADS TO EXTERIOR"; pixel_y = -32},/turf/simulated/floor/tiled{icon_state = "dark"},/area/survivalpod/superpose/HydroCave) +"Ju" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/table/standard,/turf/simulated/floor/tiled/red,/area/survivalpod/superpose/HydroCave) +"JY" = (/turf/simulated/wall/r_wall,/area/survivalpod/superpose/HydroCave) +"Kb" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"Kp" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"Ku" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"KK" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"KO" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"Lg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/decal/cleanable/blood/oil{color = "black"},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"LO" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"LY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"Mj" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"Ms" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/reagent_dispensers/watertank,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"My" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/wall/r_wall,/area/survivalpod/superpose/HydroCave) +"MF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"MM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/portable_atmospherics/hydroponics,/obj/item/seeds/pumpkinseed,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/HydroCave) +"Nd" = (/obj/structure/table/standard,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/HydroCave) +"Nq" = (/obj/machinery/atmospherics/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"Nw" = (/obj/structure/flora/pumpkin,/turf/simulated/floor/tiled{icon_state = "dark"},/area/survivalpod/superpose/HydroCave) +"NA" = (/obj/item/toy/plushie/box,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/HydroCave) +"NF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Hydroponics Maintenance"; req_access_txt = "201"},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"NI" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/portable_atmospherics/hydroponics,/obj/item/seeds/pumpkinseed,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/HydroCave) +"NO" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled{icon_state = "dark"},/area/survivalpod/superpose/HydroCave) +"Oh" = (/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/HydroCave) +"Om" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet,/area/survivalpod/superpose/HydroCave) +"Oz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/random/trash,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"OB" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"OV" = (/obj/structure/closet/crate,/obj/fiftyspawner/plasteel,/obj/fiftyspawner/plasteel,/obj/fiftyspawner/phoronrglass,/obj/fiftyspawner/phoronrglass,/obj/item/stack/material/lead{amount = 50},/obj/item/stack/material/lead{amount = 50},/obj/fiftyspawner/gold,/obj/fiftyspawner/phoron,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"Pi" = (/obj/machinery/light/small,/obj/machinery/alarm/monitor{dir = 1; locked = 0; pixel_y = -23; req_access = null},/obj/machinery/atmospherics/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/carpet,/area/survivalpod/superpose/HydroCave) +"Pm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/random/trash,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"Pn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock{id_tag = "awaydorm1"; name = "Dorm 1"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"Pu" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"PE" = (/obj/structure/closet,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"PQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/wall,/area/survivalpod/superpose/HydroCave) +"Qd" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/portable_atmospherics/hydroponics,/obj/item/seeds/pumpkinseed,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/HydroCave) +"Qo" = (/obj/item/stack/rods,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"Qz" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/tiled/steel_grid,/area/survivalpod/superpose/HydroCave) +"QE" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"QF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/reagent_dispensers/watertank/high,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"QK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"QT" = (/obj/machinery/alarm/monitor{locked = 0; pixel_y = 23; req_access = null},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"Rb" = (/obj/random/trash,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"Rq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"Rx" = (/obj/structure/table/standard,/obj/machinery/reagentgrinder,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/HydroCave) +"RB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/window/basic{dir = 8; tag = "icon-window (WEST)"},/obj/random/trash,/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"RF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/red,/area/survivalpod/superpose/HydroCave) +"RG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/sink{pixel_y = 25},/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"RP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/newscaster{pixel_x = 30},/turf/simulated/floor/carpet,/area/survivalpod/superpose/HydroCave) +"RT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"Sv" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"; req_access_txt = "0"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/steel_grid,/area/survivalpod/superpose/HydroCave) +"SM" = (/obj/structure/table/standard,/obj/structure/flora/pumpkin,/obj/structure/flora/pumpkin,/obj/structure/flora/pumpkin,/obj/structure/flora/pumpkin,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/HydroCave) +"SP" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/angled_tgmc/dropship2_pilot,/turf/simulated/floor/tiled/steel_grid,/area/survivalpod/superpose/HydroCave) +"Ta" = (/obj/structure/extinguisher_cabinet{pixel_y = -28},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"Tj" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"TE" = (/obj/structure/closet/walllocker_double/south{name = s},/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"TP" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"TX" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1; initialize_directions = 14; tag = "icon-manifold-r-f (NORTH)"},/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"Uq" = (/obj/machinery/atmospherics/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/simulated/floor/tiled/red,/area/survivalpod/superpose/HydroCave) +"UW" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"Vx" = (/obj/machinery/power/apc/alarms_hidden{dir = 1; pixel_y = 20},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"VB" = (/obj/item/weapon/beartrap/hunting{anchored = 1; deployed = 1; icon_state = "beartrap1"},/turf/template_noop,/area/template_noop) +"VF" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "0"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"Wd" = (/obj/structure/table/wooden_reinforced,/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"Wt" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "0"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/steel_grid,/area/survivalpod/superpose/HydroCave) +"WC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/reagent_dispensers/fueltank,/obj/structure/window/basic{dir = 4; tag = "icon-window (EAST)"},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"WE" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{dir = 4; name = "Hydroponics Desk"; req_access_txt = "201"},/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"WL" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/item/seeds/pumpkinseed,/turf/simulated/floor/tiled/hydro,/area/survivalpod/superpose/HydroCave) +"WN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet,/area/survivalpod/superpose/HydroCave) +"WT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"WU" = (/obj/structure/flora/pumpkin,/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"WY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"Xj" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1; initialize_directions = 14; tag = "icon-manifold-r-f (NORTH)"},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"Xw" = (/obj/effect/decal/cleanable/dirt,/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"Xx" = (/obj/machinery/camera{c_tag = "Central Hallway"; dir = 1; network = list("UO45")},/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"XS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"XW" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"Yb" = (/turf/template_noop,/area/template_noop) +"Yf" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"Yo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/red,/area/survivalpod/superpose/HydroCave) +"Yq" = (/obj/machinery/vending/coffee,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"YE" = (/obj/effect/decal/cleanable/blood/tracks{color = "red"; desc = "Your instincts say you shouldn't be following these."; dir = 4; icon = 'icons/effects/blood.dmi'; icon_state = "tracks"},/turf/simulated/mineral/floor/ignore_mapgen/cave,/area/template_noop) +"YL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"YN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0"; req_one_access_txt = "0"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"YS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/HydroCave) +"Zq" = (/obj/effect/decal/cleanable/blood/splatter{color = "red"},/turf/simulated/mineral/floor/ignore_mapgen/cave,/area/template_noop) +"ZJ" = (/obj/machinery/vending/cola,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) +"ZM" = (/obj/structure/sign/vacuum{desc = "A beacon used by a teleporter."; icon = 'icons/obj/radio.dmi'; icon_state = "beacon"; name = "tracking beacon"},/turf/simulated/floor/tiled/red,/area/survivalpod/superpose/HydroCave) +"ZO" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/survivalpod/superpose/HydroCave) +"ZW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/survivalpod/superpose/HydroCave) + +(1,1,1) = {" +YbYbYbYbYbYbYbYbYbYbYbYbYbYbYbYbYbYbYbYbjmjmjmjmjmYbYbYbYbYbYbYbYbYbYbYbYbYbYbYb +YbYbjmjmYbYbYbYbYbYbYbYbYbYbYbYbzAzAjmjmjmjmjmjmjmjmjmYbYbYbYbYbYbYbYbYbjmjmYbYb +YbjmjmjmYbYbYbYbYbYbYbYbYbzAjmjmjmjmjmjmjmjmjmjmjmjmjmjmYbYbYbYbYbYbYbYbjmjmYbYb +YbYbYbYbYbYbYbYbYbYbzAJYJYJYJYJYJYJYJYjmjmjmjmjmjmjmjmjmjmYbYbYbYbYbFnYbjmYbYbYb +YbYbYbYbYbjmzAzAzAzAjmJYJYJYJYJYJYJYJYjmjmjmjmjmjmjmjmjmjmjmYbYbYbYbFnYbYbYbYbYb +YbYbYbYbzAjmzAzAjmjmjmJYJYCVnbnbCVJYJYjmjmjmjmjmjmjmjmjmjmjmjmjmzAzAFnYbYbYbYbYb +YbYbYbjmzAzAzAjmjmjmjmJYJYmJOhOhNAJYJYjmjmjmjmjmjmjmjmjmjmjmjmjmjmzAFnYbYbYbYbYb +YbYbjmjmzAzAjmjmjmjmjmJYJYCVOhOhCVJYJYjmjmjmjmjmjmjmjmzAzAzAjmjmjmjmYbYbYbYbYbYb +YbYbjmjmImjmjmjmjmjmjmJYJYJYzzbrJYJYJYjmjmjmjmjmjmjmjmzABvjmzAjmjmjmzAYbYbYbYbYb +jmjmjmjmzAzAjmjmjmjmjmJYJYJYzzbrJYJYJYjmjmjmjmjmjmjmjmzAzAzAjmjmjmjmzAYbYbYbYbYb +jmjmjmjmZqlUjmjmjmJYJYJYJYdhzzbrFcJYJYJYJYjmjmjmjmjmjmzAzAjmjmjmjmjmzAjmjmYbYbYb +zAjmjmjmzAImjmjmjmkcVxGyGyGyGyGyGyGyGynVkcjmjmjmjmjmjmjmjmjmzAzAzAzAzAzAzAYbYbYb +zAjmjmjmjmzAjmjmjmkcupcYcYxVxVxVxVxVcYYqkcjmjmjmjmjmjmjmjmzAjmlUjmjmjmjmzAjmjmYb +jmjmjmjmjmImjmjmjmkcsRcYxVxVxVcYcYxVxVZJkcjmjmjmjmjmjmjmzAzAzAzAjmjmjmzAzAzAjmYb +jmjmjmjmzAzAjmjmjmJYJYAEmEKbTPTPKKmEfoJYJYjmjmjmjmjmzAzAzAZqjmjmjmjmjmzAzAzAjmYb +jmjmjmzAzAzAzAzAzAYEBsxVGyAxAxAxCTGyxVBszAzAzAYEYEYEjmzAzAjmjmjmjmjmzAzAzAzAjmYb +jmjmzAYEzAYEzAYEzAzAzjxVZMfjFbWdByAxxVerzAYEzAjmzAzAYEzAjmjmjmjmjmjmzAzAzAjmjmYb +jmjmzAzAjmjmJYJYJYJYJYhMtufjWdWdByFBxVerzAzAzAjmjmjmjmjmjmjmjmjmjmjmZqzAzAjmjmYb +jmjmzAjmkckckcEhIDEhJYAVRFAxAxAxAxxRxVzjzAjmjmjmjmjmjmjmjmjmjmjmjmzAzAjmjmjmYbYb +jmzAzAjmJYoXWtGxmVCtSvxVWTkckckckcXSxVJYjmjmjmjmjmjmjmjmjmjmjmjmjmImjmjmjmzAYbYb +ZqYbzAjmJYRbkcsmkcQzJYLOynbzYodGRqYSJjJYjmjmjmjmjmjmjmjmjmjmjmjmzAlUjmjmjmzAYbYb +YbzAzAjmkcRbkcuHCtavJYDNTExVmxihcYTEDNJYjmjmjmjmjmjmjmjmjmjmjmjmzAImjmjmjmzAYbYb +YbzAjmjmkcRbJYyLzfahahzfiDahrsZWzfzfahHBzfzfqijmjmjmjmjmzAzAzAjmzAzAjmjmjmjmYbYb +jmjmjmjmJYGJRbIgpTwoAafzmcYNGeepYNIYworKLYywoZjmjmjmjmzAzAzAzAzAzAImzAzAjmjmjmYb +jmjmjmkckckckccvjuJYmgkccvJYPuxVkcmgkcoZJYWYcvjmjmjmzAzAzAzAzAzAzAzAzAzAjmjmjmYb +jmjmjmkcFgTjPEcvWYJYpGmAHAkccYxVJYwimARPkcWYcvkcJYJYJYJYJYJYKbKKJYJYJYJYJYjmjmYb +jmjmjmkcatxeZOBsWYkccNOmlYkccYxVkcFhOmCsJYWYaFYLYLYLHPHPYLHPPmXjYLRBQFWCJYjmjmjm +jmjmjmkcBIQoKbIujuJYkcoQkcJYxZxZkckcPnkcJYzROVogECECECMyECMyMyQKwowowojgJYjmjmjm +jmjmjmkcpTLYworKRTVFcYitcIoqxVxVoqnjihdIkckcJYPQkcvDgXpdjijwJYoZkcJYkclXJYjmjmjm +jmjmjmkclXJYJYoZJYJYaMMFwOxVxVxVxVBXsZGyKbKKMsRGQTGgMjttMjGgHEciGyeVkclXJYjmjmjm +jmjmjmkcjuJYrnFfUqiYxVxVjYfcxLxLXwjYzBMjDWQEOBMMseQdseWLseWLNwxzGyeVkcOzJYjmjmjm +YbjmjmkcCinkqNEEAxBIGyxVGyGfTPTPKumzYfGyxZxVGyqwNwWLseWLNwWLseNIGyRxJYWYJYjmjmjm +YbjmjmkckcJYEBmxCTfmGyxVGyerwCakerGyYfGyKbKKGyWLseWLseWLNwWLseGjWUNdJYwzJYjmjmjm +YbjmjmjmjmJYshwjAxgaGyxVmzerakdUerGyYfGyGyWEGyWLNwQdseWLseWLseGjevSMkcOzJYjmjmjm +YbkOYbjmjmJYHrJuaXBIGyxVmzdzTPTPIuGyYfGymzpAmzGyGyGymzGycTmzWUInGyJYJYLgJYjmjmYb +YbYbYbjmjmJYmgoZJYJYLOxVNqfcxLxLfMNqYfsQJYJYJYKbTPTPKKJYJYGmfNghNONFlaXWJYjmjmYb +YbVBjmjmjmkccNrDWNcGrPrPphTXrPrPrPItKOUWJYjmzAzAzAzAzAjmJYJYJYJYJYJYKbKpJYjmjmYb +YbkOYbYbjmJYBYPiykkcvKxVxVmxXxTacYseseJpJYjmYbYbYbYbYbjmjmjmjmzAzAzAzAzAjmjmjmYb +YbYbFnYbjmJYJYkckcJYJYSPJYSPJYJYKbTPKKJYJYYbYbYbjmYbYbYbjmjmYbYbYbYbYbYbjmjmYbYb +YbYbFnYbYbjmjmjmjmjmwVwVwVwVwVidYbYbYbYbYbYbYbYbYbYbYbYbYbYbYbYbYbYbYbYbYbYbYbYb +"} diff --git a/modular_chomp/maps/submaps/shelters/LargeAlienShip-60x29.dmm b/modular_chomp/maps/submaps/shelters/LargeAlienShip-60x29.dmm new file mode 100644 index 0000000000..f7a4ff9628 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/LargeAlienShip-60x29.dmm @@ -0,0 +1,279 @@ +"ao" = (/obj/machinery/atmospherics/binary/circulator,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"as" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"at" = (/obj/structure/prop/alien/pod/hybrid,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/LargeAlienShip) +"aG" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced,/obj/machinery/door/blast/regular{id = "reactorblastalien"; layer = 3.3; name = "Reactor Blast Door"},/obj/structure/fans/hardlight,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"aH" = (/obj/machinery/optable,/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/LargeAlienShip) +"aJ" = (/obj/effect/floor_decal/techfloor{dir = 5},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) +"bc" = (/obj/machinery/power/supermatter/shard,/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/survivalpod/superpose/LargeAlienShip) +"bi" = (/turf/simulated/floor,/area/template_noop) +"bm" = (/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) +"bo" = (/obj/structure/closet/secure_closet/egg/xenomorph,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"bp" = (/obj/effect/floor_decal/techfloor/corner{dir = 9},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) +"bv" = (/obj/structure/particle_accelerator/power_box{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"bw" = (/obj/structure/prop/alien/pod/open,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"bH" = (/obj/structure/table/alien/blue,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/item/weapon/hand_labeler,/obj/item/device/tape/random,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"bO" = (/obj/effect/floor_decal/techfloor,/obj/structure/bed/chair/wood/wings{dir = 1},/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/LargeAlienShip) +"cp" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"cB" = (/obj/structure/prop/alien/computer/camera{dir = 4},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"cL" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1; target_pressure = 200},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"cP" = (/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/LargeAlienShip) +"cX" = (/obj/effect/floor_decal/techfloor/corner{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/LargeAlienShip) +"db" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/machinery/door/blast/regular{id = "reactorblastalien"; layer = 3.3; name = "Reactor Blast Door"},/obj/structure/fans/hardlight,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"de" = (/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/LargeAlienShip) +"dg" = (/obj/structure/loot_pile/surface/alien/engineering,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"ds" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/obj/machinery/door/blast/regular{dir = 4; id = "ReactorBlastAlien"; layer = 3.3; name = "Reactor Blast Door"},/obj/structure/fans/hardlight,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"dx" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"dz" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"dB" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"dC" = (/obj/structure/particle_accelerator/end_cap{dir = 8},/obj/effect/floor_decal/techfloor/hole{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"dS" = (/obj/structure/cryofeed{dir = 2},/obj/machinery/light/small/emergency,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/LargeAlienShip) +"dZ" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced,/obj/structure/fans/hardlight,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"ex" = (/obj/machinery/particle_accelerator/control_box,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"eB" = (/obj/structure/closet/alien,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/LargeAlienShip) +"eT" = (/obj/effect/simple_portal/linked{portal_id = 7},/turf/simulated/floor/redgrid/animated,/area/survivalpod/superpose/LargeAlienShip) +"fc" = (/turf/simulated/floor/carpet/tealcarpet,/area/survivalpod/superpose/LargeAlienShip) +"fi" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"fm" = (/obj/machinery/computer/security/abductor{icon_screen = null},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"fr" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"fA" = (/obj/structure/cryofeed,/obj/structure/window/reinforced/survival_pod{dir = 5},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/LargeAlienShip) +"fK" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"gc" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"gt" = (/obj/structure/prop/statue/phoron,/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/survivalpod/superpose/LargeAlienShip) +"gz" = (/obj/structure/bed/chair/wood/wings,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/LargeAlienShip) +"gA" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"gW" = (/obj/machinery/door/airlock/alien{req_one_access = null},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"hw" = (/obj/machinery/vending/engivend{emagged = 1; req_access = list(777); req_log_access = null},/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/LargeAlienShip) +"hR" = (/obj/machinery/cryopod{dir = 4},/obj/structure/cryofeed{pixel_x = -32},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) +"hV" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"iw" = (/obj/structure/bed/nest,/turf/simulated/floor/carpet/blue,/area/survivalpod/superpose/LargeAlienShip) +"iy" = (/obj/structure/table/alien/blue,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/item/device/sleevemate,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"iM" = (/obj/effect/floor_decal/techfloor/corner{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/LargeAlienShip) +"iQ" = (/obj/structure/particle_accelerator/particle_emitter/center{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"jd" = (/obj/machinery/atmospherics/pipe/tank/phoron/full,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"jg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/shuttle/wall/alien/blue/hard_corner,/area/survivalpod/superpose/LargeAlienShip) +"jh" = (/obj/structure/loot_pile/surface/alien/engineering,/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/LargeAlienShip) +"ji" = (/obj/structure/closet/alien,/obj/random/toolbox,/obj/random/toolbox,/obj/random/toolbox,/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/item/weapon/storage/toolbox/syndicate,/obj/fiftyspawner/phoronrglass,/obj/fiftyspawner/phoronrglass,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/LargeAlienShip) +"jm" = (/obj/structure/table/alien,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/LargeAlienShip) +"jr" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) +"jW" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"jZ" = (/obj/machinery/cryopod,/obj/structure/cryofeed{dir = 4; pixel_x = 32},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) +"kq" = (/obj/machinery/gateway/brass{dir = 1},/obj/machinery/light/poi{dir = 1},/turf/simulated/floor/flock,/area/survivalpod/superpose/LargeAlienShip) +"kD" = (/obj/machinery/atmospherics/binary/pump/on{target_pressure = 200},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"kG" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 8},/obj/machinery/door/blast/regular{id = "reactorblastalien"; layer = 3.3; name = "Reactor Blast Door"},/obj/structure/fans/hardlight,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"kO" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/machinery/door/window/brigdoor/eastleft{name = "Laser Armor"},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/alien{pixel_y = -6},/obj/item/weapon/gun/energy/alien,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/LargeAlienShip) +"kS" = (/obj/structure/table/bench/glass,/turf/simulated/floor/carpet/tealcarpet,/area/survivalpod/superpose/LargeAlienShip) +"kV" = (/obj/effect/floor_decal/techfloor/corner{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/LargeAlienShip) +"lb" = (/obj/machinery/gateway/brass,/turf/simulated/floor/flock,/area/survivalpod/superpose/LargeAlienShip) +"lp" = (/turf/simulated/shuttle/wall/alien/blue/no_join,/area/survivalpod/superpose/LargeAlienShip) +"lJ" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"mm" = (/obj/machinery/power/emitter/gyrotron,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/cyan,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"mv" = (/obj/structure/table/alien/blue,/obj/item/weapon/reagent_containers/glass/beaker/bluespace,/obj/item/weapon/reagent_containers/glass/beaker/bluespace{pixel_x = -7},/obj/item/weapon/storage/belt/medical/alien,/obj/item/weapon/storage/belt/medical/alien{pixel_y = 6},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/LargeAlienShip) +"my" = (/obj/machinery/oxygen_pump/anesthetic,/turf/simulated/shuttle/wall/alien/blue/hard_corner,/area/survivalpod/superpose/LargeAlienShip) +"mK" = (/obj/machinery/power/emitter/gyrotron,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/cyan,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"mQ" = (/obj/structure/closet/alien,/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/LargeAlienShip) +"mT" = (/obj/machinery/cryopod,/obj/structure/cryofeed{dir = 4; pixel_x = 32},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"nj" = (/obj/structure/table/alien,/obj/item/weapon/soap/deluxe,/obj/item/weapon/soap/deluxe,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/LargeAlienShip) +"nt" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"nv" = (/obj/structure/prop/alien/computer/camera{dir = 1},/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"nx" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"nB" = (/obj/structure/closet/alien,/obj/random/toolbox,/obj/random/toolbox,/obj/random/toolbox,/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/item/weapon/storage/toolbox/syndicate,/obj/fiftyspawner/plasteel,/obj/fiftyspawner/plasteel,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/LargeAlienShip) +"nC" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"oh" = (/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/machinery/door/window/brigdoor/westleft{name = "Combat Armor"},/obj/structure/table/rack/shelf/steel,/obj/item/clothing/suit/armor/alien/tank,/obj/item/clothing/head/helmet/alien/tank,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/LargeAlienShip) +"oi" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/smes/buildable{icon = 'icons/obj/alien_smes.dmi'; icon_state = "unit"; input_level = 950000; name = "Alien Royal Capacitor"; output_level = 950000},/obj/structure/cable/cyan,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"op" = (/obj/structure/window/reinforced/survival_pod{dir = 10},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/LargeAlienShip) +"oI" = (/obj/effect/floor_decal/techfloor,/obj/machinery/vending/deluxe_dinner{req_access = null; req_log_access = null},/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/LargeAlienShip) +"oM" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"oR" = (/obj/structure/table/darkglass,/obj/random/maintenance/security,/obj/random/maintenance/security,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) +"ph" = (/obj/machinery/power/generator{anchored = 1; dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"pi" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"pq" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/fans/hardlight,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"pu" = (/obj/machinery/sleeper{dir = 4; emagged = 1; initial_bin_rating = 4},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/LargeAlienShip) +"pC" = (/obj/effect/floor_decal/techfloor,/obj/structure/prop/alien/dispenser,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) +"qb" = (/obj/machinery/smartfridge/survival_pod{desc = "A mysterious machine which can fabricate many tools for acquiring test subjects."; icon = 'icons/obj/abductor_vr.dmi'; icon_base = "dispenser_2way"; icon_state = "dispenser_2way"; name = "Implant-Co"},/obj/item/weapon/implantcase/taser,/obj/item/weapon/implantcase/taser,/obj/item/weapon/implantcase/taser,/obj/item/weapon/implantcase/taser,/obj/item/weapon/implantcase/taser,/obj/item/weapon/implantcase/taser,/obj/item/weapon/implantcase/taser,/obj/item/weapon/implantcase/taser,/obj/item/weapon/implantcase/taser,/obj/item/weapon/implantcase/taser,/obj/item/weapon/implantcase/vrlanguage,/obj/item/weapon/implantcase/vrlanguage,/obj/item/weapon/implantcase/vrlanguage,/obj/item/weapon/implantcase/vrlanguage,/obj/item/weapon/implantcase/vrlanguage,/obj/item/weapon/implantcase/vrlanguage,/obj/item/weapon/implantcase/vrlanguage,/obj/item/weapon/implantcase/vrlanguage,/obj/item/weapon/implantcase/vrlanguage,/obj/item/weapon/implantcase/vrlanguage,/obj/item/weapon/implantcase/sprinter,/obj/item/weapon/implantcase/sprinter,/obj/item/weapon/implantcase/sprinter,/obj/item/weapon/implantcase/sprinter,/obj/item/weapon/implantcase/sprinter,/obj/item/weapon/implantcase/sprinter,/obj/item/weapon/implantcase/sprinter,/obj/item/weapon/implantcase/sprinter,/obj/item/weapon/implantcase/sprinter,/obj/item/weapon/implantcase/sprinter,/obj/item/weapon/implantcase/shades,/obj/item/weapon/implantcase/shades,/obj/item/weapon/implantcase/shades,/obj/item/weapon/implantcase/shades,/obj/item/weapon/implantcase/shades,/obj/item/weapon/implantcase/shades,/obj/item/weapon/implantcase/shades,/obj/item/weapon/implantcase/shades,/obj/item/weapon/implantcase/shades,/obj/item/weapon/implantcase/shades,/obj/item/weapon/implantcase/freedom,/obj/item/weapon/implantcase/freedom,/obj/item/weapon/implantcase/freedom,/obj/item/weapon/implantcase/freedom,/obj/item/weapon/implantcase/freedom,/obj/item/weapon/implantcase/freedom,/obj/item/weapon/implantcase/freedom,/obj/item/weapon/implantcase/freedom,/obj/item/weapon/implantcase/freedom,/obj/item/weapon/implantcase/freedom,/obj/item/weapon/implantcase/death_alarm,/obj/item/weapon/implantcase/death_alarm,/obj/item/weapon/implantcase/death_alarm,/obj/item/weapon/implantcase/death_alarm,/obj/item/weapon/implantcase/death_alarm,/obj/item/weapon/implantcase/death_alarm,/obj/item/weapon/implantcase/death_alarm,/obj/item/weapon/implantcase/death_alarm,/obj/item/weapon/implantcase/death_alarm,/obj/item/weapon/implantcase/death_alarm,/obj/item/weapon/implantcase/exile,/obj/item/weapon/implantcase/exile,/obj/item/weapon/implantcase/exile,/obj/item/weapon/implantcase/exile,/obj/item/weapon/implantcase/exile,/obj/item/weapon/implantcase/exile,/obj/item/weapon/implantcase/exile,/obj/item/weapon/implantcase/exile,/obj/item/weapon/implantcase/exile,/obj/item/weapon/implantcase/exile,/obj/item/weapon/implanter,/obj/item/weapon/implanter,/obj/item/weapon/implanter,/obj/item/weapon/implanter,/obj/item/weapon/implanter,/obj/item/weapon/implantcase/toolkit,/obj/item/weapon/implantcase/toolkit,/obj/item/weapon/implantcase/toolkit,/obj/item/weapon/implantcase/toolkit,/obj/item/weapon/implantcase/toolkit,/obj/item/weapon/implantcase/toolkit,/obj/item/weapon/implantcase/armblade,/obj/item/weapon/implantcase/armblade,/obj/item/weapon/implantcase/armblade,/obj/item/weapon/implantcase/armblade,/obj/item/weapon/implantcase/armblade,/obj/item/weapon/implantcase/armblade,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/LargeAlienShip) +"qe" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/smes/buildable{icon = 'icons/obj/alien_smes.dmi'; icon_state = "unit"; input_level = 950000; name = "Alien Royal Capacitor"; output_level = 950000},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"qC" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/LargeAlienShip) +"qQ" = (/turf/simulated/shuttle/floor/alien,/area/survivalpod/superpose/LargeAlienShip) +"qS" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"qY" = (/obj/machinery/cryopod{dir = 4},/obj/structure/cryofeed{pixel_x = -32},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"rx" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"rI" = (/obj/structure/bed/nest,/turf/simulated/floor/carpet/tealcarpet,/area/survivalpod/superpose/LargeAlienShip) +"rL" = (/obj/effect/floor_decal/techfloor{dir = 10},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) +"se" = (/obj/effect/alien/weeds/node,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"ss" = (/obj/structure/prop/alien/computer{dir = 1},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"td" = (/obj/structure/table/alien,/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"tf" = (/obj/machinery/gateway/brass{dir = 6},/turf/simulated/floor/flock,/area/survivalpod/superpose/LargeAlienShip) +"tx" = (/obj/machinery/gateway/brass{dir = 4},/turf/simulated/floor/flock,/area/survivalpod/superpose/LargeAlienShip) +"tF" = (/obj/machinery/cryopod/robot,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) +"tK" = (/obj/structure/prop/alien/computer/hybrid,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"uf" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/table/alien/blue,/obj/item/weapon/paper_bin,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen/reagent/paralysis,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/LargeAlienShip) +"uI" = (/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/machinery/door/window/brigdoor/eastright{name = "Laser Armor"},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/darkmatter{pixel_y = 6},/obj/item/weapon/gun/energy/darkmatter,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/LargeAlienShip) +"uQ" = (/obj/machinery/power/rad_collector,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"uT" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"uU" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"ve" = (/obj/structure/table/alien/blue,/obj/structure/window/reinforced/survival_pod,/obj/item/weapon/hand_labeler,/obj/item/device/tape/random,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"vg" = (/obj/structure/table/bench/glass,/turf/simulated/floor/carpet,/area/survivalpod/superpose/LargeAlienShip) +"vH" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"vQ" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/LargeAlienShip) +"vV" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"wr" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"wD" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"xs" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"xC" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"xG" = (/obj/structure/prop/alien/computer/hybrid{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"xT" = (/obj/structure/table/darkglass,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/LargeAlienShip) +"ya" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"yi" = (/obj/structure/table/darkglass,/obj/random/maintenance/clean,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/LargeAlienShip) +"yv" = (/obj/structure/prop/fake_ai{name = "P0ps1ck13"},/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/LargeAlienShip) +"yI" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/LargeAlienShip) +"yM" = (/obj/machinery/gateway/brass{dir = 10},/turf/simulated/floor/flock,/area/survivalpod/superpose/LargeAlienShip) +"yP" = (/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/LargeAlienShip) +"yY" = (/obj/structure/particle_accelerator/particle_emitter/right{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"zc" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"zu" = (/obj/structure/table/darkglass,/obj/random/maintenance/medical,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/LargeAlienShip) +"zH" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"zI" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) +"Aj" = (/obj/structure/table/bench/glass,/turf/simulated/floor/carpet/blue,/area/survivalpod/superpose/LargeAlienShip) +"AB" = (/obj/structure/loot_pile/surface/alien/security,/turf/simulated/shuttle/wall/alien/blue/hard_corner,/area/survivalpod/superpose/LargeAlienShip) +"AL" = (/obj/structure/prop/alien/pod/open,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"AO" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/obj/machinery/door/blast/regular{dir = 4; id = "ReactorBlastAlien"; layer = 3.3; name = "Reactor Blast Door"},/obj/structure/fans/hardlight,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"AP" = (/obj/machinery/vending/medical{dir = 4; emagged = 1; pixel_x = 5; req_access = list(777)},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/LargeAlienShip) +"AS" = (/obj/effect/floor_decal/techfloor{dir = 9},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) +"Bd" = (/obj/machinery/vending/deluxe_boozeomat{req_access = null; req_log_access = null},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"Bf" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/LargeAlienShip) +"Bh" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/machinery/door/window/brigdoor/westright{name = "Combat Armor"},/obj/structure/table/rack/shelf/steel,/obj/item/clothing/suit/armor/alien,/obj/item/clothing/head/helmet/alien,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/LargeAlienShip) +"BE" = (/obj/structure/prop/alien/pod/hybrid,/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/LargeAlienShip) +"Cl" = (/obj/effect/floor_decal/techfloor,/obj/machinery/chemical_dispenser/ert/specialops/abductor{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/LargeAlienShip) +"Cy" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/meter,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"CO" = (/turf/template_noop,/area/template_noop) +"CS" = (/obj/effect/floor_decal/techfloor,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) +"CY" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"Dn" = (/obj/structure/loot_pile/surface/alien/engineering,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"DA" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/item/weapon/cell/device/weapon/recharge/alien/hybrid{pixel_y = -7},/obj/item/weapon/cell/device/weapon/recharge/alien/hybrid{pixel_y = 7},/obj/item/weapon/cell/device/weapon/recharge/alien/hybrid,/obj/structure/table/alien/blue,/turf/simulated/shuttle/floor/alien,/area/survivalpod/superpose/LargeAlienShip) +"DF" = (/obj/structure/prop/alien/pod/hybrid,/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/LargeAlienShip) +"DJ" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"DK" = (/obj/structure/table/alien/blue,/obj/structure/window/reinforced/survival_pod,/obj/item/weapon/tape_roll,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"DX" = (/obj/machinery/vending/deluxe_dinner{req_access = null; req_log_access = null},/turf/simulated/shuttle/wall/alien/blue/hard_corner,/area/survivalpod/superpose/LargeAlienShip) +"Ee" = (/obj/structure/table/bench/glass,/turf/simulated/floor/carpet/gaycarpet,/area/survivalpod/superpose/LargeAlienShip) +"El" = (/obj/structure/toilet{dir = 1},/obj/structure/curtain/open/shower/security,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/LargeAlienShip) +"Ep" = (/obj/structure/particle_accelerator/particle_emitter/left{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"Fm" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/shuttle/floor/alien,/area/survivalpod/superpose/LargeAlienShip) +"FU" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) +"FZ" = (/obj/machinery/shower{pixel_y = 16},/obj/structure/curtain/open/shower/security,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/LargeAlienShip) +"Gd" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/obj/machinery/door/blast/regular{dir = 4; id = "reactorblastalien"; layer = 3.3; name = "Reactor Blast Door"},/obj/structure/fans/hardlight,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"GC" = (/obj/machinery/gateway/brass{dir = 8},/turf/simulated/floor/flock,/area/survivalpod/superpose/LargeAlienShip) +"GH" = (/obj/structure/window/reinforced/survival_pod{dir = 5},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/LargeAlienShip) +"GQ" = (/turf/simulated/shuttle/wall/alien/blue/hard_corner,/area/survivalpod/superpose/LargeAlienShip) +"HW" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"HX" = (/obj/structure/closet/alien,/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/shuttle/floor/alien,/area/survivalpod/superpose/LargeAlienShip) +"Ib" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"Ir" = (/obj/structure/table/alien/blue,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/item/weapon/paper_bin,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen/reagent/paralysis,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"Iy" = (/obj/machinery/gateway/brass{dir = 5},/turf/simulated/floor/flock,/area/survivalpod/superpose/LargeAlienShip) +"IO" = (/obj/structure/prop/blackbox/xenofrigate,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/LargeAlienShip) +"Jt" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; name = "Scrubber to Waste"},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"JB" = (/obj/effect/floor_decal/techfloor{dir = 6},/obj/structure/bed/chair/bay/comfy/captain{dir = 4},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) +"JD" = (/obj/structure/cryofeed{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 9},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/LargeAlienShip) +"JU" = (/obj/machinery/gateway/brass{dir = 9},/turf/simulated/floor/flock,/area/survivalpod/superpose/LargeAlienShip) +"JW" = (/obj/machinery/media/jukebox/casinojukebox,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/LargeAlienShip) +"Kc" = (/turf/simulated/floor/carpet/blue,/area/survivalpod/superpose/LargeAlienShip) +"Ko" = (/obj/machinery/power/emitter/gyrotron{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"Kq" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/bed/chair/bay/comfy/teal,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/LargeAlienShip) +"KB" = (/obj/effect/floor_decal/techfloor/corner{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/LargeAlienShip) +"KS" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/prop/alien/dispenser,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) +"KT" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"La" = (/obj/machinery/door/window/survival_pod,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/LargeAlienShip) +"Lh" = (/obj/machinery/door/airlock/vault,/obj/structure/fans/hardlight,/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/survivalpod/superpose/LargeAlienShip) +"LM" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"Md" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/LargeAlienShip) +"Mf" = (/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine charging port."; id = "reactorblastalien"; name = "Reactor Blast Doors"; pixel_x = -25; pixel_y = 6; req_access = null},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/LargeAlienShip) +"Nc" = (/obj/machinery/light/poi{dir = 1},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) +"Nd" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"Nm" = (/obj/effect/floor_decal/techfloor{dir = 5},/obj/structure/bed/chair/bay/comfy/captain{dir = 4},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) +"NI" = (/obj/structure/table/alien/blue,/obj/structure/window/reinforced/survival_pod,/obj/item/weapon/clipboard,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"NP" = (/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/LargeAlienShip) +"NY" = (/obj/structure/bed/nest,/turf/simulated/floor/carpet,/area/survivalpod/superpose/LargeAlienShip) +"Pi" = (/obj/structure/prop/alien/computer/camera{dir = 8},/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"Pq" = (/obj/machinery/light/poi{dir = 4},/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 8},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"Py" = (/obj/structure/loot_pile/surface/alien/engineering,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"PB" = (/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/LargeAlienShip) +"PF" = (/obj/machinery/cryopod{dir = 4},/obj/structure/cryofeed{pixel_x = -32},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) +"PL" = (/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/survivalpod/superpose/LargeAlienShip) +"PR" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"PT" = (/obj/machinery/computer/crew{icon = 'icons/obj/abductor_vr.dmi'; icon_screen = null; icon_state = "console-c"},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"Qe" = (/obj/machinery/door/window/survival_pod{dir = 2},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/LargeAlienShip) +"Qi" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/LargeAlienShip) +"Qu" = (/obj/structure/table/alien/blue,/obj/machinery/door/window/brigdoor/northright{dir = 2; req_access = null},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"QH" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"Sd" = (/obj/machinery/door/airlock/alien{req_one_access = null},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) +"Sp" = (/obj/item/stack/material/supermatter,/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/survivalpod/superpose/LargeAlienShip) +"SK" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/machinery/meter,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"SO" = (/obj/structure/table/darkglass,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/LargeAlienShip) +"SS" = (/turf/simulated/shuttle/wall/alien/blue,/area/survivalpod/superpose/LargeAlienShip) +"SY" = (/obj/effect/floor_decal/techfloor/corner{dir = 10},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) +"Ti" = (/obj/effect/floor_decal/techfloor,/obj/structure/bed/chair/bay/comfy/teal{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/LargeAlienShip) +"Tr" = (/obj/structure/table/alien/blue,/obj/machinery/door/window/brigdoor/northright{req_access = null},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"Tx" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/meter,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"TK" = (/turf/simulated/floor/carpet/gaycarpet,/area/survivalpod/superpose/LargeAlienShip) +"TL" = (/obj/effect/floor_decal/techfloor,/turf/simulated/shuttle/floor/alien,/area/survivalpod/superpose/LargeAlienShip) +"Um" = (/turf/simulated/shuttle/floor/white,/area/template_noop) +"Un" = (/obj/structure/closet/alien,/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/LargeAlienShip) +"Uu" = (/obj/machinery/atmospherics/unary/engine/biggest{dir = 4},/turf/template_noop,/area/template_noop) +"UI" = (/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/LargeAlienShip) +"US" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"Vk" = (/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"Vq" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/LargeAlienShip) +"Vu" = (/obj/machinery/power/rad_collector,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/cyan,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"Vw" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/LargeAlienShip) +"VF" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 8},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"VP" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"VR" = (/obj/machinery/field_generator{anchored = 1; state = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"VS" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"WJ" = (/obj/machinery/sleep_console{dir = 4},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/LargeAlienShip) +"WQ" = (/obj/structure/bed/nest,/turf/simulated/floor/carpet/gaycarpet,/area/survivalpod/superpose/LargeAlienShip) +"WT" = (/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"WX" = (/obj/machinery/vending/tool{emagged = 1; req_access = list(777); req_log_access = null},/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/LargeAlienShip) +"Xc" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"Xg" = (/obj/machinery/cryopod,/obj/structure/cryofeed{dir = 4; pixel_x = 32},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) +"Xv" = (/turf/simulated/floor/carpet,/area/survivalpod/superpose/LargeAlienShip) +"XA" = (/obj/structure/particle_accelerator/fuel_chamber{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"XC" = (/obj/structure/loot_pile/surface/alien/medical,/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/LargeAlienShip) +"XY" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"Yw" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/obj/machinery/door/blast/regular{dir = 4; id = "ReactorBlastAlien"; layer = 3.3; name = "Reactor Blast Door"},/obj/structure/fans/hardlight,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) +"YA" = (/obj/structure/closet/alien,/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"YP" = (/obj/machinery/atmospherics/unary/engine/bigger{dir = 4; pixel_x = -3},/turf/template_noop,/area/template_noop) +"Zh" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/filingcabinet/medical,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/LargeAlienShip) +"Zp" = (/obj/machinery/computer/operating{dir = 1},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/LargeAlienShip) +"Zq" = (/obj/machinery/power/rad_collector,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/cyan,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"ZN" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/smes/buildable{icon = 'icons/obj/alien_smes.dmi'; icon_state = "unit"; input_level = 950000; name = "Alien Royal Capacitor"; output_level = 950000},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) +"ZQ" = (/obj/effect/floor_decal/techfloor{dir = 6},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) + +(1,1,1) = {" +COCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOGQSSGQGQGQGQGQGQGQvVjWjWDJGQSSCOCOCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOGQGQGQGQGQGQGQGQGQGQGQGQGQSSCOCOCOCOCOCOCOCOCOCOCOCOWTGQjdjdtKjdjdGQUIgzgzgzgzUIGQSSCOCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOWTGQdgbwqeaophdzZNNdJtVFGQGQSSCOGQGQwDGQGQSSCOCOCOYPWTGQkDkDWTkDkDGQUISOxTyixTUIJWGQSSCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOWTGQnCntxsSKxsSKcpLMJtPqGQHXSSGQSSWXjinBhwGQSSCOCOCOGQGQoMoMCyoMXYGQVqbObObObOVqVqoIGQCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOUuCOWTGQWTWTgAvHvHvHHWWTWTWTgWbmqQGQmQcPcPcPcPGQGQSSCOCOCOGQPyPyALVkYAGQVkVkVkVkVkVkVkBdGQSSCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOSSGQmKUSZqVuVuVuVuqSmmqSjgbmbmgWcPcPcPcPcPjhGQGQGQwDGQGQGQGQGQgWGQGQGQgWGQGQGQGQGQGQGQGQSSCOCOCOCOCOCOCOCOCOCO +COCOCOGQGQGQGQpiGQvVjWjWjWDJGQCYGQGQbmbmGQufMdMdKqMdZhGQSSHXbmbmNcbmbmbmbmbmNcbmbmbmbmbmbmNcbmHXSSGQGQGQGQSSCOCOCOCOCOCO +COCOCObiWTGQSSCSCSCSCSCSCSCSCSCSSSGQbmbmGQGQDKveQuNIGQGQqQbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmqQGQoRXvNYGQSSCOCOCOCOCO +COCOCObiWTGQzIVRNPNPVRNPNPNPNPVRFUgWbmbmbmbmbmbmbmbmbmbmbmbmGQGQgWGQGQGQgWGQGQGQgWGQGQGQgWGQGQbmbmgWbmXvNYGQGQwDGQSSCOCO +COCOUubiWTGQzINPVkNPNPNPNPNPVkNPFUGQCSCSCSCSCSCSCSTLTLTLTLSYGQDFqQBEGQUIUIeBGQUIUIeBGQUIUIeBGQbmbmGQbmXvNYGQfmdxPTGQSSCO +COCOCOGQGQGQzINPNPlpYwGdAOlpNPNPFUjgkVyIyIyIyIcXNPNPNPNPNPFUGQfAyvJDGQqCKcAjGQqCfckSGQqCXvvgGQbmbmDXbmbmbmGQKSjrNmPiGQCO +COCOCObiWTGQZQNPNPdZbcPLbcdbNPVRrLfiBfEpVSexQHQiNPSSSSSSNPrLGQatdSatGQzuKciwGQyifcrIGQyiXvNYGQCSCSGQCSCSCSgWCSCSZQtdfiCO +COCOCObiWTGQNPNPNPLhSpgtPLkGNPNPNPPRBfiQbvXAdCQiNPxCIOxCNPNPGQGQABGQGQGQGQGQGQGQGQGQGQGQGQGQGQNPNPGQNPNPqbGQjmNPNPVPPRCO +COCOUubiWTGQaJVRNPpqbcSpbcaGNPNPASnxBfyYzczcuTQiNPSSSSSSNPASGQkOyPBhGQJUkqIyGQzuTKWQGQxTKciwGQjrjrGQasasasgWjrjraJtdnxCO +COCOCOGQGQGQzINPNPlpYwdsAOlpMfNPFUjgKBMdMdMdMdiMNPNPNPNPNPFUGQuIyPohGQGCeTtxGQvQTKEeGQvQKcAjGQbmbmGQWTWTWTGQpCCSJBnvGQCO +COCOCObiWTGQzINPVkNPNPNPNPNPVkNPFUGQjrjrjrjrjrjrjrFmFmFmFmbpGQDAFmDAGQyMlbtfGQUIUIeBGQUIUIeBGQbmbmGQboWTboGQcByassGQSSCO +COCOCObiWTGQzIVRNPNPNPNPVRNPNPVRFUgWbmbmbmbmbmbmbmbmbmbmbmbmGQGQgWGQGQMdMdMdGQGQgWGQGQGQgWGQGQbmbmGQboseboGQGQwDGQSSCOCO +COCOUubiWTGQSSjrjrjrjrjrjrjrjrjrSSGQbmbmGQGQIrbHTriyGQGQqQbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmqQGQboWTboGQSSCOCOCOCOCO +COCOCOGQGQGQGQpiGQvVjWjWjWDJGQCYGQGQbmbmGQClyIyITiyIUnGQSSHXbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmHXSSGQGQGQGQSSCOCOCOCOCOCO +COCOCOCOCOSSGQKohVuQuQuQuQuQhVKohVjgbmbmgWdededeUmUmUmmvGQGQwDGQGQGQGQGQgWGQGQGQgWGQGQGQSdGQGQGQGQSSCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOWTGQWTWTuUXcXcXcfKWTWTWTgWbmqQGQXCdedededeAPGQSSCOCOCOGQPyALPyVkYAGQqYVkmTGQnjPBLaFZGQSSCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOWTGQnCrxlJKTlJKTfrzHJtVFGQHXSSGQSSWJpuaHZpGQSSCOCOCOGQGQdBdBTxdBgcGQPFFmjZGQPBPBGHGQGQCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOUuCOWTGQdgDnqeaophdzoiwrJtVFGQGQSSCOGQGQwDmyGQSSCOCOCOCOWTGQcLcLWTcLcLGQhRqQXgGQQeopVwGQSSCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOGQGQGQGQGQGQGQGQGQGQGQGQGQSSCOCOCOCOCOCOCOCOCOCOCOYPWTGQIbIbxGIbIbGQtFbmtFGQElGQGQSSCOCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOGQGQGQGQGQGQGQGQGQGQGQGQGQGQSSCOCOCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCO +"} diff --git a/modular_chomp/maps/submaps/shelters/LoneHome-20x25.dmm b/modular_chomp/maps/submaps/shelters/LoneHome-20x25.dmm new file mode 100644 index 0000000000..3e3d3825b9 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/LoneHome-20x25.dmm @@ -0,0 +1,1653 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/survivalpod/superpose/LoneHome) +"ab" = ( +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/LoneHome) +"ac" = ( +/obj/structure/flora/tree/sif, +/turf/template_noop, +/area/survivalpod/superpose/LoneHome) +"ad" = ( +/turf/simulated/wall/wood, +/area/survivalpod/superpose/LoneHome) +"ae" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"ag" = ( +/obj/structure/girder, +/turf/simulated/floor, +/area/survivalpod/superpose/LoneHome) +"ah" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/broken, +/area/survivalpod/superpose/LoneHome) +"ai" = ( +/obj/structure/coatrack, +/obj/machinery/button/windowtint{ + id = "h-living"; + pixel_x = -27 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"aj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/broken, +/area/survivalpod/superpose/LoneHome) +"ak" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"al" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/LoneHome) +"am" = ( +/obj/machinery/appliance/cooker/oven, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/LoneHome) +"an" = ( +/obj/structure/table/marble, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/microwave, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/LoneHome) +"ao" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/LoneHome) +"ap" = ( +/obj/structure/table/bench/marble, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "h-living" + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"aq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"ar" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"as" = ( +/turf/simulated/floor/wood/broken, +/area/survivalpod/superpose/LoneHome) +"au" = ( +/obj/item/device/tape, +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"av" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/extinguisher{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/medical/lite, +/obj/random/medical/lite, +/obj/structure/mopbucket{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/item/weapon/mop, +/obj/item/device/multitool, +/obj/item/device/flashlight{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/random/unidentified_medicine, +/obj/random/unidentified_medicine, +/obj/random/unidentified_medicine, +/turf/simulated/floor/tiled, +/area/survivalpod/superpose/LoneHome) +"aw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/LoneHome) +"ax" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/LoneHome) +"ay" = ( +/obj/item/clothing/suit/storage/apron/white, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/LoneHome) +"az" = ( +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/storage/box/glasses/square{ + pixel_y = -2 + }, +/obj/item/weapon/storage/box/glass_extras/sticks{ + pixel_y = 4 + }, +/obj/item/weapon/storage/box/glass_extras/straws{ + pixel_y = 7 + }, +/obj/item/weapon/packageWrap, +/obj/structure/curtain/open/bed, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/spoon{ + pixel_x = 2 + }, +/obj/item/weapon/material/kitchen/utensil/spoon{ + pixel_x = 2 + }, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/LoneHome) +"aA" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/storage/box/donkpockets, +/obj/item/weapon/storage/box/condimentbottles, +/obj/item/weapon/reagent_containers/food/condiment/sugar, +/obj/structure/curtain/open/bed, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "h-kitchen" + }, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/LoneHome) +"aB" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/template_noop, +/area/survivalpod/superpose/LoneHome) +"aC" = ( +/obj/structure/bed/chair/oldsofa/corner{ + dir = 4 + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "h-living" + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"aD" = ( +/obj/structure/bed/chair/oldsofa/left, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"aE" = ( +/obj/structure/table/fancyblack, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"aF" = ( +/obj/random/trash, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"aG" = ( +/obj/structure/table/marble, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/LoneHome) +"aH" = ( +/obj/structure/table/marble, +/obj/item/weapon/material/kitchen/utensil/spoon, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/LoneHome) +"aI" = ( +/obj/structure/table/marble, +/obj/item/weapon/material/sharpeningkit, +/obj/item/weapon/reagent_containers/dropper, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/LoneHome) +"aJ" = ( +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"aK" = ( +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "h-kitchen" + }, +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/LoneHome) +"aL" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/item/weapon/material/shard, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/LoneHome) +"aM" = ( +/obj/item/weapon/material/shard, +/turf/template_noop, +/area/survivalpod/superpose/LoneHome) +"aN" = ( +/obj/item/weapon/material/shard, +/obj/item/weapon/material/shard{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/LoneHome) +"aO" = ( +/obj/structure/bed/chair/oldsofa{ + dir = 4 + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "h-living" + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"aP" = ( +/obj/structure/table/bench/glass, +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/LoneHome) +"aQ" = ( +/turf/template_noop, +/area/survivalpod/superpose/LoneHome) +"aR" = ( +/obj/random/junk, +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/LoneHome) +"aS" = ( +/obj/random/junk, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"aT" = ( +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"aU" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"aV" = ( +/obj/structure/bed/chair/wood, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "h-kitchen" + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"aW" = ( +/obj/item/weapon/material/shard{ + pixel_x = 6 + }, +/obj/item/weapon/material/shard, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/LoneHome) +"aX" = ( +/obj/item/weapon/material/shard, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/LoneHome) +"aY" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/LoneHome) +"aZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/LoneHome) +"ba" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bb" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bc" = ( +/obj/item/stack/cable_coil, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/broken, +/area/survivalpod/superpose/LoneHome) +"bd" = ( +/obj/structure/table/fancyblack, +/obj/item/trash/plate, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"be" = ( +/obj/structure/table/fancyblack, +/obj/item/weapon/material/kitchen/utensil/spoon{ + pixel_x = 2 + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "h-kitchen" + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bf" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/LoneHome) +"bg" = ( +/obj/structure/bed/chair/oldsofa/corner{ + dir = 1 + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "h-living" + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bh" = ( +/obj/structure/bed/chair/oldsofa/left{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bi" = ( +/obj/structure/table/fancyblack, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bj" = ( +/obj/item/weapon/module/power_control, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bk" = ( +/obj/structure/flora/pottedplant/bamboo{ + pixel_y = 12 + }, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bl" = ( +/obj/item/weapon/material/shard, +/obj/item/weapon/material/shard{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bm" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/flora/pottedplant/fern{ + pixel_y = 12 + }, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bn" = ( +/obj/item/weapon/reagent_containers/food/condiment/small/sugar, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/broken, +/area/survivalpod/superpose/LoneHome) +"bo" = ( +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/random/trash, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bp" = ( +/obj/structure/table/fancyblack, +/obj/item/weapon/reagent_containers/food/snacks/ghostmuffin/poison, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bq" = ( +/obj/structure/table/fancyblack, +/obj/item/trash/plate, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "h-kitchen" + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"br" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/broken, +/area/survivalpod/superpose/LoneHome) +"bs" = ( +/obj/item/weapon/pen, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bt" = ( +/obj/item/weapon/material/kitchen/utensil/spoon{ + pixel_x = 2 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bu" = ( +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill, +/obj/item/weapon/pen, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bv" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/machinery/button/windowtint{ + id = "h-kitchen"; + pixel_y = -29 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bw" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "h-kitchen" + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bx" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/template_noop, +/area/survivalpod/superpose/LoneHome) +"by" = ( +/obj/item/weapon/storage/backpack/messenger, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/reagent_containers/food/snacks/sosjerky, +/obj/item/weapon/cell/device/hyper, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy, +/obj/item/weapon/flame/lighter/random, +/obj/item/weapon/storage/box/survival/space, +/obj/item/device/radio, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/weapon/reagent_containers/pill/dylovene, +/obj/item/weapon/reagent_containers/pill/dylovene, +/obj/item/device/flashlight/maglight, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/random/soap, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, +/obj/item/device/fbp_backup_cell, +/obj/item/device/pda, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/device/starcaster_news, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/item/device/suit_cooling_unit/emergency, +/obj/item/device/gps, +/obj/structure/table/rack, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bz" = ( +/obj/structure/table/rack, +/obj/item/weapon/material/knife/ritual, +/obj/structure/curtain/open/bed, +/obj/item/clothing/under/suit_jacket/really_black, +/obj/item/clothing/under/suit_jacket/navy, +/obj/item/clothing/head/soft/solgov/veteranhat, +/obj/item/clothing/under/swimsuit/fluff/penelope, +/obj/item/weapon/makeover, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bA" = ( +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 + }, +/obj/item/weapon/book/tome/imbued, +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bB" = ( +/obj/item/weapon/paper{ + info = "Seems to be filled with odd runes drawn with blood"; + name = "Blood stained paper" + }, +/turf/simulated/floor/wood/broken, +/area/survivalpod/superpose/LoneHome) +"bC" = ( +/turf/simulated/floor/tiled/white, +/area/survivalpod/superpose/LoneHome) +"bD" = ( +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/machinery/space_heater, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bE" = ( +/obj/item/seeds/random, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bF" = ( +/obj/machinery/light/small, +/obj/item/weapon/ore/diamond, +/obj/structure/sign/goldenplaque{ + desc = "Done No Harm."; + name = "Best Doctor 2552"; + pixel_y = -32 + }, +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bG" = ( +/obj/item/weapon/reagent_containers/glass/rag, +/obj/item/clothing/gloves/ring/engagement, +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bH" = ( +/obj/random/trash, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/LoneHome) +"bI" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/storage/wallet/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/melee/umbrella/random, +/obj/random/carp_plushie, +/obj/random/curseditem, +/obj/random/junk, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bJ" = ( +/obj/item/weapon/paper{ + info = "Seems to be filled with odd runes drawn with blood"; + name = "Blood stained paper" + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bK" = ( +/obj/item/weapon/cell/high/empty, +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/LoneHome) +"bL" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/LoneHome) +"bM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/paper{ + info = "F%$K this detective, I swear I can see them peeking from behind the window, these tinted glasses help but I swear I can still see them snooping around. His days are counted... I am so close to figuring this out, just need a few more days. Then Shepiffany will be part of the family once again, then our two kids and I can go back on having a normal life... a normal life..."; + name = "Stained sheet of paper" + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/LoneHome) +"bN" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bO" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/structure/kitchenspike, +/obj/effect/rune, +/turf/simulated/floor, +/area/survivalpod/superpose/LoneHome) +"bP" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/item/weapon/paper/courtroom, +/obj/item/weapon/paper/courtroom, +/obj/item/weapon/paper_bin, +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bQ" = ( +/obj/item/weapon/pen/fountain, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/paper{ + info = "Seems to be filled with odd runes drawn with blood"; + name = "Blood stained paper" + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/LoneHome) +"bS" = ( +/obj/random/trash, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/LoneHome) +"bT" = ( +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/LoneHome) +"bU" = ( +/obj/item/weapon/photo, +/obj/item/weapon/photo{ + pixel_x = 4 + }, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bV" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/storage/box/characters, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bW" = ( +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bX" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/cosmos, +/obj/item/weapon/book/custom_library/fiction/truelovehathmyheart, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bY" = ( +/obj/structure/closet/cabinet, +/obj/random/multiple, +/obj/random/multiple, +/obj/random/multiple, +/obj/random/multiple, +/obj/random/multiple, +/obj/random/toy, +/obj/random/toy, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"bZ" = ( +/obj/item/clothing/suit/straight_jacket, +/turf/simulated/floor, +/area/survivalpod/superpose/LoneHome) +"ca" = ( +/obj/machinery/gibber/autogibber{ + emagged = 1 + }, +/turf/simulated/floor, +/area/survivalpod/superpose/LoneHome) +"cb" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/storage/wallet/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/melee/umbrella/random, +/obj/random/ammo, +/obj/random/cigarettes, +/obj/random/contraband, +/obj/random/junk, +/obj/random/maintenance/security, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"cc" = ( +/mob/living/simple_mob/animal/passive/cat/bones{ + desc = "A very odd behaved cat, their scratched name tag reads 'Felix'. They look very malnourished."; + name = "Felix" + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"cd" = ( +/obj/structure/bed/double/padded, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"ce" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/LoneHome) +"cf" = ( +/obj/item/weapon/pack/cardemon, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/LoneHome) +"cg" = ( +/obj/item/weapon/reagent_containers/blood, +/obj/item/weapon/pack/cardemon, +/obj/item/weapon/pack/cardemon, +/obj/item/weapon/deck/tarot, +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"ch" = ( +/obj/item/organ/internal/liver, +/obj/random/trash, +/turf/simulated/floor, +/area/survivalpod/superpose/LoneHome) +"ci" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/structure/table/marble, +/obj/item/organ/internal/intestine/unathi, +/obj/item/weapon/surgical/bonesetter, +/obj/item/weapon/bone/ribs, +/obj/item/weapon/bone/skull{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/simulated/floor, +/area/survivalpod/superpose/LoneHome) +"cj" = ( +/obj/structure/sign/periodic, +/turf/simulated/wall/wood, +/area/survivalpod/superpose/LoneHome) +"ck" = ( +/obj/item/weapon/bedsheet/rddouble, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"cl" = ( +/obj/item/weapon/phone, +/obj/structure/table/bench/wooden, +/obj/item/weapon/paper{ + info = "Seems to be filled with odd runes drawn with blood"; + name = "Blood stained paper" + }, +/obj/machinery/button/windowtint{ + id = "h-master"; + pixel_y = -29 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"cm" = ( +/obj/item/weapon/pack/cardemon, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"cn" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/pirate, +/obj/random/trash, +/obj/random/trash, +/obj/random/trash, +/obj/random/trash, +/obj/random/trash, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"co" = ( +/obj/structure/closet/cabinet, +/obj/random/tech_supply/component, +/obj/random/tech_supply/component, +/obj/random/tech_supply/component, +/obj/random/tech_supply/component, +/obj/random/tech_supply/component, +/obj/random/toolbox, +/obj/random/toolbox, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"cp" = ( +/obj/item/clothing/mask/muzzle, +/obj/random/trash, +/turf/simulated/floor, +/area/survivalpod/superpose/LoneHome) +"cq" = ( +/obj/structure/table/marble, +/obj/item/organ/internal/brain/grey, +/obj/item/weapon/material/knife/plastic, +/turf/simulated/floor, +/area/survivalpod/superpose/LoneHome) +"cr" = ( +/obj/structure/table/bench/marble, +/obj/structure/flora/pottedplant/overgrown{ + pixel_y = 7 + }, +/obj/structure/window/reinforced/polarized{ + id = "h-master" + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"cs" = ( +/obj/structure/table/bench/marble, +/obj/structure/flora/pottedplant/bamboo{ + pixel_y = 7 + }, +/obj/structure/window/reinforced/polarized{ + id = "h-master" + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"ct" = ( +/obj/structure/table/bench/marble, +/obj/structure/flora/pottedplant/dead{ + pixel_y = 7 + }, +/obj/structure/window/reinforced/polarized{ + id = "h-master" + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) +"cu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/LoneHome) +"cv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/survivalpod/superpose/LoneHome) +"cw" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/item/clothing/gloves/yellow, +/turf/simulated/floor, +/area/survivalpod/superpose/LoneHome) +"cx" = ( +/obj/structure/table/marble, +/obj/item/organ/internal/fruitgland, +/obj/item/weapon/material/knife/hook, +/turf/simulated/floor, +/area/survivalpod/superpose/LoneHome) +"cy" = ( +/obj/structure/closet/crate, +/obj/fiftyspawner/wood, +/obj/fiftyspawner/wood, +/obj/fiftyspawner/wood/sif, +/obj/fiftyspawner/wood/sif, +/obj/fiftyspawner/turcarpet, +/obj/fiftyspawner/tealcarpet, +/obj/fiftyspawner/sblucarpet, +/obj/fiftyspawner/purcarpet, +/obj/fiftyspawner/oracarpet, +/obj/fiftyspawner/blucarpet, +/obj/fiftyspawner/marble, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/fiftyspawner/cardboard, +/obj/fiftyspawner/cardboard, +/turf/simulated/floor/outdoors/grass/heavy, +/area/survivalpod/superpose/LoneHome) +"cz" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/item/weapon/material/shard, +/turf/simulated/floor/outdoors/grass/heavy, +/area/survivalpod/superpose/LoneHome) +"cA" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/outdoors/grass/heavy, +/area/survivalpod/superpose/LoneHome) +"cB" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/outdoors/grass/heavy, +/area/survivalpod/superpose/LoneHome) +"cC" = ( +/obj/machinery/power/port_gen/pacman, +/turf/simulated/floor, +/area/survivalpod/superpose/LoneHome) +"cD" = ( +/obj/item/frame/apc, +/obj/machinery/light_switch{ + pixel_x = 11; + pixel_y = 22 + }, +/obj/random/junk, +/turf/simulated/floor, +/area/survivalpod/superpose/LoneHome) +"cE" = ( +/obj/structure/table/steel, +/obj/item/stack/material/phoron{ + amount = 5 + }, +/obj/item/stack/material/phoron{ + amount = 5 + }, +/obj/fiftyspawner/wood, +/obj/fiftyspawner/steel, +/turf/simulated/floor, +/area/survivalpod/superpose/LoneHome) +"cF" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/chainsaw, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/extinguisher, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor, +/area/survivalpod/superpose/LoneHome) +"cG" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/simulated/floor, +/area/survivalpod/superpose/LoneHome) +"cH" = ( +/obj/structure/table/marble, +/obj/item/organ/internal/intestine/unathi{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/item/organ/internal/lungs, +/turf/simulated/floor, +/area/survivalpod/superpose/LoneHome) +"cI" = ( +/obj/structure/fence, +/turf/simulated/floor/outdoors/grass/heavy, +/area/survivalpod/superpose/LoneHome) +"cJ" = ( +/obj/item/weapon/material/shard, +/turf/simulated/floor/outdoors/grass/heavy, +/area/survivalpod/superpose/LoneHome) +"cK" = ( +/obj/item/weapon/material/minihoe, +/turf/simulated/floor/outdoors/grass/heavy, +/area/survivalpod/superpose/LoneHome) +"cL" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor, +/area/survivalpod/superpose/LoneHome) +"cM" = ( +/obj/structure/closet/crate, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/LoneHome) +"cN" = ( +/obj/item/device/flashlight{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/survivalpod/superpose/LoneHome) +"cO" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/survivalpod/superpose/LoneHome) +"cP" = ( +/obj/item/organ/internal/lungs/vox, +/obj/item/weapon/beartrap/hunting{ + anchored = 1; + deployed = 1; + icon_state = "beartrap1" + }, +/obj/structure/curtain/black, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/survivalpod/superpose/LoneHome) +"cQ" = ( +/obj/structure/fence/cut/medium, +/turf/simulated/floor/outdoors/grass/heavy, +/area/survivalpod/superpose/LoneHome) +"cR" = ( +/turf/simulated/floor/outdoors/grass/heavy, +/area/survivalpod/superpose/LoneHome) +"cS" = ( +/obj/structure/fence/corner{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/heavy, +/area/survivalpod/superpose/LoneHome) +"cT" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/template_noop, +/area/survivalpod/superpose/LoneHome) +"cU" = ( +/obj/structure/fence/cut/large{ + dir = 8 + }, +/turf/template_noop, +/area/survivalpod/superpose/LoneHome) +"cV" = ( +/obj/structure/fence/cut/medium{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/heavy, +/area/survivalpod/superpose/LoneHome) +"cW" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/heavy, +/area/survivalpod/superpose/LoneHome) +"cX" = ( +/obj/structure/fence/door/opened, +/turf/template_noop, +/area/survivalpod/superpose/LoneHome) +"cY" = ( +/obj/structure/fence/cut/medium{ + dir = 4 + }, +/turf/template_noop, +/area/survivalpod/superpose/LoneHome) +"cZ" = ( +/obj/structure/fence/cut/large{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/heavy, +/area/survivalpod/superpose/LoneHome) +"da" = ( +/obj/structure/fence/corner, +/turf/template_noop, +/area/survivalpod/superpose/LoneHome) +"mx" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/survivalpod/superpose/LoneHome) +"ES" = ( +/obj/structure/simple_door/wood, +/obj/structure/sign/graffiti/pisoff, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/LoneHome) + +(1,1,1) = {" +aQ +aQ +aQ +aQ +aQ +aQ +ab +aQ +aM +aQ +aM +aQ +aQ +aQ +aQ +aQ +aQ +aQ +cR +aQ +aQ +aQ +aQ +cR +aQ +"} +(2,1,1) = {" +aQ +aQ +aQ +aQ +aQ +ad +aQ +aB +aN +aY +aY +ag +ad +ad +ad +ad +ad +aQ +aQ +cR +cR +aQ +cR +cR +aQ +"} +(3,1,1) = {" +aQ +aQ +aQ +ab +ad +ad +ap +aC +aO +aO +bg +ad +ad +bI +bP +cb +cj +ad +ad +cI +cQ +cI +cS +aQ +aQ +"} +(4,1,1) = {" +aQ +aQ +aQ +ad +ad +ai +aJ +aD +aP +aP +bh +ad +by +bJ +bQ +cc +ak +ad +cz +cR +cR +cR +cT +aQ +aQ +"} +(5,1,1) = {" +aQ +ab +ab +ab +ae +aj +ar +aE +bT +bT +bi +ad +bz +bK +bR +bS +as +cr +cA +cR +cR +cR +cU +aQ +aQ +"} +(6,1,1) = {" +ab +ab +aQ +ad +ad +ak +as +aj +aZ +aZ +aJ +ad +bA +bL +bH +bT +aJ +cs +cz +cJ +cR +cR +cV +aQ +aQ +"} +(7,1,1) = {" +aQ +ab +aQ +aQ +ad +ag +aJ +as +aR +cu +aq +ag +aq +bM +bT +bT +ck +ct +cB +cR +cR +cR +cW +aQ +aQ +"} +(8,1,1) = {" +ab +aQ +aQ +aQ +aQ +ad +au +aF +aJ +ba +bj +ad +bB +as +bU +cd +cl +ad +cA +cR +cy +cR +cW +aQ +aQ +"} +(9,1,1) = {" +aQ +aQ +ac +aQ +aQ +ad +ad +ag +ae +ad +bk +ad +ae +ad +ag +ad +ad +ad +ad +cK +cR +cR +cU +aQ +aQ +"} +(10,1,1) = {" +aQ +aQ +aQ +aQ +aQ +ad +av +ae +aq +aq +bl +ah +br +bN +ar +ar +ar +aj +ae +cR +cR +cR +cX +aQ +aQ +"} +(11,1,1) = {" +aQ +aQ +aQ +aQ +ad +ad +ad +ad +ae +ad +bm +ag +ad +ad +ad +ES +ad +ad +ad +cL +ad +cR +cT +aQ +ac +"} +(12,1,1) = {" +aQ +aQ +aQ +aQ +ad +al +ax +aG +aJ +bb +aJ +bs +bD +ad +bV +br +ak +cv +cC +aa +ad +cR +cU +aQ +aQ +"} +(13,1,1) = {" +aQ +aQ +aQ +aQ +ag +am +ax +aH +aq +bc +aq +bt +bE +ag +bW +ce +cm +ad +cD +cM +ad +cR +cT +aQ +aQ +"} +(14,1,1) = {" +aQ +aQ +aQ +aQ +ag +an +ay +aI +aS +aj +bn +aJ +bF +ad +bX +cf +cn +ad +cE +cN +ag +cR +cY +aQ +aQ +"} +(15,1,1) = {" +aQ +aQ +aQ +aQ +ad +ao +aw +aw +aT +aj +bo +bu +bG +ad +bY +cg +co +ad +cF +cO +ad +cR +cT +aQ +aQ +"} +(16,1,1) = {" +aQ +aQ +aQ +aQ +ad +ad +az +bC +aU +bd +bp +bv +ad +ad +ad +ad +ad +ad +ad +mx +ad +cR +cT +aQ +aQ +"} +(17,1,1) = {" +aQ +aQ +aQ +aQ +aQ +ad +aA +aK +aV +be +bq +bw +ad +bO +bZ +ch +cp +cw +cG +cP +ag +cR +cZ +aQ +aQ +"} +(18,1,1) = {" +aQ +ac +aQ +aQ +aQ +ad +ab +aL +aW +bf +aM +bx +ad +ad +ca +ci +cq +cx +cH +ad +ad +cI +da +cR +aQ +"} +(19,1,1) = {" +aQ +aQ +aQ +aQ +aQ +ab +aQ +aQ +aX +aQ +aQ +ab +aQ +ad +ad +ad +ad +ad +ad +ad +aQ +aQ +aQ +aQ +aQ +"} +(20,1,1) = {" +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +"} diff --git a/modular_chomp/maps/submaps/shelters/MechFabShip-27x24.dmm b/modular_chomp/maps/submaps/shelters/MechFabShip-27x24.dmm new file mode 100644 index 0000000000..deb1f23ae8 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/MechFabShip-27x24.dmm @@ -0,0 +1,194 @@ +"al" = (/obj/structure/toilet{pixel_y = 12},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/MechFabShip) +"ao" = (/obj/structure/closet/walllocker/emerglocker/south,/obj/structure/table/rack/shelf/steel,/obj/structure/ship_munition/disperser_charge/explosive,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"aq" = (/obj/machinery/sleeper/survival_pod,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/MechFabShip) +"at" = (/obj/structure/closet/walllocker_double/medical/west,/obj/item/weapon/storage/firstaid,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2,/obj/item/roller,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MechFabShip) +"aF" = (/obj/structure/salvageable/console_os,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"aG" = (/obj/machinery/transhuman/resleever,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"bb" = (/obj/machinery/disperser/back{dir = 1},/obj/structure/ship_munition/disperser_charge/explosive,/obj/structure/sign/department/shield{pixel_x = 32},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"bk" = (/obj/item/device/gps/computer,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/MechFabShip) +"bI" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MechFabShip) +"bL" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/cryopod/robot/door/gateway,/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/light/poi{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"bP" = (/obj/structure/ship_munition/disperser_charge/explosive,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"cM" = (/obj/item/weapon/weldingtool/largetank,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/screwdriver,/obj/item/weapon/storage/firstaid/surgery,/obj/structure/table/steel_reinforced,/obj/item/stack/nanopaste/advanced,/obj/item/stack/nanopaste/advanced,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"dh" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"dz" = (/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"eb" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 4},/obj/structure/fuel_port{pixel_x = 30},/obj/machinery/light/small/emergency{dir = 4},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"eM" = (/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/cryofeed{dir = 4},/turf/simulated/floor/greengrid/nitrogen,/area/survivalpod/superpose/MechFabShip) +"eP" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/light/small/emergency{dir = 1},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"fR" = (/obj/machinery/disperser/back{dir = 1},/obj/structure/ship_munition/disperser_charge/mining,/obj/structure/sign/department/shield{pixel_x = -32},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"gv" = (/obj/machinery/computer/transhuman/resleeving{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light/poi,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"gD" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"gH" = (/obj/item/device/kit/paint/gygax/darkgygax,/obj/item/device/kit/paint/gygax/recitence,/obj/item/device/kit/paint/durand,/obj/item/device/kit/paint/durand/phazon,/obj/item/device/kit/paint/durand/seraph,/obj/structure/table/rack/shelf/steel,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/MechFabShip) +"gZ" = (/obj/machinery/mech_recharger,/obj/mecha/combat/phazon/old,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/MechFabShip) +"hu" = (/obj/machinery/cryopod/robot{base_icon_state = "borg_pod_closed"; dir = 4; icon = 'icons/obj/structures.dmi'; icon_state = "borg_pod_closed"; occupied_icon_state = "borg_pod_opened"},/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/sign/department/drones{pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"hz" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/closet/walllocker/emerglocker/east,/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/MechFabShip) +"hH" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/MechFabShip) +"hI" = (/obj/machinery/door/airlock/glass_centcom{name = "RnD and Fabrication"},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/MechFabShip) +"hJ" = (/obj/structure/closet/walllocker_double/hydrant/east,/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/techfloor/orange/corner{dir = 1},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"it" = (/obj/structure/salvageable/server_os,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"iw" = (/obj/item/device/kit/paint/ripley/death,/obj/item/device/kit/paint/ripley/flames_blue,/obj/item/device/kit/paint/ripley/flames_red,/obj/item/device/kit/paint/ripley,/obj/structure/table/rack/shelf/steel,/obj/machinery/button/remote/airlock{desiredstate = 1; dir = 1; id = "kalipso_hatch"; name = "Rear Hatch Control"; pixel_y = -29; specialfunctions = 4},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/MechFabShip) +"iC" = (/turf/template_noop,/area/template_noop) +"iD" = (/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "fridge_sci"; icon_contents = "chem"; icon_state = "fridge_sci"; name = "Advanced storage"; pixel_y = 0},/obj/item/weapon/stock_parts/micro_laser/ultra,/obj/item/weapon/stock_parts/micro_laser/ultra,/obj/item/weapon/stock_parts/micro_laser/ultra,/obj/item/weapon/stock_parts/micro_laser/ultra,/obj/item/weapon/stock_parts/micro_laser/ultra,/obj/item/weapon/stock_parts/matter_bin/super,/obj/item/weapon/stock_parts/matter_bin/super,/obj/item/weapon/stock_parts/matter_bin/super,/obj/item/weapon/stock_parts/matter_bin/super,/obj/item/weapon/stock_parts/matter_bin/super,/obj/item/weapon/stock_parts/manipulator/pico,/obj/item/weapon/stock_parts/manipulator/pico,/obj/item/weapon/stock_parts/manipulator/pico,/obj/item/weapon/stock_parts/manipulator/pico,/obj/item/weapon/stock_parts/manipulator/pico,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/capacitor/super,/obj/item/weapon/stock_parts/capacitor/super,/obj/item/weapon/stock_parts/capacitor/super,/obj/item/weapon/stock_parts/capacitor/super,/obj/item/weapon/stock_parts/capacitor/super,/obj/item/weapon/stock_parts/motor,/obj/item/weapon/stock_parts/motor,/obj/item/weapon/stock_parts/motor,/obj/item/weapon/stock_parts/motor,/obj/item/weapon/stock_parts/motor,/obj/item/weapon/stock_parts/scanning_module/phasic,/obj/item/weapon/stock_parts/scanning_module/phasic,/obj/item/weapon/stock_parts/scanning_module/phasic,/obj/item/weapon/stock_parts/scanning_module/phasic,/obj/item/weapon/stock_parts/scanning_module/phasic,/obj/item/weapon/stock_parts/scanning_module/phasic,/obj/item/weapon/stock_parts/spring,/obj/item/weapon/stock_parts/spring,/obj/item/weapon/stock_parts/spring,/obj/item/weapon/stock_parts/spring,/obj/item/weapon/stock_parts/spring,/obj/item/weapon/stock_parts/spring,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/crystal,/obj/item/weapon/stock_parts/subspace/crystal,/obj/item/weapon/stock_parts/subspace/sub_filter,/obj/item/weapon/stock_parts/subspace/sub_filter,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/clothing/glasses/welding,/obj/item/clothing/glasses/welding,/obj/item/device/bodysnatcher,/obj/item/weapon/card/emag,/obj/item/weapon/card/emag,/obj/item/weapon/cell/super,/obj/item/weapon/cell/super,/obj/item/weapon/cell/device/super,/obj/item/weapon/cell/device/super,/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/effect/floor_decal/techfloor{dir = 8},/obj/machinery/light/poi{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"iI" = (/obj/structure/sign/warning/vacuum,/turf/simulated/wall/skipjack,/area/survivalpod/superpose/MechFabShip) +"iK" = (/obj/machinery/computer/operating{dir = 8; name = "Robotics Operating Computer"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/light/poi{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"iU" = (/obj/structure/salvageable/computer_os,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"jl" = (/obj/machinery/atmospherics/pipe/tank/phoron/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/sign/atmos/phoron{pixel_x = 32},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"jx" = (/obj/structure/salvageable/implant_container_os,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"jE" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/closet/walllocker/emerglocker/north,/obj/effect/floor_decal/techfloor/orange,/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"kr" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/cryofeed,/turf/simulated/floor/greengrid/nitrogen,/area/survivalpod/superpose/MechFabShip) +"kz" = (/obj/structure/salvageable/console_broken_os,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"kH" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular{id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/MechFabShip) +"kJ" = (/obj/structure/closet/walllocker_double/kitchen/east{name = "Ration Cabinet"},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MechFabShip) +"lC" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/phoron,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"lK" = (/obj/structure/ship_munition/disperser_charge/mining,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"lZ" = (/obj/machinery/space_heater,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"mf" = (/obj/structure/bed/chair/bay/comfy/captain{dir = 1},/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MechFabShip) +"mG" = (/obj/structure/sign/kiddieplaque{name = "Kalipso: Modular fabrication shuttle"; pixel_x = 32},/turf/template_noop,/area/template_noop) +"ny" = (/obj/effect/floor_decal/industrial/loading,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/MechFabShip) +"nJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"oz" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/part_replacer/adv/discount_bluespace,/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/MechFabShip) +"oS" = (/obj/structure/table/steel_reinforced,/obj/item/device/defib_kit/jumper_kit/loaded,/obj/item/device/defib_kit/jumper_kit/loaded,/obj/item/device/mmi,/obj/item/device/mmi,/obj/item/device/mmi,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"ph" = (/turf/simulated/wall/skipjack,/area/survivalpod/superpose/MechFabShip) +"py" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/reagent_dispensers/acid{pixel_y = 30},/obj/machinery/computer/rdconsole/robotics,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"pR" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular{dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/MechFabShip) +"qf" = (/obj/effect/floor_decal/techfloor/corner{dir = 6},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/MechFabShip) +"qk" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor/corner{dir = 5},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"qK" = (/obj/machinery/computer/rdconsole/core,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"qU" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/machinery/portable_atmospherics/canister/phoron,/obj/effect/floor_decal/techfloor/orange/corner{dir = 4},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"qX" = (/obj/structure/table/steel_reinforced,/obj/machinery/cell_charger,/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/MechFabShip) +"qY" = (/obj/machinery/vending/robotics{emagged = 1; req_access = null},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light/poi{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"rr" = (/obj/machinery/transhuman/synthprinter,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"rR" = (/obj/effect/catwalk_plated/dark,/obj/structure/sign/department/cargo_dock{pixel_x = -32},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"rZ" = (/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MechFabShip) +"sd" = (/obj/machinery/access_button{master_tag = null; pixel_y = 27; req_one_access = null},/obj/effect/map_helper/airlock/door/int_door,/obj/effect/map_helper/airlock/button/int_button,/obj/machinery/door/airlock/hatch,/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/MechFabShip) +"sK" = (/obj/structure/closet/walllocker/emerglocker{pixel_x = 24; pixel_y = 32},/obj/machinery/button/remote/blast_door{dir = 8; id = "kalipsoshutters"; name = "Emergency Lockdown"; pixel_x = 28},/obj/machinery/light/poi{dir = 4},/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MechFabShip) +"te" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow,/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"tk" = (/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/MechFabShip) +"tC" = (/obj/machinery/mech_recharger,/obj/mecha/combat/gygax/old,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/MechFabShip) +"uU" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/techfloor/orange,/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/door/window/survival_pod{dir = 1},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"vb" = (/obj/structure/window/reinforced/survival_pod{opacity = 1},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/machinery/r_n_d/server/robotics,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/MechFabShip) +"vt" = (/obj/machinery/power/generator{anchored = 1; dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MechFabShip) +"vC" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable/green,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"vO" = (/obj/effect/floor_decal/techfloor,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MechFabShip) +"ws" = (/obj/machinery/airlock_sensor{dir = 1; id_tag = null; pixel_y = -27},/obj/effect/map_helper/airlock/sensor/chamber_sensor,/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"wy" = (/obj/machinery/computer/ship/disperser,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"yh" = (/obj/structure/bed/pod,/obj/item/weapon/bedsheet/captain,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MechFabShip) +"yH" = (/obj/effect/floor_decal/techfloor/corner,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/MechFabShip) +"yN" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/machinery/light/poi{dir = 8},/obj/structure/closet/walllocker/emerglocker/west,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/MechFabShip) +"yS" = (/obj/machinery/atmospherics/unary/engine/biggest{dir = 1},/turf/template_noop,/area/template_noop) +"zd" = (/obj/structure/bed/pod,/obj/item/weapon/bedsheet/ce,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MechFabShip) +"zj" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/machinery/floodlight,/obj/effect/floor_decal/techfloor/orange{dir = 4},/obj/machinery/light/small/emergency{dir = 8},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"zC" = (/obj/machinery/autolathe{hacked = 1},/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"zN" = (/obj/structure/table/survival_pod,/obj/machinery/microwave{pixel_y = 6},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/MechFabShip) +"zU" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9},/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"AK" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -30},/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/MechFabShip) +"Bf" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/closet/walllocker_double/hydrant/east,/obj/structure/closet/walllocker/emerglocker/south,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"Bk" = (/obj/structure/closet/walllocker/emerglocker/south,/obj/structure/table/rack/shelf/steel,/obj/structure/ship_munition/disperser_charge/mining,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"Bz" = (/obj/effect/catwalk_plated/dark,/obj/item/weapon/banner/blue,/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"BA" = (/obj/structure/table/rack/shelf/steel,/obj/item/trash/rkibble{pixel_x = 8},/obj/item/trash/rkibble{pixel_x = -7},/obj/item/trash/rkibble{pixel_x = -7; pixel_y = 14},/obj/item/trash/rkibble{pixel_x = 8; pixel_y = 14},/obj/item/trash/rkibble{pixel_x = 8; pixel_y = 14},/obj/item/trash/rkibble{pixel_x = -7; pixel_y = 14},/obj/item/trash/rkibble{pixel_x = -7},/obj/item/trash/rkibble{pixel_x = 8},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MechFabShip) +"BY" = (/obj/effect/catwalk_plated/dark,/obj/machinery/shipsensors,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/MechFabShip) +"Cu" = (/obj/machinery/door/airlock/multi_tile/metal/mait{icon_state = "door_locked"; id_tag = "kalipso_hatch"; locked = 1; name = "Cargo Hold"},/obj/machinery/door/blast/regular{dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/MechFabShip) +"CV" = (/obj/effect/floor_decal/techfloor/orange{dir = 8},/obj/machinery/light/small/emergency{dir = 4},/obj/structure/sign/department/eng{pixel_x = 32},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"CY" = (/obj/effect/catwalk_plated/dark,/obj/structure/sign/department/cargo_dock{pixel_x = 32},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"Di" = (/obj/effect/catwalk_plated/dark,/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"Dj" = (/obj/machinery/r_n_d/protolathe,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"Dm" = (/obj/structure/salvageable/machine{name = "Life Support Console"},/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/light/poi{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"DF" = (/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/MechFabShip) +"DS" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{dir = 1; frequency = 1331; id_tag = "kalipso_shuttle"; pixel_y = -26},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"Ey" = (/obj/machinery/door/airlock/glass_centcom{name = "Port Cannons"},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/MechFabShip) +"FC" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular{dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/MechFabShip) +"Gl" = (/obj/machinery/access_button{master_tag = null; pixel_y = 27; req_one_access = null},/obj/effect/map_helper/airlock/door/ext_door,/obj/effect/map_helper/airlock/button/ext_button,/obj/machinery/door/airlock/hatch,/obj/machinery/door/blast/regular{id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/MechFabShip) +"Gr" = (/obj/machinery/power/smes/buildable/hybrid,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/structure/sign/electricshock{pixel_x = -32},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"GQ" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light/small/emergency{dir = 8},/obj/structure/sign/atmos/air{pixel_x = -32},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"GS" = (/obj/machinery/door/airlock/glass_centcom{name = "Starboard Wing Atmos"},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/MechFabShip) +"He" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/structure/closet/walllocker/medical/west,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/MechFabShip) +"HC" = (/obj/machinery/mecha_part_fabricator,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"HE" = (/obj/item/weapon/stool/padded,/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/MechFabShip) +"HS" = (/obj/machinery/door/airlock/glass_centcom{name = "Starboard Cannon"},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/MechFabShip) +"Ic" = (/obj/structure/reagent_dispensers/fueltank/high,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"IS" = (/obj/structure/closet/emcloset,/obj/machinery/light/poi{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MechFabShip) +"Jv" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/techfloor/orange,/obj/effect/floor_decal/techfloor/corner{dir = 5},/obj/structure/sign/electricshock{pixel_y = 32},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"JW" = (/obj/structure/salvageable/console_os{name = "Turret control console"},/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/light/poi{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"JX" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -30},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/MechFabShip) +"KC" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"KR" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"Lg" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/phoron,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor/corner{dir = 9},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"LN" = (/obj/structure/window/reinforced/survival_pod,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MechFabShip) +"Ms" = (/obj/machinery/smartfridge/survival_pod,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/weapon/storage/firstaid/adv,/obj/item/weapon/storage/firstaid/regular,/obj/item/modular_computer/laptop/preset/custom_loadout/rugged,/obj/item/weapon/storage/box/survival/comp{starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)},/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/extinguisher/mini,/obj/item/device/radio{icon_state = "walkietalkiebay"; name = "emergency radio"},/obj/item/weapon/towel{color = "#800080"},/obj/item/weapon/towel{color = "#800080"},/obj/item/weapon/storage/box/donkpockets,/obj/item/weapon/storage/box/donkpockets,/obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/proteinshake,/obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/proteinshake,/obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/proteinshake,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/weapon/reagent_containers/food/snacks/candy,/obj/item/weapon/reagent_containers/food/snacks/candy,/obj/item/weapon/reagent_containers/food/drinks/dry_ramen,/obj/item/weapon/reagent_containers/food/drinks/dry_ramen,/obj/item/weapon/reagent_containers/food/drinks/dry_ramen,/obj/item/weapon/reagent_containers/food/snacks/chips,/obj/item/weapon/reagent_containers/food/snacks/chips,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/no_raisin,/obj/item/weapon/reagent_containers/food/snacks/no_raisin,/obj/item/weapon/reagent_containers/food/snacks/cheesiehonkers,/obj/item/weapon/reagent_containers/food/snacks/cheesiehonkers,/obj/item/weapon/reagent_containers/food/snacks/tastybread,/obj/item/weapon/reagent_containers/food/snacks/tastybread,/obj/item/weapon/reagent_containers/food/snacks/tastybread,/obj/item/weapon/reagent_containers/food/snacks/syndicake,/obj/item/weapon/reagent_containers/food/snacks/unajerky,/obj/item/weapon/storage/box/mixedglasses,/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask,/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask,/obj/item/weapon/reagent_containers/food/drinks/bottle/orangejuice,/obj/item/weapon/reagent_containers/food/drinks/bottle/tomatojuice,/obj/item/weapon/reagent_containers/food/drinks/bottle/limejuice,/obj/item/weapon/reagent_containers/food/drinks/bottle/lemonjuice,/obj/item/weapon/reagent_containers/food/drinks/bottle/applejuice,/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,/obj/item/weapon/reagent_containers/food/drinks/bottle/cream,/obj/item/weapon/reagent_containers/food/drinks/bottle/cola,/obj/item/weapon/reagent_containers/food/drinks/bottle/space_up,/obj/item/weapon/reagent_containers/food/drinks/bottle/space_mountain_wind,/obj/item/weapon/reagent_containers/food/drinks/cans/grape_juice,/obj/item/weapon/reagent_containers/food/drinks/cans/grape_juice,/obj/item/weapon/reagent_containers/food/drinks/cans/sodawater,/obj/item/weapon/reagent_containers/food/drinks/cans/sodawater,/obj/item/weapon/reagent_containers/food/drinks/cans/gingerale,/obj/item/weapon/reagent_containers/food/drinks/cans/gingerale,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/ice,/obj/item/weapon/reagent_containers/food/drinks/ice,/obj/item/weapon/reagent_containers/food/drinks/tea,/obj/item/weapon/reagent_containers/food/drinks/tea,/obj/item/weapon/reagent_containers/food/drinks/h_chocolate,/obj/item/weapon/reagent_containers/food/drinks/h_chocolate,/obj/item/weapon/reagent_containers/food/drinks/h_chocolate,/obj/item/toy/plushie/kitten,/obj/item/pizzabox/meat,/obj/item/pizzabox/meat,/obj/item/pizzabox/mushroom,/obj/item/pizzabox/mushroom,/obj/item/pizzabox/vegetable,/obj/item/pizzabox/vegetable,/obj/item/device/survivalcapsule/luxurybar,/obj/item/device/survivalcapsule/luxury,/obj/item/device/survivalcapsule/luxury,/obj/item/device/survivalcapsule/tabiranth,/obj/item/device/survivalcapsule/tabiranth,/obj/item/device/survivalcapsule/luxury,/obj/item/device/survivalcapsule/luxury,/obj/item/weapon/soap/deluxe,/obj/item/weapon/soap/deluxe,/obj/item/weapon/storage/firstaid/combat{pixel_x = 5; pixel_y = 5},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/towel{color = "#ff0000"; name = "red towel"},/obj/item/weapon/towel{color = "#ff0000"; name = "red towel"},/obj/machinery/light/poi{dir = 1},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/MechFabShip) +"Mv" = (/obj/machinery/door/blast/regular{dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/MechFabShip) +"MZ" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/techfloor/orange/corner{dir = 8},/obj/effect/floor_decal/techfloor/corner{dir = 9},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"Nr" = (/obj/structure/window/reinforced/survival_pod{opacity = 1},/obj/machinery/r_n_d/server/core,/obj/structure/window/reinforced/survival_pod{dir = 4; opacity = 1},/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/MechFabShip) +"ND" = (/obj/structure/sign/deck1,/turf/simulated/wall/skipjack,/area/survivalpod/superpose/MechFabShip) +"Oo" = (/obj/item/weapon/stool/padded,/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/MechFabShip) +"Ov" = (/obj/machinery/optable{name = "Robotics Operating Table"},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/MechFabShip) +"OO" = (/obj/structure/bed/pod,/obj/item/weapon/bedsheet/hos,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MechFabShip) +"Py" = (/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "fridge_sci"; icon_contents = "chem"; icon_state = "fridge_sci"; name = "Advanced storage"; pixel_y = 0},/obj/item/stack/material/durasteel{material = 50},/obj/item/stack/material/durasteel{material = 50},/obj/item/stack/material/phoron{material = 50},/obj/item/stack/material/phoron{material = 50},/obj/item/stack/material/diamond{material = 15},/obj/item/stack/material/gold{material = 25},/obj/item/stack/material/lead{material = 25},/obj/item/stack/material/plastic{material = 50},/obj/item/stack/material/plastic{material = 50},/obj/item/stack/material/platinum{matter = 25},/obj/item/stack/material/silver{material = 25},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/uranium{material = 25},/obj/item/stack/rods{amount = 50},/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/item/clothing/head/welding/demon,/obj/item/clothing/head/welding/knight,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = 6},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = 6},/obj/item/device/robotanalyzer,/obj/item/device/robotanalyzer,/obj/item/weapon/cell/super,/obj/item/weapon/cell/super,/obj/item/weapon/cell/device/super,/obj/item/weapon/cell/device/super,/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/glass/reinforced{amount = 50},/obj/item/stack/material/glass/reinforced{amount = 50},/obj/item/stack/material/glass/reinforced{amount = 50},/obj/item/stack/material/glass/reinforced{amount = 50},/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"PH" = (/obj/structure/window/reinforced/survival_pod{opacity = 1},/obj/structure/prop/blackbox/salamander_wreck,/obj/structure/sign/department/rnd{pixel_y = 32},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/MechFabShip) +"PP" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MechFabShip) +"Qs" = (/obj/machinery/door/airlock/glass_centcom{id_tag = "kalipsobolt"; name = "Bridge"},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/MechFabShip) +"QE" = (/obj/machinery/r_n_d/circuit_imprinter,/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"QJ" = (/obj/machinery/disperser/middle{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/effect/catwalk_plated/dark,/obj/machinery/door/blast/regular{dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"Rg" = (/obj/structure/shuttle/engine/router,/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"Ro" = (/obj/item/trash/rkibble{pixel_x = 8; pixel_y = 14},/obj/structure/table/rack/shelf/steel,/obj/item/trash/rkibble{pixel_x = 8},/obj/item/trash/rkibble{pixel_x = -7; pixel_y = 14},/obj/item/trash/rkibble{pixel_x = -7},/obj/item/trash/rkibble{pixel_x = 8; pixel_y = 14},/obj/item/trash/rkibble{pixel_x = -7; pixel_y = 14},/obj/item/trash/rkibble{pixel_x = -7},/obj/item/trash/rkibble{pixel_x = 8},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MechFabShip) +"RE" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/techfloor/corner{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"SE" = (/obj/item/weapon/stool/padded,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MechFabShip) +"SW" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/r_n_d/circuit_imprinter,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/structure/sign/department/robo{pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"Ta" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/phoron/cold,/obj/effect/floor_decal/techfloor/orange/corner,/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"Th" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/mecha_part_fabricator/pros,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"TI" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/machinery/light/poi{dir = 4},/obj/structure/closet/walllocker/emerglocker/east,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/MechFabShip) +"Ud" = (/obj/effect/floor_decal/techfloor/corner{dir = 10},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/MechFabShip) +"Uj" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"UI" = (/obj/effect/floor_decal/industrial/loading{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/MechFabShip) +"UL" = (/turf/simulated/shuttle/plating,/area/survivalpod/superpose/MechFabShip) +"Vf" = (/obj/structure/closet/walllocker/emerglocker{pixel_x = -25; pixel_y = 32},/mob/living/simple_mob/animal/passive/dog/corgi/Lisa{name = "Shepiffany"},/obj/structure/dogbed,/obj/machinery/light/poi{dir = 8},/obj/machinery/button/remote/airlock{dir = 4; id = "kalipsobolt"; name = "Bridge Lock Down"; pixel_x = -28; specialfunctions = 4},/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MechFabShip) +"Vj" = (/obj/machinery/r_n_d/protolathe,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"VZ" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/foodcart,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/MechFabShip) +"Wl" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/structure/closet/walllocker/medical/east,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/MechFabShip) +"WE" = (/obj/structure/sign/ironhammer,/turf/simulated/wall/skipjack,/area/survivalpod/superpose/MechFabShip) +"WG" = (/obj/machinery/shower{dir = 4},/obj/structure/curtain/open/shower/security,/obj/machinery/door/window/survival_pod{dir = 2},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/MechFabShip) +"WQ" = (/obj/effect/floor_decal/techfloor/corner{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MechFabShip) +"WY" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular{dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/MechFabShip) +"Xe" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/door/window/survival_pod{dir = 1},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"Xm" = (/obj/structure/prop/fake_ai{name = "k@1iPs0"},/obj/structure/sign/department/commander{pixel_y = -32},/turf/simulated/floor/greengrid/nitrogen,/area/survivalpod/superpose/MechFabShip) +"Xx" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular{id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/MechFabShip) +"Yb" = (/obj/machinery/door/airlock/glass_centcom{name = "Port Wing Engine"},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/MechFabShip) +"Yj" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/closet/walllocker/emerglocker/west,/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/MechFabShip) +"Yl" = (/obj/structure/fans,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/MechFabShip) +"Yo" = (/obj/machinery/power/port_gen/pacman{anchored = 1},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"Yt" = (/obj/machinery/r_n_d/destructive_analyzer,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"YM" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/MechFabShip) +"YP" = (/obj/machinery/disperser/front{dir = 1},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"Zg" = (/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/MechFabShip) +"Zm" = (/obj/effect/floor_decal/techfloor,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/MechFabShip) +"Zs" = (/obj/structure/bed/chair/bay/comfy/black{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/MechFabShip) +"Zt" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/door/blast/regular{dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) +"ZE" = (/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MechFabShip) +"ZH" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/techfloor/corner{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"ZY" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular{id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/MechFabShip) + +(1,1,1) = {" +iCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiCiC +iCiCiCiCiCiCiCiCiCiCphiCiCiCiCiCphiCiCiCiCiCiCiCiCiCiC +iCiCiCiCiCiCiCYPiCiCphFCWYWYWYpRphiCiCYPiCiCiCiCiCiCiC +iCiCiCiCiCiCphQJFCpRphjxkzaFiUitphFCpRQJphiCiCiCiCiCiC +iCiCiCiCiCphphfRwyJWphVfmfZEmfsKphDmwybbphphiCiCiCiCiC +iCiCiCiCiCiCkHlKZsZgQsZELNLNLNZEQsZgZsbPkHiCiCiCiCiCiC +iCiCiCiCiCiCZYlKZgBkphatkrXmeMkJphaoZgbPZYiCiCiCiCiCiC +iCiCiCiCiCphphphEyphphphphphphphphphHSphphphiCiCiCiCiC +iCiCiCiCiCiCBYphYjDFvbPHNrqYzCSWpytkhzphiCiCiCiCiCiCiC +iCiCiCiCiCiCiCXxIcDFqXqKozrZhHtkHEtkPyXxiCiCiCiCiCiCiC +iCiCiCiCiCiCiCphiDDFDFOoYMrZHCThtkOviKphiCiCiCiCiCiCiC +iCiCiCiCiCiCiCXxVjDFDFDFYMSEhHtktkHEcMXxiCiCiCiCiCiCiC +iCiCiCphphphphphQEAKDFYtDjgvaGrrtkJXoSphphphphphiCiCiC +iCiCphphePiIISphphphhIphphphphphhIphphphYlMsbkphphiCiC +iCiCphKRgDphrZRophHeULREhubLhuZHULWlphalaqrZrZOOphiCiC +iCiCGlwsDSsdrZBAphyNULULULULULULULTIphWGzNrZrZyhXxiCiC +iCphphphphphvOWQYbqfZmZmZmZmZmZmZmUdGSyHZmWQrZzdphphiC +iCphphTajEJvuUMZphgZUIUIVZiwgHnynytCphqkXeLglCjlphphiC +iCiCphzjbIvtPPCVphphCuMvNDphNDCuMvphphGQKCnJteebphiCiC +iCiCphqUzUdhUjhJphphrRDiDiDiDiDiCYphphGrvCYolZBfphiCiC +iCiCphphZtZtZtphphBzDiDiDiDiDiDiDiBzphphZtZtZtphphiCiC +iCphphRgdzdzdzRgphWEiCiCiCiCiCiCmGphphRgdzdzdzRgphphiC +iCphiCiCiCiCiCiCiCphiCiCiCiCiCiCiCphiCiCiCiCiCiCiCphiC +iCiCiCiCySiCiCiCiCiCiCiCiCiCiCiCiCiCiCiCySiCiCiCiCiCiC +"} diff --git a/modular_chomp/maps/submaps/shelters/MechStorageFab-32x24.dmm b/modular_chomp/maps/submaps/shelters/MechStorageFab-32x24.dmm new file mode 100644 index 0000000000..0d5b044450 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/MechStorageFab-32x24.dmm @@ -0,0 +1,173 @@ +"ak" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MechStorageFab) +"av" = (/obj/structure/salvageable/computer,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"ax" = (/obj/structure/table/rack/shelf/steel,/obj/item/mecha_parts/mecha_equipment/cloak,/obj/item/mecha_parts/mecha_equipment/tool/jetpack,/obj/item/mecha_parts/mecha_equipment/tool/passenger,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"aI" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"ba" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"bE" = (/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/MechStorageFab) +"bQ" = (/obj/random/maintenance,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"ca" = (/obj/structure/table/rack/shelf/steel,/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster,/obj/item/mecha_parts/mecha_equipment/repair_droid,/obj/item/mecha_parts/mecha_equipment/tool/passenger,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/grenade/clusterbang,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"cS" = (/obj/structure/window/reinforced/survival_pod,/obj/machinery/field_generator{anchored = 1; state = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MechStorageFab) +"df" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/survivalpod/superpose/MechStorageFab) +"dt" = (/obj/structure/bed/double/padded,/turf/simulated/floor/wood/sif/broken,/area/survivalpod/superpose/MechStorageFab) +"dA" = (/obj/machinery/icecream_vat,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"dG" = (/turf/template_noop,/area/template_noop) +"dH" = (/obj/random/maintenance,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/steel_dirty,/area/survivalpod/superpose/MechStorageFab) +"ea" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled/steel_dirty,/area/survivalpod/superpose/MechStorageFab) +"ez" = (/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/MechStorageFab) +"fq" = (/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MechStorageFab) +"gG" = (/obj/machinery/fusion_fuel_compressor,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"gT" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"ho" = (/obj/structure/reagent_dispensers/fueltank/high,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"hr" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"hK" = (/obj/structure/reagent_dispensers/watertank/high,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"ij" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -24},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"in" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"iH" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/alarm/alarms_hidden{dir = 1; pixel_y = -22},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"jq" = (/obj/mecha/working/hoverpod/shuttlecraft{dir = 8},/turf/template_noop,/area/template_noop) +"ju" = (/obj/structure/salvageable/bliss,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"kd" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/MechStorageFab) +"lc" = (/obj/random/maintenance/engineering,/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"lk" = (/obj/structure/table/rack/shelf/steel,/obj/item/mecha_parts/component/hull/lightweight,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/scattershot,/obj/item/mecha_parts/mecha_equipment/weapon/phoron_bore,/obj/item/mecha_parts/mecha_equipment/weapon/energy/taser/rigged,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"ly" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/steel_dirty,/area/survivalpod/superpose/MechStorageFab) +"lA" = (/obj/random/maintenance/engineering,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"lX" = (/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/machinery/ion_engine,/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/MechStorageFab) +"mB" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/toolbox/syndicate/powertools,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"nc" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/rainbowdouble,/obj/machinery/partyalarm{pixel_y = -18},/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/MechStorageFab) +"nh" = (/obj/structure/table/rack/shelf/steel,/obj/item/mecha_parts/component/armor/alien,/obj/item/mecha_parts/mecha_equipment/crisis_drone/rad,/obj/item/mecha_parts/mecha_equipment/tool/passenger,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg/rigged,/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/heavy/rigged,/obj/item/mecha_parts/mecha_equipment/weapon/energy/medigun,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"ns" = (/obj/machinery/vending/tool{emagged = 1},/turf/simulated/floor/tiled/steel_dirty,/area/survivalpod/superpose/MechStorageFab) +"nz" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/steel_dirty,/area/survivalpod/superpose/MechStorageFab) +"nH" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/random/junk,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"nJ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm/alarms_hidden{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"nZ" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"oh" = (/obj/machinery/door/airlock/maintenance/int,/obj/structure/fans/hardlight,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"oW" = (/obj/machinery/sleeper{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"pw" = (/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"pA" = (/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"qa" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/loot_pile/mecha/marauder/mauler,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechStorageFab) +"qb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/MechStorageFab) +"qf" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"qp" = (/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/wood/sif/broken,/area/survivalpod/superpose/MechStorageFab) +"qy" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"qE" = (/obj/machinery/autolathe{hacked = 1; name = "hacked autolathe"},/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"qY" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"rj" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/alarm/alarms_hidden{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"rl" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"rp" = (/obj/random/maintenance,/turf/simulated/floor/tiled/steel_dirty,/area/survivalpod/superpose/MechStorageFab) +"rM" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"sd" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"sk" = (/obj/random/junk,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"sK" = (/obj/vehicle/boat{dir = 8},/obj/structure/lattice,/turf/template_noop,/area/survivalpod/superpose/MechStorageFab) +"tl" = (/obj/machinery/floorlayer,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"to" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/machinery/gear_dispenser/suit_old,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"tw" = (/turf/simulated/floor/plating/external,/area/template_noop) +"tH" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/survivalpod/superpose/MechStorageFab) +"tK" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/fans/hardlight,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"tO" = (/obj/structure/table/rack/shelf/steel,/obj/item/mecha_parts/mecha_equipment/generator/nuclear,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/explosive/rigged,/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion/rigged,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"tV" = (/obj/structure/table/rack/shelf/steel,/obj/item/mecha_parts/component/gas/reinforced,/obj/item/mecha_parts/mecha_equipment/hardpoint_actuator,/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/cannon,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/grenade/rigged,/obj/item/mecha_parts/mecha_equipment/wormhole_generator,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"tW" = (/obj/structure/closet/walllocker_double/kitchen/north{dir = 8; name = "Ration Cabinet"; pixel_x = -32; pixel_y = 0},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"us" = (/obj/machinery/artifact_scanpad,/obj/effect/simple_portal/linked,/obj/effect/map_effect/interval/effect_emitter/sparks,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MechStorageFab) +"uJ" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/structure/closet/jcloset,/obj/item/weapon/mop,/obj/structure/mopbucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/tiled/steel_dirty,/area/survivalpod/superpose/MechStorageFab) +"vG" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/loot_pile/mecha/odysseus/murdysseus,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechStorageFab) +"wg" = (/obj/random/junk,/obj/random/maintenance,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"wU" = (/obj/structure/salvageable/server,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"yc" = (/obj/machinery/feeder,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"yF" = (/obj/structure/lattice,/turf/template_noop,/area/template_noop) +"yH" = (/obj/machinery/door/airlock/maintenance/engi{req_one_access = null},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"zb" = (/obj/structure/salvageable/autolathe,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"Ah" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/cryofeed{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/MechStorageFab) +"Ao" = (/turf/simulated/wall/skipjack,/area/survivalpod/superpose/MechStorageFab) +"Ar" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"Au" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/loot_pile/mecha/gygax/dark/adv,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechStorageFab) +"AD" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"BC" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"CN" = (/obj/structure/cryofeed{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/MechStorageFab) +"Df" = (/obj/machinery/alarm/alarms_hidden{dir = 4; pixel_x = -22},/obj/item/pizzavoucher,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"Dr" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/alarm/alarms_hidden{pixel_y = 22},/obj/random/maintenance,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"DV" = (/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"EE" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/mecha/combat/gygax/old,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechStorageFab) +"EY" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/mecha/combat/durand/old,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechStorageFab) +"Ga" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/random/maintenance/engineering,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"Go" = (/obj/machinery/power/smes/buildable/hybrid,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"GI" = (/obj/structure/table/rack/shelf/steel,/obj/item/mecha_parts/mecha_equipment/combat_shield,/obj/item/mecha_parts/mecha_equipment/repair_droid,/obj/item/mecha_parts/mecha_equipment/tool/sleeper,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/mortar,/obj/item/mecha_parts/mecha_equipment/weapon/energy/flamer/rigged,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"GX" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/random/maintenance,/turf/simulated/floor/tiled/steel_dirty,/area/survivalpod/superpose/MechStorageFab) +"HE" = (/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/obj/structure/closet{name = "Survival closet"},/turf/simulated/shuttle/floor{icon_state = "floor_yellow"},/area/survivalpod/superpose/MechStorageFab) +"Ib" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"IE" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/mecha/combat/marauder/seraph,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechStorageFab) +"IN" = (/obj/item/weapon/bedsheet/piratedouble,/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/MechStorageFab) +"IS" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"IX" = (/obj/machinery/power/terminal,/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"Jh" = (/obj/structure/closet/secure_closet/engineering_electrical{req_access = null},/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"Jo" = (/obj/machinery/atmospherics/valve{dir = 8},/obj/structure/dispenser{phorontanks = 0},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"JE" = (/obj/machinery/atmospherics/binary/passive_gate{dir = 8; regulate_mode = 0; unlocked = 1},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"JR" = (/obj/mecha/working/hoverpod/combatpod{dir = 8},/turf/template_noop,/area/template_noop) +"JT" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/loot_pile/mecha/durand,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechStorageFab) +"JV" = (/obj/structure/closet/crate/large,/obj/fiftyspawner/steel,/obj/item/stack/material/plasteel{amount = 30},/obj/item/stack/material/phoron{amount = 25},/obj/item/stack/material/glass/phoronrglass{amount = 20},/obj/fiftyspawner/steel,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"Ke" = (/obj/machinery/robotic_fabricator,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"Kt" = (/obj/machinery/alarm/alarms_hidden{dir = 8; pixel_x = 22},/obj/machinery/holoplant,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"KE" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/random/maintenance,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"KN" = (/obj/machinery/sleep_console{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"Lh" = (/obj/structure/closet/crate,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/turf/simulated/floor/plating,/area/survivalpod/superpose/MechStorageFab) +"Lp" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"Ls" = (/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"Ma" = (/obj/structure/closet/walllocker_double/kitchen/north{dir = 8; name = "Ration Cabinet"; pixel_x = -32; pixel_y = 0},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/steel_dirty,/area/survivalpod/superpose/MechStorageFab) +"Ml" = (/obj/structure/table/rack/shelf/steel,/obj/item/mecha_parts/component/armor/military,/obj/item/mecha_parts/component/gas/reinforced,/obj/item/mecha_parts/mecha_equipment/omni_shield,/obj/item/mecha_parts/mecha_equipment/tool/jetpack,/obj/item/mecha_parts/mecha_equipment/tool/passenger,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/cannon,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"Mx" = (/obj/structure/closet/walllocker_double/kitchen/north{dir = 8; name = "Ration Cabinet"; pixel_x = -32; pixel_y = 0},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/tiled/steel_dirty,/area/survivalpod/superpose/MechStorageFab) +"MA" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/random/junk,/turf/simulated/floor/tiled/steel_dirty,/area/survivalpod/superpose/MechStorageFab) +"MB" = (/obj/structure/closet/crate,/obj/fiftyspawner/wood,/obj/fiftyspawner/wood,/obj/fiftyspawner/wood/sif,/obj/fiftyspawner/wood/sif,/obj/fiftyspawner/turcarpet,/obj/fiftyspawner/tealcarpet,/obj/fiftyspawner/sblucarpet,/obj/fiftyspawner/purcarpet,/obj/fiftyspawner/oracarpet,/obj/fiftyspawner/blucarpet,/obj/fiftyspawner/marble,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/fiftyspawner/cardboard,/obj/fiftyspawner/cardboard,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechStorageFab) +"Ni" = (/turf/template_noop,/area/survivalpod/superpose/MechStorageFab) +"NH" = (/obj/mecha/combat/fighter/gunpod{dir = 8},/turf/template_noop,/area/template_noop) +"Oc" = (/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/machinery/atmospherics/binary/circulator{anchored = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/MechStorageFab) +"Of" = (/obj/structure/salvageable/console_os{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"Os" = (/obj/machinery/vending/engivend{emagged = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"OF" = (/obj/mecha/combat/fighter/gunpod/recon{dir = 8},/turf/template_noop,/area/template_noop) +"Pt" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"Qo" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"RS" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double{pixel_y = 6},/obj/item/weapon/tank/emergency/oxygen/double{pixel_y = 6},/obj/item/weapon/tank/emergency/oxygen/double{pixel_y = 6},/obj/item/weapon/tank/emergency/oxygen/double{pixel_y = 6},/obj/item/weapon/tank/emergency/oxygen/double{pixel_y = 6},/obj/structure/table/rack/shelf/steel,/turf/simulated/floor/tiled/steel_dirty,/area/survivalpod/superpose/MechStorageFab) +"Sw" = (/obj/machinery/door/window/survival_pod{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MechStorageFab) +"Sz" = (/obj/vehicle/boat/dragon/sifwood{dir = 8},/obj/structure/lattice,/turf/template_noop,/area/template_noop) +"SM" = (/obj/structure/table/reinforced,/obj/machinery/alarm/alarms_hidden{pixel_y = 22},/obj/machinery/cell_charger,/turf/simulated/floor/tiled/steel_dirty,/area/survivalpod/superpose/MechStorageFab) +"TK" = (/turf/simulated/floor/tiled/steel_dirty,/area/survivalpod/superpose/MechStorageFab) +"Ut" = (/obj/structure/closet/secure_closet/engineering_welding{req_access = null},/obj/random/maintenance,/turf/simulated/floor/tiled/steel_dirty,/area/survivalpod/superpose/MechStorageFab) +"Vb" = (/obj/machinery/atmospherics/pipe/tank/air,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"Vu" = (/obj/machinery/power/shield_generator/charged,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"Vx" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"VT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"We" = (/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/MechStorageFab) +"Wo" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) +"Xr" = (/obj/mecha/combat/fighter/gunpod/loaded{dir = 8},/turf/template_noop,/area/template_noop) +"XH" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/maintenance/rnd{req_one_access = null},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"XX" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/maintenance/engi{req_one_access = null},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"Yd" = (/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) +"Yl" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/loot_pile/mecha/phazon,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechStorageFab) +"YB" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/pizzavoucher,/turf/simulated/floor/tiled/steel_dirty,/area/survivalpod/superpose/MechStorageFab) +"YI" = (/obj/structure/salvageable/console_os{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/survivalpod/superpose/MechStorageFab) +"Zj" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/field_generator{anchored = 1; state = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MechStorageFab) +"ZA" = (/obj/random/maintenance/security,/obj/structure/table/reinforced,/turf/simulated/floor/tiled/steel_dirty,/area/survivalpod/superpose/MechStorageFab) +"ZG" = (/obj/machinery/fitness/heavy/lifter,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) + +(1,1,1) = {" +dGdGdGdGdGdGdGdGdGdGdGdGyFdGyFdGtwtwtwdGdGdGdGdGdGdGtwtwdGdGdGdG +yFyFdGdGyFyFyFyFyFyFyFdGdGdGdGdGtwtwtwdGdGdGyFtwtwtwyFyFyFyFyFyF +dGAoAoAoAoAoAoAoAoAoAoAoAoAodGdGtwdGdGdGyFdGdGtwtwtwdGtwtwtwdGdG +dGsKDVDVDVDVDVDVDVnhGIMllkAoAotKAoAoAotKtKtKAoAoAoAoAoAoAoAodGyF +dGdGdGdGdGdGdGdGDVDVDVDVDVAoJTDVYlDVAoYdaIBCVbAoUtpAakZjAhAotwyF +dGdGdGdGdGdGjqdGDVAoAoAoAoAoEEDVEYDVAoYdDVGaIbAoJhpASwusOcAotwyF +dGdGdGyFyFyFyFyFDVAobEkdbEAoAuDVvGlAAogTJEJotoAoMxpAfqcSlXAodGyF +dGdGdGdGdGdGdGdGDVohbEbEWeohTKTKqfLsAoXXADADADAonJskDVTKTKAoyFyF +dGdGdGdGdGdGXrdGDVAoAoADAoAoVxmBYBdfDrnHQodfMAXHKETKTKycdAAotwyF +dGdGdGyFyFyFyFyFDVAoavjuzbAoAoADADAoAoAoAoAoPtAoAoADAoAoAoAotwyF +dGdGdGdGdGdGdGdGDVtKeapATKADKNoWrpSMLpqEJVAoISAoHEpApAbQtlAotwdG +dGdGdGdGdGdGNHdGDVtKOflcskrMpADVlAbQLsGXQoinIbADnzTKakZjCNAoyFdG +dGdGdGyFyFyFyFyFDVtKwUTKpAADDVpwpwpwpwTKpAAoPtAoMaDVSwusOcAoyFdG +dGdGdGdGdGdGdGdGDVtKYIdHKtAoezAoqpAoezAoINAotHXHsdpwfqcSlXAodGyF +dGdGdGdGdGdGjqdGDVtKZALspAAodtAoncAodtAodtAoPtAoDfpApApAgGAotwyF +dGdGdGyFyFyFyFyFDVAohrTKKeAoAoAoAoAoAoAoAoAolyAoAoADAoAoAoAotwyF +dGdGdGdGdGdGdGdGDVAoAoADAoAoOsnsRSqYiHdfqYdfnZXHWopAZGHEZGAotwyF +dGdGdGdGdGdGOFdGDVohbEbEbEohTKTKVTpAAoADADADyHAorjwgpArpDVAodGyF +dGdGdGyFyFyFyFyFDVAobEqbbEAoqaDVAuDVAoijMBLhDVAotWpAakZjCNAotwyF +dGdGdGdGdGdGJRyFDVAoAoAoAoAoEYlAvGDVAohKrlIXArAoVuDVSwusOcAotwyF +dGdGSzyFyFyFyFyFDVtVaxtOcaAoYlDVIEDVAohoqyGobaAouJTKfqcSlXAotwdG +dGNiDVDVDVDVDVDVDVDVDVDVDVAoAotKAoAoAotKtKtKAoAoAoAoAoAoAoAotwdG +dGAoAoAoAoAoAoAoAoAoAoAoAoAotwtwtwtwtwtwtwtwyFtwtwtwtwdGtwtwdGdG +yFyFyFyFdGdGyFyFyFdGdGyFdGdGtwdGtwtwtwdGtwtwyFtwtwtwtwyFtwtwyFyF +"} diff --git a/modular_chomp/maps/submaps/shelters/MercShip-60x29.dmm b/modular_chomp/maps/submaps/shelters/MercShip-60x29.dmm new file mode 100644 index 0000000000..0ac41dc44f --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/MercShip-60x29.dmm @@ -0,0 +1,316 @@ +"aj" = (/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "fridge_sci"; icon_contents = "chem"; icon_state = "fridge_sci"; name = "Advanced storage"; pixel_y = 0},/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/medical,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"ao" = (/obj/machinery/atmospherics/binary/circulator,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"as" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"at" = (/obj/structure/prop/alien/pod/hybrid,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/MercShip) +"aH" = (/obj/machinery/optable,/obj/machinery/light/poi,/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/MercShip) +"aJ" = (/obj/effect/floor_decal/techfloor{dir = 5},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/MercShip) +"aL" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MercShip) +"aM" = (/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "fridge_sci"; icon_contents = "chem"; icon_state = "fridge_sci"; name = "Advanced storage"; pixel_y = 0},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/research,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"aP" = (/obj/machinery/door/airlock/hatch{req_one_access = null},/obj/structure/fans/hardlight,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"bc" = (/turf/simulated/floor/airless,/area/survivalpod/superpose/MercShip) +"bi" = (/turf/simulated/floor,/area/template_noop) +"bp" = (/obj/effect/floor_decal/techfloor/corner{dir = 9},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/MercShip) +"bv" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/ionrifle,/obj/item/weapon/gun/energy/ionrifle,/obj/item/weapon/cell/device/hyper{pixel_y = -10},/obj/item/weapon/cell/device/hyper{pixel_y = -10},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"bw" = (/obj/structure/prop/alien/pod/open,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/light/poi{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"bH" = (/obj/structure/table/darkglass,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/item/weapon/hand_labeler,/obj/item/device/tape/random,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MercShip) +"bN" = (/obj/machinery/light/poi,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MercShip) +"bO" = (/obj/effect/floor_decal/techfloor,/obj/structure/bed/chair/wood/wings,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/MercShip) +"cp" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"cB" = (/obj/structure/prop/alien/computer/camera{dir = 4},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"cH" = (/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "fridge_sci"; icon_contents = "chem"; icon_state = "fridge_sci"; name = "Advanced storage"; pixel_y = 0},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/research,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"cL" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1; target_pressure = 200},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"cP" = (/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/MercShip) +"cX" = (/obj/effect/floor_decal/techfloor/corner{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"de" = (/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/MercShip) +"dg" = (/obj/structure/loot_pile/surface/alien/engineering,/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"dr" = (/obj/machinery/recycling/sorter,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"dx" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"dz" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"dA" = (/obj/structure/window/reinforced/survival_pod,/obj/machinery/field_generator{anchored = 1; state = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"dB" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"dC" = (/obj/machinery/autolathe{hacked = 1; name = "hacked autolathe"},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"dP" = (/obj/machinery/light/poi,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/MercShip) +"dS" = (/obj/structure/cryofeed{dir = 2},/obj/machinery/light/small/emergency,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/MercShip) +"dW" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MercShip) +"er" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; name = "Scrubber to Waste"},/obj/machinery/light/poi,/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"ex" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/particle/advanced,/obj/item/weapon/gun/energy/particle/advanced,/obj/item/weapon/cell/device/hyper{pixel_y = -10},/obj/item/weapon/cell/device/hyper{pixel_y = -10},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"eB" = (/obj/structure/closet/alien,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/MercShip) +"fc" = (/turf/simulated/floor/carpet/tealcarpet,/area/survivalpod/superpose/MercShip) +"ff" = (/obj/machinery/power/supermatter/shard,/turf/simulated/floor/greengrid/nitrogen,/area/survivalpod/superpose/MercShip) +"fi" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MercShip) +"fm" = (/obj/machinery/computer/security/abductor{icon_screen = null},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"fr" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"fA" = (/obj/structure/cryofeed,/obj/structure/window/reinforced/survival_pod{dir = 5},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/MercShip) +"fK" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"fN" = (/obj/machinery/light/poi{dir = 1},/turf/simulated/floor/carpet/gaycarpet,/area/survivalpod/superpose/MercShip) +"gc" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"gt" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/rddouble,/turf/simulated/floor/carpet,/area/survivalpod/superpose/MercShip) +"gz" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; name = "Scrubber to Waste"},/obj/machinery/light/poi{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"gA" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"gS" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light/poi{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"gW" = (/obj/machinery/door/airlock/hatch{req_one_access = null},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MercShip) +"hp" = (/obj/machinery/teleport/hub{dir = 8},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"hw" = (/obj/machinery/vending/engivend{emagged = 1; req_access = list(777); req_log_access = null},/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/MercShip) +"hI" = (/obj/machinery/recycling/crusher,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"hR" = (/obj/machinery/cryopod{dir = 4},/obj/structure/cryofeed{pixel_x = -32},/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MercShip) +"hV" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"ie" = (/obj/machinery/light/poi,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"iw" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/rddouble,/turf/simulated/floor/carpet/blue,/area/survivalpod/superpose/MercShip) +"iy" = (/obj/structure/table/darkglass,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/item/device/sleevemate,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MercShip) +"iD" = (/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/machinery/ion_engine,/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/MercShip) +"iM" = (/obj/effect/floor_decal/techfloor/corner{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"jc" = (/obj/structure/table/darkglass,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"jd" = (/obj/machinery/atmospherics/pipe/tank/phoron/full,/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"jg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/skipjack,/area/survivalpod/superpose/MercShip) +"jh" = (/obj/structure/loot_pile/surface/alien/engineering,/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/MercShip) +"ji" = (/obj/structure/closet/alien,/obj/random/toolbox,/obj/random/toolbox,/obj/random/toolbox,/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/item/weapon/storage/toolbox/syndicate,/obj/fiftyspawner/phoronrglass,/obj/fiftyspawner/phoronrglass,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/MercShip) +"jm" = (/obj/structure/table/darkglass,/obj/machinery/light/poi{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"jW" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MercShip) +"jZ" = (/obj/machinery/cryopod,/obj/structure/cryofeed{dir = 4; pixel_x = 32},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MercShip) +"kl" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -34},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/MercShip) +"kD" = (/obj/machinery/atmospherics/binary/pump/on{target_pressure = 200},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"kO" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/machinery/door/window/brigdoor/eastleft{name = "Laser Armor"},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/alien{pixel_y = -6},/obj/item/weapon/gun/energy/alien,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MercShip) +"kS" = (/obj/structure/table/bench/glass,/turf/simulated/floor/carpet/tealcarpet,/area/survivalpod/superpose/MercShip) +"kV" = (/obj/effect/floor_decal/techfloor/corner{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"lk" = (/obj/structure/table/darkglass,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"lp" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/light/poi,/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"lt" = (/obj/machinery/door/blast/multi_tile/four_tile_ver_sec,/turf/simulated/wall/skipjack,/area/survivalpod/superpose/MercShip) +"lJ" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"mm" = (/obj/machinery/power/emitter/gyrotron,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/cyan,/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"mv" = (/obj/structure/table/darkglass,/obj/item/weapon/reagent_containers/glass/beaker/bluespace,/obj/item/weapon/reagent_containers/glass/beaker/bluespace{pixel_x = -7},/obj/item/weapon/storage/belt/medical/alien,/obj/item/weapon/storage/belt/medical/alien{pixel_y = 6},/obj/item/weapon/storage/firstaid/surgery,/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/MercShip) +"my" = (/obj/machinery/oxygen_pump/anesthetic,/turf/simulated/wall/skipjack,/area/survivalpod/superpose/MercShip) +"mK" = (/obj/machinery/power/emitter/gyrotron,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/cyan,/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"mQ" = (/obj/structure/closet/alien,/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/MercShip) +"mT" = (/obj/machinery/cryopod,/obj/structure/cryofeed{dir = 4; pixel_x = 32},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"nj" = (/obj/structure/table/alien,/obj/item/weapon/soap/deluxe,/obj/item/weapon/soap/deluxe,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/MercShip) +"ns" = (/obj/machinery/light/poi{dir = 1},/turf/simulated/floor/airless,/area/survivalpod/superpose/MercShip) +"nt" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"nv" = (/obj/structure/prop/alien/computer/camera{dir = 1},/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/light/poi{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"nx" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MercShip) +"nB" = (/obj/structure/closet/alien,/obj/random/toolbox,/obj/random/toolbox,/obj/random/toolbox,/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/item/weapon/storage/toolbox/syndicate,/obj/fiftyspawner/plasteel,/obj/fiftyspawner/plasteel,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/machinery/light/poi{dir = 1},/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/MercShip) +"nC" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"nL" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/mecha/working/ripley/antique,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"oh" = (/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/machinery/door/window/brigdoor/westleft{name = "Combat Armor"},/obj/structure/table/rack/shelf/steel,/obj/item/clothing/suit/armor/alien/tank,/obj/item/clothing/head/helmet/alien/tank,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MercShip) +"oi" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/smes/buildable{icon = 'icons/obj/alien_smes.dmi'; icon_state = "unit"; input_level = 950000; name = "Alien Royal Capacitor"; output_level = 950000},/obj/structure/cable/cyan,/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"op" = (/obj/structure/window/reinforced/survival_pod{dir = 10},/obj/machinery/light/poi,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/MercShip) +"oG" = (/obj/machinery/light/poi{dir = 4},/turf/simulated/floor/airless,/area/survivalpod/superpose/MercShip) +"oI" = (/obj/effect/floor_decal/techfloor,/obj/machinery/vending/deluxe_dinner{req_access = null; req_log_access = null},/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/MercShip) +"oM" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"oR" = (/obj/structure/table/darkglass,/obj/random/maintenance/security,/obj/random/maintenance/security,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/MercShip) +"ph" = (/obj/machinery/power/generator{anchored = 1; dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"pi" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MercShip) +"pu" = (/obj/machinery/sleeper{dir = 4; emagged = 1; initial_bin_rating = 4},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/MercShip) +"px" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/field_generator{anchored = 1; state = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"pC" = (/obj/effect/floor_decal/techfloor,/obj/structure/prop/alien/dispenser,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MercShip) +"qa" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/ionrifle/pistol,/obj/item/weapon/gun/energy/ionrifle/pistol,/obj/item/weapon/cell/device/hyper{pixel_y = -10},/obj/item/weapon/cell/device/hyper{pixel_y = -10},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"qb" = (/obj/machinery/smartfridge/survival_pod{desc = "A mysterious machine which can fabricate many tools for acquiring test subjects."; icon = 'icons/obj/abductor_vr.dmi'; icon_base = "dispenser_2way"; icon_state = "dispenser_2way"; name = "Implant-Co"},/obj/item/weapon/implantcase/taser,/obj/item/weapon/implantcase/taser,/obj/item/weapon/implantcase/taser,/obj/item/weapon/implantcase/taser,/obj/item/weapon/implantcase/taser,/obj/item/weapon/implantcase/taser,/obj/item/weapon/implantcase/taser,/obj/item/weapon/implantcase/taser,/obj/item/weapon/implantcase/taser,/obj/item/weapon/implantcase/taser,/obj/item/weapon/implantcase/vrlanguage,/obj/item/weapon/implantcase/vrlanguage,/obj/item/weapon/implantcase/vrlanguage,/obj/item/weapon/implantcase/vrlanguage,/obj/item/weapon/implantcase/vrlanguage,/obj/item/weapon/implantcase/vrlanguage,/obj/item/weapon/implantcase/vrlanguage,/obj/item/weapon/implantcase/vrlanguage,/obj/item/weapon/implantcase/vrlanguage,/obj/item/weapon/implantcase/vrlanguage,/obj/item/weapon/implantcase/sprinter,/obj/item/weapon/implantcase/sprinter,/obj/item/weapon/implantcase/sprinter,/obj/item/weapon/implantcase/sprinter,/obj/item/weapon/implantcase/sprinter,/obj/item/weapon/implantcase/sprinter,/obj/item/weapon/implantcase/sprinter,/obj/item/weapon/implantcase/sprinter,/obj/item/weapon/implantcase/sprinter,/obj/item/weapon/implantcase/sprinter,/obj/item/weapon/implantcase/shades,/obj/item/weapon/implantcase/shades,/obj/item/weapon/implantcase/shades,/obj/item/weapon/implantcase/shades,/obj/item/weapon/implantcase/shades,/obj/item/weapon/implantcase/shades,/obj/item/weapon/implantcase/shades,/obj/item/weapon/implantcase/shades,/obj/item/weapon/implantcase/shades,/obj/item/weapon/implantcase/shades,/obj/item/weapon/implantcase/freedom,/obj/item/weapon/implantcase/freedom,/obj/item/weapon/implantcase/freedom,/obj/item/weapon/implantcase/freedom,/obj/item/weapon/implantcase/freedom,/obj/item/weapon/implantcase/freedom,/obj/item/weapon/implantcase/freedom,/obj/item/weapon/implantcase/freedom,/obj/item/weapon/implantcase/freedom,/obj/item/weapon/implantcase/freedom,/obj/item/weapon/implantcase/death_alarm,/obj/item/weapon/implantcase/death_alarm,/obj/item/weapon/implantcase/death_alarm,/obj/item/weapon/implantcase/death_alarm,/obj/item/weapon/implantcase/death_alarm,/obj/item/weapon/implantcase/death_alarm,/obj/item/weapon/implantcase/death_alarm,/obj/item/weapon/implantcase/death_alarm,/obj/item/weapon/implantcase/death_alarm,/obj/item/weapon/implantcase/death_alarm,/obj/item/weapon/implantcase/exile,/obj/item/weapon/implantcase/exile,/obj/item/weapon/implantcase/exile,/obj/item/weapon/implantcase/exile,/obj/item/weapon/implantcase/exile,/obj/item/weapon/implantcase/exile,/obj/item/weapon/implantcase/exile,/obj/item/weapon/implantcase/exile,/obj/item/weapon/implantcase/exile,/obj/item/weapon/implantcase/exile,/obj/item/weapon/implanter,/obj/item/weapon/implanter,/obj/item/weapon/implanter,/obj/item/weapon/implanter,/obj/item/weapon/implanter,/obj/item/weapon/implantcase/toolkit,/obj/item/weapon/implantcase/toolkit,/obj/item/weapon/implantcase/toolkit,/obj/item/weapon/implantcase/toolkit,/obj/item/weapon/implantcase/toolkit,/obj/item/weapon/implantcase/toolkit,/obj/item/weapon/implantcase/armblade,/obj/item/weapon/implantcase/armblade,/obj/item/weapon/implantcase/armblade,/obj/item/weapon/implantcase/armblade,/obj/item/weapon/implantcase/armblade,/obj/item/weapon/implantcase/armblade,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"qe" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/smes/buildable{icon = 'icons/obj/alien_smes.dmi'; icon_state = "unit"; input_level = 950000; name = "Alien Royal Capacitor"; output_level = 950000},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"qC" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/MercShip) +"qQ" = (/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/MercShip) +"qS" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"qY" = (/obj/machinery/cryopod{dir = 4},/obj/structure/cryofeed{pixel_x = -32},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"rx" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"rI" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/rddouble,/turf/simulated/floor/carpet/tealcarpet,/area/survivalpod/superpose/MercShip) +"rL" = (/obj/effect/floor_decal/techfloor{dir = 10},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/MercShip) +"se" = (/obj/random/maintenance/engineering,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MercShip) +"ss" = (/obj/structure/prop/alien/computer{dir = 1},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"sO" = (/turf/simulated/wall/r_lead,/area/survivalpod/superpose/MercShip) +"td" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/table/darkglass,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"tr" = (/obj/machinery/air_sensor{frequency = 1438; id_tag = null; output = 63},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/survivalpod/superpose/MercShip) +"tF" = (/obj/machinery/cryopod/robot,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MercShip) +"tK" = (/obj/structure/prop/alien/computer/hybrid,/obj/machinery/light/poi{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"uf" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/table/darkglass,/obj/item/weapon/paper_bin,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen/reagent/paralysis,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"ut" = (/obj/machinery/light/poi{dir = 4},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/MercShip) +"uI" = (/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/machinery/door/window/brigdoor/eastright{name = "Laser Armor"},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/darkmatter{pixel_y = 6},/obj/item/weapon/gun/energy/darkmatter,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MercShip) +"uQ" = (/obj/machinery/power/rad_collector,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"uT" = (/obj/machinery/recycling/stamper,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"uU" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"ve" = (/obj/structure/table/darkglass,/obj/structure/window/reinforced/survival_pod,/obj/item/weapon/hand_labeler,/obj/item/device/tape/random,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MercShip) +"vg" = (/obj/structure/table/bench/glass,/turf/simulated/floor/carpet,/area/survivalpod/superpose/MercShip) +"vH" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"vQ" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/MercShip) +"vU" = (/obj/item/device/gps/internal/poi{name = "#$(@@%$#"},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"vV" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MercShip) +"wr" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"wz" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/light/poi,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/MercShip) +"wD" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MercShip) +"xn" = (/obj/effect/floor_decal/techfloor,/obj/machinery/light/poi{dir = 1},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/MercShip) +"xs" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"xG" = (/obj/structure/prop/alien/computer/hybrid{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"xT" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/cryofeed{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/MercShip) +"xV" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/loot_pile/mecha/gygax/dark/adv,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"ya" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"yi" = (/obj/structure/table/darkglass,/obj/random/maintenance/clean,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/MercShip) +"yv" = (/obj/structure/prop/fake_ai{name = "P0ps1ck13"},/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MercShip) +"yD" = (/obj/effect/floor_decal/industrial/warning/cee{dir = 8},/obj/machinery/camera/network/engine{c_tag = "ENG - Engine Core 2"; dir = 1},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/survivalpod/superpose/MercShip) +"yI" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"yP" = (/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MercShip) +"yY" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 26},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/MercShip) +"zc" = (/obj/structure/sign/department/cargo_dock,/turf/simulated/wall/skipjack,/area/survivalpod/superpose/MercShip) +"zu" = (/obj/structure/table/darkglass,/obj/random/maintenance/medical,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/MercShip) +"zz" = (/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MercShip) +"zH" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"zI" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/MercShip) +"Af" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/rddouble,/obj/machinery/light/poi{dir = 4},/turf/simulated/floor/carpet,/area/survivalpod/superpose/MercShip) +"Aj" = (/obj/structure/table/bench/glass,/turf/simulated/floor/carpet/blue,/area/survivalpod/superpose/MercShip) +"AB" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_lead,/area/survivalpod/superpose/MercShip) +"AL" = (/obj/structure/prop/alien/pod/open,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"AP" = (/obj/machinery/vending/medical{dir = 4; emagged = 1; pixel_x = 5; req_access = list(777)},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/MercShip) +"AS" = (/obj/effect/floor_decal/techfloor{dir = 9},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/MercShip) +"Bd" = (/obj/machinery/vending/deluxe_boozeomat{req_access = null; req_log_access = null},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"Bf" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"Bh" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/machinery/door/window/brigdoor/westright{name = "Combat Armor"},/obj/structure/table/rack/shelf/steel,/obj/item/clothing/suit/armor/alien,/obj/item/clothing/head/helmet/alien,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MercShip) +"Bo" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/MercShip) +"BE" = (/obj/structure/prop/alien/pod/hybrid,/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/MercShip) +"BT" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/mecha/combat/gygax/serenity,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"Ca" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/particle,/obj/item/weapon/gun/energy/particle,/obj/item/weapon/cell/device/hyper{pixel_y = -10},/obj/item/weapon/cell/device/hyper{pixel_y = -10},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"Cl" = (/obj/effect/floor_decal/techfloor,/obj/machinery/chemical_dispenser/ert/specialops/abductor{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"Cy" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/meter,/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"CO" = (/turf/template_noop,/area/template_noop) +"CS" = (/obj/effect/floor_decal/techfloor,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/MercShip) +"CY" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MercShip) +"Dn" = (/obj/structure/loot_pile/surface/alien/engineering,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/light/poi,/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"DF" = (/obj/structure/prop/alien/pod/hybrid,/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/MercShip) +"DJ" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MercShip) +"DK" = (/obj/structure/table/darkglass,/obj/structure/window/reinforced/survival_pod,/obj/item/weapon/tape_roll,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MercShip) +"DM" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/engine,/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/survivalpod/superpose/MercShip) +"DX" = (/obj/machinery/vending/deluxe_dinner{req_access = null; req_log_access = null},/turf/simulated/wall/skipjack,/area/survivalpod/superpose/MercShip) +"Ee" = (/obj/structure/table/bench/glass,/turf/simulated/floor/carpet/gaycarpet,/area/survivalpod/superpose/MercShip) +"El" = (/obj/structure/toilet{dir = 1},/obj/structure/curtain/open/shower/security,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/MercShip) +"Em" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 1},/obj/machinery/light/poi,/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"Fm" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MercShip) +"Fs" = (/obj/machinery/cablelayer,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"FU" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/MercShip) +"FZ" = (/obj/machinery/shower{pixel_y = 16},/obj/structure/curtain/open/shower/security,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/MercShip) +"Gd" = (/obj/machinery/door/blast/multi_tile/four_tile_ver_sec,/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"GH" = (/obj/structure/window/reinforced/survival_pod{dir = 5},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/MercShip) +"GT" = (/obj/machinery/light/small/emergency{dir = 1},/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MercShip) +"GU" = (/obj/structure/window/reinforced/survival_pod,/obj/machinery/teleport/station{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"Hc" = (/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "fridge_sci"; icon_contents = "chem"; icon_state = "fridge_sci"; name = "Advanced storage"; pixel_y = 0},/obj/random/maintenance/clean,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/research,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"HW" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"HX" = (/obj/structure/closet/alien,/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/MercShip) +"Ib" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"Ii" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/computer/teleporter{dir = 2},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"Ir" = (/obj/structure/table/darkglass,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/item/weapon/paper_bin,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen/reagent/paralysis,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MercShip) +"Jt" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; name = "Scrubber to Waste"},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"JB" = (/obj/effect/floor_decal/techfloor{dir = 6},/obj/structure/bed/chair/bay/comfy/captain{dir = 4},/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MercShip) +"JD" = (/obj/structure/cryofeed{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 9},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/MercShip) +"JW" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/gun/fluff/gunsword,/obj/item/weapon/gun/energy/gun/fluff/gunsword,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"Kc" = (/turf/simulated/floor/carpet/blue,/area/survivalpod/superpose/MercShip) +"Ke" = (/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "fridge_sci"; icon_contents = "chem"; icon_state = "fridge_sci"; name = "Advanced storage"; pixel_y = 0},/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/security,/obj/random/maintenance/medical,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"Ko" = (/obj/machinery/power/emitter/gyrotron{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"Kq" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/bed/chair/bay/comfy/teal,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"Kw" = (/obj/machinery/light/poi{dir = 1},/turf/simulated/floor/carpet/tealcarpet,/area/survivalpod/superpose/MercShip) +"KB" = (/obj/effect/floor_decal/techfloor/corner{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"KS" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/prop/alien/dispenser,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MercShip) +"KT" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"La" = (/obj/machinery/door/window/survival_pod,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/MercShip) +"LM" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"Md" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"Mk" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/item/weapon/cell/device/weapon/recharge/alien/hybrid{pixel_y = -7},/obj/item/weapon/cell/device/weapon/recharge/alien/hybrid{pixel_y = 7},/obj/item/weapon/cell/device/weapon/recharge/alien/hybrid,/obj/structure/table/alien/blue,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/MercShip) +"Mr" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/MercShip) +"Mz" = (/obj/effect/floor_decal/industrial/warning/cee{dir = 8},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/survivalpod/superpose/MercShip) +"Nc" = (/obj/machinery/light/poi{dir = 1},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/MercShip) +"Nd" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"Nm" = (/obj/effect/floor_decal/techfloor{dir = 5},/obj/structure/bed/chair/bay/comfy/captain{dir = 4},/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MercShip) +"NI" = (/obj/structure/table/darkglass,/obj/structure/window/reinforced/survival_pod,/obj/item/weapon/clipboard,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MercShip) +"NP" = (/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"NV" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/survivalpod/superpose/MercShip) +"NY" = (/obj/structure/closet/alien,/turf/simulated/floor/carpet,/area/survivalpod/superpose/MercShip) +"Pi" = (/obj/structure/prop/alien/computer/camera{dir = 8},/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/light/poi{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"Pq" = (/obj/machinery/light/poi{dir = 4},/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 8},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"Py" = (/obj/structure/loot_pile/surface/alien/engineering,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"PB" = (/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/MercShip) +"PF" = (/obj/machinery/cryopod{dir = 4},/obj/structure/cryofeed{pixel_x = -32},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MercShip) +"PR" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MercShip) +"PT" = (/obj/machinery/computer/crew{icon = 'icons/obj/abductor_vr.dmi'; icon_screen = null; icon_state = "console-c"},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"Qe" = (/obj/machinery/door/window/survival_pod{dir = 2},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/MercShip) +"Qi" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"Qu" = (/obj/structure/table/darkglass,/obj/machinery/door/window/brigdoor/northright{dir = 2; req_access = null},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MercShip) +"QH" = (/obj/structure/closet/crate/large,/obj/fiftyspawner/steel,/obj/item/stack/material/plasteel{amount = 30},/obj/item/stack/material/phoron{amount = 25},/obj/item/stack/material/glass/phoronrglass{amount = 20},/obj/fiftyspawner/steel,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"RL" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/unary/outlet_injector{dir = 4},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/survivalpod/superpose/MercShip) +"Sd" = (/obj/machinery/door/airlock/hatch{req_one_access = null},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/MercShip) +"SK" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/machinery/meter,/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"SO" = (/obj/machinery/light/poi,/turf/simulated/floor/carpet/blue,/area/survivalpod/superpose/MercShip) +"SS" = (/turf/simulated/wall/skipjack,/area/survivalpod/superpose/MercShip) +"SY" = (/obj/effect/floor_decal/techfloor/corner{dir = 10},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/MercShip) +"Tg" = (/obj/machinery/light/poi{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"Ti" = (/obj/effect/floor_decal/techfloor,/obj/structure/bed/chair/bay/comfy/teal{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"Tk" = (/obj/machinery/light/poi,/turf/simulated/floor/airless,/area/survivalpod/superpose/MercShip) +"Tr" = (/obj/structure/table/darkglass,/obj/machinery/door/window/brigdoor/northright{req_access = null},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/MercShip) +"Tw" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/particle/cannon,/obj/item/weapon/cell/device/hyper{pixel_y = -10},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"Tx" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/meter,/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"TK" = (/turf/simulated/floor/carpet/gaycarpet,/area/survivalpod/superpose/MercShip) +"TL" = (/obj/effect/floor_decal/techfloor,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MercShip) +"Ui" = (/obj/effect/floor_decal/techfloor{dir = 5},/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MercShip) +"Um" = (/obj/machinery/light/poi,/turf/simulated/floor/carpet/tealcarpet,/area/survivalpod/superpose/MercShip) +"Un" = (/obj/structure/closet/alien,/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"Uu" = (/obj/machinery/atmospherics/unary/engine/biggest{dir = 4},/turf/template_noop,/area/template_noop) +"Uz" = (/obj/machinery/light/poi,/turf/simulated/floor/carpet,/area/survivalpod/superpose/MercShip) +"UI" = (/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/MercShip) +"UJ" = (/obj/effect/floor_decal/techfloor{dir = 6},/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MercShip) +"US" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning,/obj/machinery/light/poi,/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"Vk" = (/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"Vq" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/MercShip) +"Vu" = (/obj/machinery/power/rad_collector,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/cyan,/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"Vw" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/MercShip) +"VF" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 8},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"VP" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"VQ" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/light/poi{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"VR" = (/obj/machinery/field_generator{anchored = 1; state = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"VS" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"Wu" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"WJ" = (/obj/machinery/sleep_console{dir = 4},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/MercShip) +"WO" = (/obj/machinery/light/poi{dir = 4},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"WQ" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/rddouble,/turf/simulated/floor/carpet/gaycarpet,/area/survivalpod/superpose/MercShip) +"WT" = (/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"WX" = (/obj/machinery/vending/tool{emagged = 1; req_access = list(777); req_log_access = null},/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/MercShip) +"Xc" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"Xg" = (/obj/machinery/cryopod,/obj/structure/cryofeed{dir = 4; pixel_x = 32},/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/MercShip) +"Xv" = (/turf/simulated/floor/carpet,/area/survivalpod/superpose/MercShip) +"XA" = (/obj/machinery/light/poi{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"XC" = (/obj/structure/loot_pile/surface/alien/medical,/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/MercShip) +"XY" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"Yi" = (/obj/machinery/door/blast/regular,/turf/simulated/floor/airless,/area/survivalpod/superpose/MercShip) +"Yw" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"YA" = (/obj/structure/closet/alien,/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/MercShip) +"YI" = (/turf/simulated/floor/greengrid/nitrogen,/area/survivalpod/superpose/MercShip) +"YP" = (/obj/machinery/atmospherics/unary/engine/bigger{dir = 4; pixel_x = -3},/turf/template_noop,/area/template_noop) +"Zh" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/filingcabinet/medical,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) +"Zp" = (/obj/machinery/computer/operating{dir = 1},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/MercShip) +"Zq" = (/obj/machinery/power/rad_collector,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/cyan,/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"ZN" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/smes/buildable{icon = 'icons/obj/alien_smes.dmi'; icon_state = "unit"; input_level = 950000; name = "Alien Royal Capacitor"; output_level = 950000},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/survivalpod/superpose/MercShip) +"ZQ" = (/obj/effect/floor_decal/techfloor{dir = 6},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/MercShip) +"ZY" = (/obj/machinery/door/window/survival_pod{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MercShip) + +(1,1,1) = {" +COCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOSSSSSSSSSSSSSSSSSSaLaPaPdWSSSSCOCOCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOSSSSSSSSSSSSSSSSSSSSSSSSSSSSCOCOCOCOCOCOCOCOCOCOCOCOWTSSjdjdtKjdjdSSUIUIUIUIUIUISSSSCOCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOWTSSdgbwqeaophdzZNNdgzVFSSSSSSCOSSSSwDSSSSSSCOCOCOYPWTSSkDkDWTkDkDSSUIUIUIUIUIUIUISSSSCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOWTSSnCntxsSKxsSKcpLMJtPqSSHXSSSSSSWXjinBhwSSSSCOCOCOSSSSoMoMCyoMXYSSVqVqbObObObOVqoISSCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOUuCOWTSSWTWTgAvHvHvHHWWTWTWTgWqQqQSSmQcPcPcPcPSSSSSSCOCOCOSSPyPyALVkYASSieVkjclkjclkieBdSSSSCOCOCOCOCOCOCOCOCOCOCO +COCOCOCObiSSSSmKUSZqVuVuVuVulpmmqSjgqQqQgWcPcPcPcPcPjhSSSSSSwDSSSSSSSSSSgWSSSSSSgWSSSSSSSSSSSSSSSSSSCOCOCOCOCOCOCOCOCOCO +COCOCOWTWTSSSSpisOvVjWjWjWDJsOCYsOsOqQutSSufMdMdKqMdZhSSSSHXqQqQNcqQqQqQqQqQNcqQqQqQqQqQqQNcqQHXSSSSSSSSSSSSCOCOCOCOCOCO +COCOUubiWTSSSSCSxnCSCSCSCSCSxnCSsOsOqQqQSSSSDKveQuNISSSSqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQSSoRXvNYSSSSCOCOCOCOCO +COCOCObiWTSSzIVRNPsOsOsOsOsONPVRFUgWqQqQyYNcqQqQqQqQNcyYqQqQzcSSgWSSSSSSgWSSSSSSgWSSSSSSgWSSSSqQqQgWqQXvAfSSSSwDSSSSCOCO +COCOCObiWTSSzINPbcbcbcnsbcbcbcNPFUsOTLTLTLTLTLTLTLTLTLTLTLSYSSDFyPBESSUIUIeBSSUIUIeBSSUIUIeBSSqQqQSSqQXvvgSSfmdxPTSSSSCO +COCOCOWTWTWTzINPbcSSvVjWDJSSbcsOFUABkVyIyIyIyIcXbvNPTwNPKeFUSSfAyvJDSSqCKcAjSSqCfckSSSqCXvvgSSqQqQDXqQqQqQSSKSFmNmPiSSCO +COCOCObiWTGdZQNPbcSSMzNVRLfibcsOrLfiBfVSVSdCQHQibvNPexNPcHrLSSatdSatSSzuSOiwSSyiUmrISSyiUzgtSSCSCSSSCSCSCSgWTLTLUJtdfiCO +COCOCObiWOSSXANPbcYiYIfftrPRoGsOXAPRBfVkVkVkVkQiqaNPCaNPaMTgSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSXANPSSXAvUqbSSjmNPNPVPPRCO +COCOCObiWTWTaJNPbcSSyDNVDMnxbcsOASnxBfhIdruTFsQiqaNPCaNPHcASSSkOGTBhSSyiKwrISSzufNWQSSxTpxIiwDBoBoSSasasasgWFmFmUitdnxCO +COCOCOWTWTWTzINPbcSSvVjWDJSSbcsOFUABKBWuWuWuWuiMJWNPJWNPajFUSSuIyPohSSvQfckSSSvQTKEeSSMrhpVkZYqQqQSSYwseYwSSpCTLJBnvSSCO +COCOCObiWTSSzINPbcbcbcTkbcbcbcNPFUsOFmFmFmFmFmFmFmFmFmFmFmbpSSMkBoMkSSUIUIeBSSUIUIeBSSiDdAGUwDqQqQSSYwzzxVSScByassSSSSCO +COCOCObiWTltzIVRNPsOsOsOsOsONPVRFUgWqQqQkldPqQqQqQqQdPklqQqQzcwDgWwDSSSSgWSSSSSSgWSSSSSSSSSSSSqQqQSSBTsegSSSSSwDSSSSCOCO +COCOCObiWTSSSSBowzBoBoBoBoBowzBosOsOqQqQSSSSIrbHTriySSSSqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQSSYwzznLSSSSCOCOCOCOCO +COCOCOWTWTSSSSpisOvVjWjWjWDJsOCYsOsOqQutSSClyIyITiyIUnSSSSHXqQqQdPqQqQqQqQqQdPqQqQqQqQqQqQdPqQHXSSSSSSSSSSSSCOCOCOCOCOCO +COCOUuCObiSSSSKoVQuQuQuQuQuQVQKohVjgqQqQgWdedededededemvSSSSwDSSSSSSSSSSgWSSSSSSgWSSSSSSSdSSSSSSSSSSCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOWTSSWTWTuUXcXcXcfKWTWTWTgWqQqQSSXCdedededeAPSSSSCOCOCOSSPyALPyVkYASSqYVkmTSSnjPBLaFZSSSSCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOWTSSnCrxlJKTlJKTfrzHJtVFSSHXSSSSSSWJpuaHZpSSSSCOCOCOSSSSdBdBTxdBgcSSPFFmjZSSPBPBGHSSSSCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOUuCOWTSSdgDnqeaophdzoiwrerVFSSSSSSCOSSSSwDmySSSSCOCOCOCOWTSScLcLWTcLcLSShRyPXgSSQeopVwSSSSCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOSSSSSSSSSSSSSSSSSSSSSSSSSSSSCOCOCOCOCOCOCOCOCOCOCOYPWTSSIbEmxGIbIbSStFbNtFSSElSSSSSSCOCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSCOCOCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCO +COCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCOCO +"} diff --git a/modular_chomp/maps/submaps/shelters/MethLab-20x20.dmm b/modular_chomp/maps/submaps/shelters/MethLab-20x20.dmm new file mode 100644 index 0000000000..2d2da743b0 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/MethLab-20x20.dmm @@ -0,0 +1,1193 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ai" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen/fountain, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"as" = ( +/obj/machinery/door/airlock/maintenance/sec, +/turf/simulated/floor/tiled/steel_grid, +/area/survivalpod/superpose/MethLab) +"aY" = ( +/obj/item/weapon/material/shard{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/weapon/material/shard{ + pixel_x = 9 + }, +/turf/template_noop, +/area/survivalpod/superpose/MethLab) +"bn" = ( +/obj/structure/fence/cut/medium, +/turf/template_noop, +/area/survivalpod/superpose/MethLab) +"bA" = ( +/obj/item/device/multitool, +/turf/template_noop, +/area/survivalpod/superpose/MethLab) +"bJ" = ( +/obj/structure/sign/atmos_waste, +/turf/simulated/wall/r_wall, +/area/survivalpod/superpose/MethLab) +"bQ" = ( +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/obj/item/weapon/material/shard{ + pixel_x = 9 + }, +/obj/item/weapon/material/shard{ + pixel_x = 5 + }, +/turf/template_noop, +/area/survivalpod/superpose/MethLab) +"cg" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/radio{ + anchored = 1; + canhear_range = 1; + frequency = 1487; + icon = 'icons/obj/items.dmi'; + icon_state = "red_phone"; + name = "Reception Emergency Phone" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"ck" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/ambrosiadeusseed, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/old_tile/white, +/area/survivalpod/superpose/MethLab) +"dy" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/rust, +/obj/item/weapon/storage/bag/chemistry, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"fr" = ( +/obj/structure/fence, +/turf/template_noop, +/area/survivalpod/superpose/MethLab) +"fD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/survivalpod/superpose/MethLab) +"fY" = ( +/obj/item/stack/cable_coil, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/survivalpod/superpose/MethLab) +"hf" = ( +/turf/simulated/floor, +/area/survivalpod/superpose/MethLab) +"hj" = ( +/obj/machinery/power/port_gen/pacman, +/turf/simulated/floor, +/area/survivalpod/superpose/MethLab) +"hE" = ( +/obj/machinery/door/airlock/scp, +/turf/simulated/floor/tiled/techfloor/grid, +/area/survivalpod/superpose/MethLab) +"hQ" = ( +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"ic" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/seeds/ambrosiavulgarisseed, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/old_tile/white, +/area/survivalpod/superpose/MethLab) +"iz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/survivalpod/superpose/MethLab) +"iB" = ( +/obj/effect/floor_decal/rust, +/obj/random/maintenance, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"iN" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/reagent_containers/dropper, +/obj/random/medical/pillbottle, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"jm" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/MethLab) +"jo" = ( +/obj/machinery/vending/hydronutrients, +/turf/simulated/floor/tiled/old_tile/white, +/area/survivalpod/superpose/MethLab) +"kp" = ( +/obj/effect/floor_decal/rust/mono_rusted3, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/old_tile/green, +/area/survivalpod/superpose/MethLab) +"lb" = ( +/obj/machinery/biogenerator, +/turf/simulated/floor/tiled/old_tile/white, +/area/survivalpod/superpose/MethLab) +"lt" = ( +/obj/item/frame/apc, +/obj/structure/table/steel, +/obj/machinery/light_switch{ + pixel_x = 11; + pixel_y = 22 + }, +/turf/simulated/floor, +/area/survivalpod/superpose/MethLab) +"lx" = ( +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/MethLab) +"lJ" = ( +/obj/structure/fence/corner, +/turf/template_noop, +/area/survivalpod/superpose/MethLab) +"lN" = ( +/obj/structure/barricade, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"me" = ( +/obj/structure/salvageable/data, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"mi" = ( +/obj/effect/floor_decal/sign, +/turf/simulated/wall, +/area/survivalpod/superpose/MethLab) +"mw" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/toolbox/syndicate, +/obj/random/medical/pillbottle, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"nq" = ( +/obj/random/junk, +/turf/simulated/floor, +/area/survivalpod/superpose/MethLab) +"oo" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/ambrosiainfernusseed, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/old_tile/white, +/area/survivalpod/superpose/MethLab) +"oF" = ( +/obj/structure/fence/cut/large, +/turf/template_noop, +/area/survivalpod/superpose/MethLab) +"oN" = ( +/turf/simulated/wall/r_wall, +/area/survivalpod/superpose/MethLab) +"pq" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/random/junk, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"ps" = ( +/turf/template_noop, +/area/survivalpod/superpose/MethLab) +"rK" = ( +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/survivalpod/superpose/MethLab) +"rU" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/under/suit_jacket, +/obj/item/clothing/shoes/dress{ + pixel_y = -9 + }, +/obj/item/clothing/mask/demon, +/obj/structure/curtain/black, +/turf/simulated/floor/tiled/techfloor, +/area/survivalpod/superpose/MethLab) +"sI" = ( +/obj/machinery/light, +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/storage/bag/chemistry, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"sW" = ( +/obj/item/weapon/material/shard{ + pixel_x = 9 + }, +/turf/template_noop, +/area/survivalpod/superpose/MethLab) +"tt" = ( +/obj/structure/table/steel_reinforced, +/obj/structure/salvageable/personal, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"tz" = ( +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/tiled/techfloor, +/area/survivalpod/superpose/MethLab) +"tL" = ( +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"tQ" = ( +/obj/structure/girder, +/turf/simulated/floor, +/area/survivalpod/superpose/MethLab) +"uA" = ( +/obj/structure/fence/cut/large{ + dir = 8 + }, +/turf/template_noop, +/area/survivalpod/superpose/MethLab) +"uY" = ( +/obj/random/trash, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"wd" = ( +/turf/simulated/floor/tiled/old_tile/green, +/area/survivalpod/superpose/MethLab) +"wI" = ( +/obj/item/weapon/reagent_containers/dropper, +/obj/random/junk, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"wQ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/template_noop, +/area/survivalpod/superpose/MethLab) +"xM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance/sec, +/turf/simulated/floor/tiled/steel_grid, +/area/survivalpod/superpose/MethLab) +"xR" = ( +/obj/item/weapon/storage/backpack/messenger, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/reagent_containers/food/snacks/sosjerky, +/obj/item/weapon/cell/device/hyper, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy, +/obj/item/weapon/flame/lighter/random, +/obj/item/weapon/storage/box/survival/space, +/obj/item/device/radio, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/weapon/reagent_containers/pill/dylovene, +/obj/item/weapon/reagent_containers/pill/dylovene, +/obj/item/device/flashlight/maglight, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/random/soap, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, +/obj/item/device/fbp_backup_cell, +/obj/item/device/pda, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/device/starcaster_news, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/item/device/suit_cooling_unit/emergency, +/obj/item/device/gps, +/obj/structure/closet{ + name = "Survival closet" + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/MethLab) +"yr" = ( +/obj/random/trash, +/turf/simulated/floor, +/area/survivalpod/superpose/MethLab) +"yM" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/under/suit_jacket/really_black, +/obj/item/clothing/shoes/dress{ + pixel_y = -9 + }, +/obj/item/clothing/mask/fluff/lucerna_1, +/obj/structure/curtain/black, +/obj/random/medical/pillbottle, +/turf/simulated/floor/tiled/techfloor, +/area/survivalpod/superpose/MethLab) +"yY" = ( +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"zu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/old_tile/green, +/area/survivalpod/superpose/MethLab) +"zB" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/tiled/techfloor, +/area/survivalpod/superpose/MethLab) +"zG" = ( +/obj/random/junk, +/turf/template_noop, +/area/survivalpod/superpose/MethLab) +"zH" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/template_noop, +/area/survivalpod/superpose/MethLab) +"zZ" = ( +/obj/structure/fence/corner{ + dir = 4 + }, +/turf/template_noop, +/area/survivalpod/superpose/MethLab) +"AB" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"AM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"AW" = ( +/obj/random/junk, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"BP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"BR" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"BT" = ( +/obj/item/weapon/makeover, +/obj/structure/curtain/open/bed, +/obj/item/clothing/under/swimsuit/fluff/penelope, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techfloor, +/area/survivalpod/superpose/MethLab) +"CH" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/seeds/ambrosiavulgarisseed, +/obj/item/seeds/ambrosiavulgarisseed, +/obj/item/seeds/ambrosiavulgarisseed, +/obj/item/seeds/ambrosiainfernusseed, +/obj/item/seeds/ambrosiainfernusseed, +/obj/item/seeds/ambrosiainfernusseed, +/obj/item/seeds/ambrosiadeusseed, +/obj/item/seeds/ambrosiadeusseed, +/obj/item/seeds/ambrosiadeusseed, +/turf/simulated/floor/tiled/old_tile/white, +/area/survivalpod/superpose/MethLab) +"CL" = ( +/obj/structure/grille/rustic, +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/tiled/old_tile/green, +/area/survivalpod/superpose/MethLab) +"CW" = ( +/turf/simulated/floor/tiled/techfloor, +/area/survivalpod/superpose/MethLab) +"DG" = ( +/obj/structure/fence, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/MethLab) +"DP" = ( +/obj/item/weapon/reagent_containers/dropper, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"Eb" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/ambrosiadeusseed, +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/old_tile/white, +/area/survivalpod/superpose/MethLab) +"EW" = ( +/obj/item/weapon/stool, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/survivalpod/superpose/MethLab) +"Fg" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor, +/area/survivalpod/superpose/MethLab) +"Gs" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"GP" = ( +/obj/structure/flora/tree/sif, +/turf/template_noop, +/area/survivalpod/superpose/MethLab) +"HA" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille/rustic, +/turf/simulated/floor/tiled/old_tile/green, +/area/survivalpod/superpose/MethLab) +"HN" = ( +/obj/machinery/porta_turret/lasertag/red{ + name = "REAL turret" + }, +/turf/simulated/floor, +/area/survivalpod/superpose/MethLab) +"HX" = ( +/obj/machinery/light, +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"Ih" = ( +/obj/structure/sign/warning/lethal_turrets, +/turf/simulated/wall, +/area/survivalpod/superpose/MethLab) +"IC" = ( +/obj/structure/curtain/open/bed, +/obj/item/clothing/under/suit_jacket/really_black, +/obj/item/clothing/under/suit_jacket/navy, +/obj/item/clothing/head/soft/solgov/veteranhat, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techfloor, +/area/survivalpod/superpose/MethLab) +"IH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/old_tile/green, +/area/survivalpod/superpose/MethLab) +"IQ" = ( +/obj/item/clothing/accessory/stethoscope, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor, +/area/survivalpod/superpose/MethLab) +"JQ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/random/medical/pillbottle, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"Kg" = ( +/obj/structure/fence/cut/medium{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/MethLab) +"KK" = ( +/obj/machinery/chem_master, +/obj/effect/floor_decal/rust/color_rustedfull, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"KR" = ( +/obj/item/weapon/cell/hyper, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"Lh" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"LM" = ( +/obj/random/trash, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"LX" = ( +/obj/item/weapon/stool, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"Mn" = ( +/obj/structure/barricade, +/turf/simulated/floor, +/area/survivalpod/superpose/MethLab) +"Of" = ( +/obj/effect/wingrille_spawn/reinforced, +/obj/structure/barricade, +/turf/simulated/floor/tiled/techfloor, +/area/survivalpod/superpose/MethLab) +"Ol" = ( +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/old_tile/green, +/area/survivalpod/superpose/MethLab) +"Oq" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/template_noop, +/area/survivalpod/superpose/MethLab) +"Py" = ( +/obj/random/trash, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/MethLab) +"PH" = ( +/obj/machinery/seed_extractor, +/turf/simulated/floor/tiled/old_tile/white, +/area/survivalpod/superpose/MethLab) +"PO" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/module/power_control, +/obj/random/medical/pillbottle, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"PZ" = ( +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/old_tile/green, +/area/survivalpod/superpose/MethLab) +"QP" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"QW" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/old_tile/green, +/area/survivalpod/superpose/MethLab) +"Sn" = ( +/obj/structure/barricade, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"St" = ( +/obj/structure/salvageable/implant_container, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"Ti" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/seeds/ambrosiadeusseed, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/old_tile/white, +/area/survivalpod/superpose/MethLab) +"Tr" = ( +/obj/item/weapon/stool, +/obj/effect/floor_decal/rust, +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"Ts" = ( +/obj/structure/closet/crate, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/MethLab) +"Ty" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/under/suit_jacket/burgundy, +/obj/item/clothing/shoes/dress{ + pixel_y = -9 + }, +/obj/item/clothing/mask/dolphin, +/obj/structure/curtain/black, +/turf/simulated/floor/tiled/techfloor, +/area/survivalpod/superpose/MethLab) +"TU" = ( +/obj/item/device/flashlight/lamp, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/techfloor, +/area/survivalpod/superpose/MethLab) +"Uy" = ( +/obj/structure/fence/corner{ + dir = 8 + }, +/turf/template_noop, +/area/survivalpod/superpose/MethLab) +"UD" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/under/suit_jacket/red, +/obj/item/clothing/shoes/dress{ + pixel_y = -9 + }, +/obj/item/clothing/mask/goblin, +/obj/structure/curtain/black, +/turf/simulated/floor/tiled/techfloor, +/area/survivalpod/superpose/MethLab) +"UO" = ( +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/turf/template_noop, +/area/survivalpod/superpose/MethLab) +"Vf" = ( +/obj/machinery/floodlight, +/turf/simulated/floor, +/area/survivalpod/superpose/MethLab) +"Vu" = ( +/obj/structure/fence/cut/medium{ + dir = 4 + }, +/turf/template_noop, +/area/survivalpod/superpose/MethLab) +"Vw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/random/maintenance, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) +"VV" = ( +/obj/structure/fence/corner{ + dir = 10 + }, +/turf/template_noop, +/area/survivalpod/superpose/MethLab) +"Wp" = ( +/obj/structure/closet/crate, +/obj/fiftyspawner/wood, +/obj/fiftyspawner/wood, +/obj/fiftyspawner/wood/sif, +/obj/fiftyspawner/wood/sif, +/obj/fiftyspawner/turcarpet, +/obj/fiftyspawner/tealcarpet, +/obj/fiftyspawner/sblucarpet, +/obj/fiftyspawner/purcarpet, +/obj/fiftyspawner/oracarpet, +/obj/fiftyspawner/blucarpet, +/obj/fiftyspawner/marble, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/fiftyspawner/cardboard, +/obj/fiftyspawner/cardboard, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/MethLab) +"Xi" = ( +/turf/simulated/wall, +/area/survivalpod/superpose/MethLab) +"Xo" = ( +/obj/random/maintenance, +/turf/simulated/floor, +/area/survivalpod/superpose/MethLab) +"Xr" = ( +/obj/item/stack/material/phoron{ + amount = 5 + }, +/obj/item/stack/material/phoron{ + amount = 5 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/extinguisher, +/obj/item/weapon/storage/box/lights/mixed, +/turf/simulated/floor, +/area/survivalpod/superpose/MethLab) +"Yz" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/ambrosiavulgarisseed, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/old_tile/white, +/area/survivalpod/superpose/MethLab) +"Zh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled/old_tile/green, +/area/survivalpod/superpose/MethLab) +"Zp" = ( +/obj/structure/grille/rustic, +/obj/item/weapon/material/shard{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/old_tile/green, +/area/survivalpod/superpose/MethLab) +"Zt" = ( +/obj/structure/salvageable/autolathe, +/obj/effect/floor_decal/rust/color_rustedfull, +/turf/simulated/floor/tiled/steel_dirty, +/area/survivalpod/superpose/MethLab) + +(1,1,1) = {" +Uy +fr +fr +oF +ps +ps +fr +fr +DG +fr +ps +oF +oF +ps +ps +bn +fr +ps +fr +VV +"} +(2,1,1) = {" +Oq +ps +ps +ps +ps +ps +ps +lx +ps +ps +ps +ps +bQ +sW +ps +ps +ps +ps +ps +Oq +"} +(3,1,1) = {" +Oq +ps +ps +ps +ps +ps +Xi +tz +Of +Xi +ps +HA +CL +HA +HA +HA +HA +HA +ps +Oq +"} +(4,1,1) = {" +Vu +ps +HN +hf +hf +Ih +Xi +mw +BR +tQ +bA +HA +Yz +Yz +ic +oo +oo +HA +ps +Oq +"} +(5,1,1) = {" +Oq +ps +ps +ps +ps +Xi +Zt +Xo +Lh +Xi +HA +HA +PZ +PZ +wd +QW +wd +HA +ps +Oq +"} +(6,1,1) = {" +Oq +ps +ps +ps +zG +Of +cg +hQ +uY +xM +kp +Ol +Zh +PH +jo +lb +CH +HA +ps +Oq +"} +(7,1,1) = {" +Oq +ps +GP +lx +Py +Of +tt +Lh +Xo +Xi +HA +HA +zu +Ol +zu +IH +QW +HA +ps +uA +"} +(8,1,1) = {" +Vu +ps +ps +ps +lx +tz +ai +pq +sI +Xi +Xi +HA +Eb +ck +Ti +ck +ck +HA +ps +ps +"} +(9,1,1) = {" +Oq +ps +ps +ps +ps +Xi +St +hQ +iz +rU +Xi +HA +HA +HA +HA +HA +Zp +HA +ps +Oq +"} +(10,1,1) = {" +Oq +ps +Xi +Xi +tQ +Xi +St +AM +LM +Ty +Xi +Ts +ps +ps +ps +UO +aY +ps +ps +Vu +"} +(11,1,1) = {" +Oq +Xi +Xi +KR +KK +iB +KK +wI +Vw +yM +Xi +xR +ps +ps +ps +ps +zG +ps +ps +Oq +"} +(12,1,1) = {" +jm +tz +KK +rK +AB +EW +PO +tL +BP +UD +Xi +Wp +ps +zH +ps +zG +ps +ps +ps +Oq +"} +(13,1,1) = {" +jm +Of +Gs +DP +iN +yY +AB +LX +HX +Xi +Xi +Xi +Xi +mi +ps +ps +ps +ps +ps +Oq +"} +(14,1,1) = {" +Oq +Of +QP +Tr +uY +fY +uY +AW +Sn +as +hf +Mn +as +yr +Py +lx +ps +lx +ps +Oq +"} +(15,1,1) = {" +Oq +Ih +Xi +me +me +dy +IQ +JQ +lN +as +hf +Mn +as +hf +lx +ps +lx +ps +ps +Kg +"} +(16,1,1) = {" +Oq +ps +Xi +tQ +oN +oN +hE +bJ +oN +Xi +Xi +Xi +Xi +Ih +hf +HN +ps +ps +ps +ps +"} +(17,1,1) = {" +Vu +ps +ps +ps +oN +BT +fD +TU +oN +hj +yr +Fg +nq +wQ +ps +ps +ps +ps +ps +uA +"} +(18,1,1) = {" +Oq +ps +GP +ps +oN +IC +CW +zB +oN +lt +Xr +Xi +yr +ps +ps +ps +GP +ps +ps +Oq +"} +(19,1,1) = {" +Oq +ps +ps +ps +oN +oN +oN +oN +oN +Xi +Xi +Xi +Vf +ps +ps +ps +ps +ps +ps +uA +"} +(20,1,1) = {" +zZ +fr +oF +ps +fr +fr +fr +oF +fr +fr +fr +fr +oF +ps +fr +fr +fr +fr +fr +lJ +"} diff --git a/modular_chomp/maps/submaps/shelters/OldHotel-25x25.dmm b/modular_chomp/maps/submaps/shelters/OldHotel-25x25.dmm new file mode 100644 index 0000000000..d218e3ab4f --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/OldHotel-25x25.dmm @@ -0,0 +1,1366 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/cell/hyper, +/obj/random/coin, +/obj/random/cash/huge, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"ab" = ( +/obj/structure/closet/crate, +/obj/random/cash, +/obj/random/cigarettes, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"ai" = ( +/obj/random/trash, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/OldHotel) +"aJ" = ( +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"bb" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/device/multitool, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"bQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"bW" = ( +/obj/item/weapon/material/shard, +/turf/template_noop, +/area/survivalpod/superpose/OldHotel) +"cA" = ( +/obj/structure/sink/kitchen, +/turf/simulated/wall/wood, +/area/survivalpod/superpose/OldHotel) +"cZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/turf/simulated/floor/carpet/oracarpet, +/area/survivalpod/superpose/OldHotel) +"da" = ( +/obj/structure/bed/chair/oldsofa/right, +/turf/simulated/floor/carpet/blue, +/area/survivalpod/superpose/OldHotel) +"dc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/oracarpet, +/area/survivalpod/superpose/OldHotel) +"dn" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle/everburn, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"dr" = ( +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/structure/table/rack/shelf, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"dz" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"dL" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille/rustic, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"eK" = ( +/obj/structure/grille, +/obj/structure/bonfire/sifwood, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/OldHotel) +"go" = ( +/obj/structure/simple_door/iron, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"gA" = ( +/turf/template_noop, +/area/template_noop) +"gM" = ( +/obj/machinery/appliance/cooker/oven, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"hc" = ( +/obj/random/trash, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"hp" = ( +/obj/random/junk, +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/OldHotel) +"hQ" = ( +/turf/simulated/wall/wood, +/area/survivalpod/superpose/OldHotel) +"if" = ( +/obj/structure/bed/chair/oldsofa/left{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/survivalpod/superpose/OldHotel) +"iU" = ( +/obj/structure/table/woodentable, +/obj/item/trash/tray, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"ja" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/OldHotel) +"jO" = ( +/obj/structure/bed/chair/oldsofa, +/turf/simulated/floor/carpet/blue, +/area/survivalpod/superpose/OldHotel) +"kh" = ( +/turf/simulated/floor/carpet/blue, +/area/survivalpod/superpose/OldHotel) +"kw" = ( +/obj/structure/lightpost, +/turf/template_noop, +/area/survivalpod/superpose/OldHotel) +"kI" = ( +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/OldHotel) +"kW" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"lj" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"ly" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/piratedouble, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"lZ" = ( +/obj/structure/table/woodentable, +/obj/item/trash/tray, +/turf/simulated/floor/carpet/blue, +/area/survivalpod/superpose/OldHotel) +"mR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/OldHotel) +"nD" = ( +/turf/simulated/floor, +/area/survivalpod/superpose/OldHotel) +"nG" = ( +/obj/item/weapon/material/shard, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/OldHotel) +"op" = ( +/obj/structure/table/woodentable, +/obj/random/cigarettes, +/turf/simulated/floor/carpet/blue, +/area/survivalpod/superpose/OldHotel) +"pn" = ( +/obj/item/weapon/material/shard, +/obj/item/weapon/material/shard{ + pixel_x = 7 + }, +/turf/template_noop, +/area/survivalpod/superpose/OldHotel) +"qg" = ( +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"qY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"rb" = ( +/obj/item/weapon/module/power_control, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"rK" = ( +/obj/structure/table/woodentable, +/obj/item/trash/candle, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"sd" = ( +/obj/structure/toilet, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"sV" = ( +/obj/structure/table/woodentable, +/obj/random/contraband, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"tn" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"tz" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/rddouble, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"tE" = ( +/obj/structure/table/woodentable, +/obj/random/coin, +/obj/item/weapon/reagent_containers/glass/rag, +/turf/simulated/floor/carpet/blue, +/area/survivalpod/superpose/OldHotel) +"tV" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/item/weapon/material/shard, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"uU" = ( +/obj/structure/closet/cabinet, +/obj/random/maintenance/medical, +/obj/random/carp_plushie, +/obj/random/cigarettes, +/obj/random/drinkbottle, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"vh" = ( +/obj/structure/bed/chair/oldsofa/corner, +/turf/simulated/floor/carpet/blue, +/area/survivalpod/superpose/OldHotel) +"vA" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/telecube/randomized{ + name = "Odd artifact" + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"vM" = ( +/obj/item/weapon/material/shard, +/obj/item/weapon/material/shard{ + pixel_y = -6 + }, +/obj/item/weapon/material/shard{ + pixel_x = 9 + }, +/obj/structure/grille/broken, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"vR" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle/candelabra, +/turf/simulated/floor/carpet/blue, +/area/survivalpod/superpose/OldHotel) +"wm" = ( +/obj/random/trash, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/OldHotel) +"wK" = ( +/obj/item/weapon/material/shard, +/obj/item/weapon/material/shard, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"wV" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/reagent_containers/glass/beaker, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"wX" = ( +/obj/fiftyspawner/wood, +/obj/fiftyspawner/wood, +/obj/fiftyspawner/wood/sif, +/obj/fiftyspawner/wood/sif, +/obj/fiftyspawner/turcarpet, +/obj/fiftyspawner/tealcarpet, +/obj/fiftyspawner/sblucarpet, +/obj/fiftyspawner/purcarpet, +/obj/fiftyspawner/oracarpet, +/obj/fiftyspawner/blucarpet, +/obj/fiftyspawner/marble, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/fiftyspawner/cardboard, +/obj/fiftyspawner/cardboard, +/obj/structure/table/rack/shelf, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"yj" = ( +/obj/random/mob/sif/peaceful, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/OldHotel) +"yM" = ( +/obj/item/stack/cable_coil, +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/OldHotel) +"zs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/OldHotel) +"zt" = ( +/obj/structure/noticeboard, +/turf/simulated/wall/wood, +/area/survivalpod/superpose/OldHotel) +"zE" = ( +/obj/structure/closet/cabinet, +/obj/random/maintenance/medical, +/obj/random/cash, +/obj/random/cigarettes, +/obj/random/firstaid, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"zP" = ( +/obj/random/plushie, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"Ac" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/material/knife/butch, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"AO" = ( +/obj/structure/railing, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/OldHotel) +"AU" = ( +/obj/structure/table/woodentable, +/obj/item/device/tape, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"Bt" = ( +/obj/structure/closet/cabinet, +/obj/random/ammo_all, +/obj/random/cargopod, +/obj/random/cargopod, +/obj/random/cargopod, +/obj/item/clothing/gloves/yellow, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"Cx" = ( +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/OldHotel) +"CS" = ( +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"Di" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/microwave, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"Dx" = ( +/obj/structure/table/wooden_reinforced, +/obj/random/medical, +/obj/random/medical, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"DN" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"Es" = ( +/obj/random/junk, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/OldHotel) +"ES" = ( +/obj/random/trash, +/turf/simulated/floor/carpet/oracarpet, +/area/survivalpod/superpose/OldHotel) +"Gk" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"Gr" = ( +/obj/item/frame/apc, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"Gz" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower/medical, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"GC" = ( +/obj/random/trash, +/obj/random/trash, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/OldHotel) +"GN" = ( +/obj/structure/flora/tree/sif, +/turf/template_noop, +/area/survivalpod/superpose/OldHotel) +"GV" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/fancy/candle_box, +/obj/item/weapon/storage/fancy/candle_box, +/obj/item/weapon/storage/fancy/candle_box, +/obj/item/weapon/flame/lighter/random, +/obj/item/weapon/flame/lighter/random, +/obj/item/weapon/melee/umbrella/random, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"Ha" = ( +/obj/structure/table/woodentable, +/obj/item/trash/candle, +/obj/item/weapon/paper{ + info = "This is a stupid tresure hunt task, that thing is not taking us anywhere. Go on and have fun finding a waste of time."; + name = "Wrinkled sheet of paper" + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"Ik" = ( +/obj/item/weapon/material/shard, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"Il" = ( +/obj/structure/closet/secure_closet/freezer/kitchen{ + locked = 0 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"IQ" = ( +/obj/structure/railing, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"Jq" = ( +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"JT" = ( +/obj/random/junk, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"JV" = ( +/obj/structure/table/bench/sifwooden, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/OldHotel) +"Mk" = ( +/obj/item/weapon/storage/backpack/messenger, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/reagent_containers/food/snacks/sosjerky, +/obj/item/weapon/cell/device/hyper, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy, +/obj/item/weapon/flame/lighter/random, +/obj/item/weapon/storage/box/survival/space, +/obj/item/device/radio, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/weapon/reagent_containers/pill/dylovene, +/obj/item/weapon/reagent_containers/pill/dylovene, +/obj/item/device/flashlight/maglight, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/random/soap, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, +/obj/item/device/fbp_backup_cell, +/obj/item/device/pda, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/device/starcaster_news, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/item/device/suit_cooling_unit/emergency, +/obj/item/device/gps, +/obj/structure/closet{ + name = "Survival closet" + }, +/turf/simulated/floor/wood/broken, +/area/survivalpod/superpose/OldHotel) +"Mo" = ( +/obj/structure/railing, +/turf/template_noop, +/area/survivalpod/superpose/OldHotel) +"Mq" = ( +/obj/structure/closet/crate, +/obj/random/firstaid, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"MD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"MU" = ( +/turf/template_noop, +/area/survivalpod/superpose/OldHotel) +"Nu" = ( +/obj/random/soap, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"Pd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/OldHotel) +"PO" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/wood/broken, +/area/survivalpod/superpose/OldHotel) +"Qv" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/item/weapon/pen, +/obj/item/weapon/pen, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"Qw" = ( +/obj/item/weapon/stool, +/obj/random/projectile/scrapped_shotgun, +/obj/random/cash, +/obj/machinery/light/small, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"QG" = ( +/obj/structure/bed/chair/oldsofa{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/survivalpod/superpose/OldHotel) +"RM" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"RQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/broken, +/area/survivalpod/superpose/OldHotel) +"Se" = ( +/obj/structure/closet/cabinet, +/obj/item/device/binoculars/spyglass, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance/medical, +/obj/random/cash, +/obj/random/drinkbottle, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"Sf" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/yellowdouble, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"Sy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"SG" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/survivalpod/superpose/OldHotel) +"SL" = ( +/obj/item/weapon/material/shard, +/obj/item/weapon/material/shard, +/obj/item/weapon/material/shard{ + pixel_x = 9 + }, +/turf/simulated/floor, +/area/survivalpod/superpose/OldHotel) +"SZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"TU" = ( +/turf/simulated/floor/wood/broken, +/area/survivalpod/superpose/OldHotel) +"Ut" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/OldHotel) +"Uw" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/book/manual/chef_recipes, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"UU" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/lighter/zippo/royal, +/obj/item/weapon/lipstick/random, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"Vf" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower/medical, +/obj/random/soap, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"Vj" = ( +/turf/simulated/floor/carpet/oracarpet, +/area/survivalpod/superpose/OldHotel) +"Wy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"WD" = ( +/obj/structure/closet/secure_closet/freezer/fridge{ + locked = 0 + }, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"WH" = ( +/obj/item/device/flashlight{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"YI" = ( +/obj/structure/coatrack, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/OldHotel) +"YQ" = ( +/obj/item/weapon/material/shard, +/obj/structure/grille/broken/rustic, +/turf/simulated/floor/tiled/asteroid_steel, +/area/survivalpod/superpose/OldHotel) +"ZG" = ( +/obj/structure/girder, +/turf/simulated/floor, +/area/survivalpod/superpose/OldHotel) + +(1,1,1) = {" +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +"} +(2,1,1) = {" +gA +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +gA +"} +(3,1,1) = {" +gA +MU +kw +hQ +hQ +ZG +ZG +hQ +MU +MU +MU +MU +MU +MU +MU +bW +MU +MU +MU +MU +MU +MU +MU +MU +gA +"} +(4,1,1) = {" +gA +MU +hQ +hQ +Bt +YI +GV +hQ +hQ +MU +nG +hQ +nD +hQ +Cx +pn +nD +hQ +hQ +Cx +Cx +hQ +hQ +MU +gA +"} +(5,1,1) = {" +gA +mR +mR +go +TU +TU +WH +hQ +hQ +dL +YQ +hQ +ZG +hQ +Ik +YQ +ZG +ZG +hQ +dL +dL +hQ +hQ +MU +gA +"} +(6,1,1) = {" +gA +MU +hQ +zt +SZ +Qv +SZ +hQ +DN +sV +tV +Mq +nD +DN +iU +Gk +ab +hQ +Mk +DN +vA +Gk +nD +MU +gA +"} +(7,1,1) = {" +gA +MU +nG +vM +qg +rK +Qw +hQ +TU +ES +Vj +SZ +hQ +RM +ai +ja +qg +hQ +PO +Pd +hp +qg +ZG +MU +gA +"} +(8,1,1) = {" +gA +MU +MU +dL +qY +UU +Gr +ZG +RM +dc +cZ +SZ +hQ +TU +SG +yM +Wy +ZG +TU +kI +Pd +qg +hQ +MU +gA +"} +(9,1,1) = {" +gA +MU +bW +wK +JT +AU +qg +nD +rK +tz +uU +qg +hQ +rK +Sf +zE +SZ +hQ +qg +Se +ly +Ha +hQ +MU +gA +"} +(10,1,1) = {" +gA +MU +ZG +hQ +zP +TU +qg +hQ +hQ +hQ +hQ +tn +hQ +hQ +ZG +hQ +tn +hQ +tn +hQ +nD +hQ +hQ +MU +gA +"} +(11,1,1) = {" +gA +MU +nD +hQ +qg +qg +SZ +qg +SZ +JT +tn +qg +hc +SZ +qg +SZ +RQ +SZ +SZ +SZ +CS +dL +MU +MU +gA +"} +(12,1,1) = {" +gA +MU +MU +dL +qg +da +op +lZ +kh +SZ +tn +SZ +DN +dn +kW +Gk +bb +DN +kW +dn +Gk +dL +MU +MU +gA +"} +(13,1,1) = {" +gA +MU +nG +YQ +JT +jO +vR +tE +kh +qg +hQ +ZG +hQ +nD +ZG +hQ +hQ +hQ +hQ +hQ +hQ +ZG +nD +MU +gA +"} +(14,1,1) = {" +gA +MU +MU +dL +qg +vh +QG +QG +if +SZ +go +bQ +rb +lj +Ac +Uw +WD +wV +Dx +Di +gM +Il +IQ +MU +gA +"} +(15,1,1) = {" +gA +MU +hQ +hQ +aa +TU +hc +SZ +qg +TU +go +bQ +Cx +Jq +Cx +Jq +Sy +Jq +mR +Sy +Cx +Jq +Cx +MU +gA +"} +(16,1,1) = {" +gA +MU +ZG +hQ +ZG +hQ +MD +hQ +hQ +hQ +cA +Sy +mR +Es +mR +Cx +wm +Cx +mR +zs +GC +Cx +AO +MU +gA +"} +(17,1,1) = {" +gA +MU +hQ +hQ +aJ +dz +Sy +Vf +nD +dr +Jq +Jq +Es +Cx +yj +Cx +Cx +Cx +Es +Cx +yj +Cx +AO +MU +gA +"} +(18,1,1) = {" +gA +MU +MU +hQ +sd +Sy +Nu +Gz +hQ +wX +Jq +bQ +Cx +Cx +MU +JV +eK +JV +MU +Cx +MU +MU +MU +MU +gA +"} +(19,1,1) = {" +gA +MU +MU +ZG +hQ +ZG +SL +hQ +hQ +ZG +hQ +Ut +Jq +Cx +MU +MU +Cx +MU +MU +MU +MU +MU +Mo +MU +gA +"} +(20,1,1) = {" +gA +MU +MU +MU +MU +MU +bW +MU +MU +MU +Cx +Cx +Cx +MU +Cx +MU +Cx +MU +MU +MU +MU +MU +MU +MU +gA +"} +(21,1,1) = {" +gA +MU +MU +MU +MU +MU +MU +MU +MU +Cx +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +GN +MU +gA +"} +(22,1,1) = {" +gA +MU +GN +MU +MU +MU +MU +MU +MU +MU +MU +MU +Cx +Cx +MU +MU +Cx +MU +MU +MU +MU +MU +MU +MU +gA +"} +(23,1,1) = {" +gA +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +gA +"} +(24,1,1) = {" +gA +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +GN +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +gA +"} +(25,1,1) = {" +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +"} diff --git a/modular_chomp/maps/submaps/shelters/ScienceShip-25x33.dmm b/modular_chomp/maps/submaps/shelters/ScienceShip-25x33.dmm new file mode 100644 index 0000000000..cc7091660e --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/ScienceShip-25x33.dmm @@ -0,0 +1,258 @@ +"ae" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/machinery/shower{pixel_y = 20},/obj/structure/curtain/open/shower,/obj/random/soap,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/ScienceShip) +"ap" = (/obj/structure/sign/science{pixel_y = -32},/turf/template_noop,/area/template_noop) +"bc" = (/obj/structure/sign/science{pixel_y = 32},/turf/template_noop,/area/template_noop) +"be" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 8},/obj/structure/shuttle/engine/heater{dir = 4},/turf/simulated/shuttle/wall,/area/survivalpod/superpose/ScienceShip) +"bm" = (/turf/template_noop,/area/survivalpod/superpose/ScienceShip) +"bP" = (/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/shuttle/window,/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular/open{id = "estrella_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"ch" = (/obj/machinery/door/airlock/maintenance/common,/obj/item/tape/engineering,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/survivalpod/superpose/ScienceShip) +"cm" = (/obj/machinery/atmospherics/unary/engine/bigger{dir = 4; pixel_x = -3},/turf/template_noop,/area/survivalpod/superpose/ScienceShip) +"cu" = (/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip) +"cw" = (/obj/structure/closet/walllocker/emerglocker{dir = 1; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/ScienceShip) +"da" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "estrella"; name = "interior access button"; pixel_y = 26},/obj/machinery/door/firedoor/border_only,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"df" = (/obj/structure/closet/walllocker_double/medical/west,/obj/item/weapon/storage/firstaid,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2,/obj/item/roller,/obj/item/device/defib_kit/loaded,/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) +"dh" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/structure/table/bench/standard,/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) +"dp" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/ScienceShip) +"dB" = (/obj/structure/closet/secure_closet/engineering_electrical{req_access = null},/obj/machinery/light{dir = 1},/obj/item/weapon/storage/belt/utility,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"dS" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/ScienceShip) +"eu" = (/turf/simulated/floor/carpet,/area/survivalpod/superpose/ScienceShip) +"ez" = (/turf/simulated/shuttle/floor/purple,/area/survivalpod/superpose/ScienceShip) +"fe" = (/obj/structure/shuttle/engine/router,/turf/simulated/shuttle/wall,/area/survivalpod/superpose/ScienceShip) +"fg" = (/obj/screen/alert/highpressure,/turf/simulated/shuttle/wall,/area/survivalpod/superpose/ScienceShip) +"fs" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/survivalpod/superpose/ScienceShip) +"fD" = (/obj/machinery/door/window/survival_pod{dir = 8},/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip) +"ge" = (/obj/machinery/atmospherics/pipe/tank/phoron{dir = 4},/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"gf" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/ScienceShip) +"hb" = (/obj/machinery/r_n_d/protolathe,/obj/screen/alert/highpressure,/turf/simulated/shuttle/floor/purple,/area/survivalpod/superpose/ScienceShip) +"hB" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "estrella_pump"},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"hQ" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip) +"hR" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/ScienceShip) +"iv" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/shuttle/floor/purple,/area/survivalpod/superpose/ScienceShip) +"iQ" = (/obj/structure/table/wooden_reinforced,/obj/structure/flora/pottedplant/smallcactus{pixel_y = 13},/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip) +"je" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; icon_state = "map_vent_out"; use_power = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/ScienceShip) +"ju" = (/obj/structure/closet/walllocker/emerglocker{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/ScienceShip) +"kl" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/shuttle/wall,/area/survivalpod/superpose/ScienceShip) +"kw" = (/obj/structure/table,/obj/machinery/light{layer = 3},/obj/item/weapon/gun/projectile/revolver/toy/crossbow,/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip) +"kV" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/rods,/obj/fiftyspawner/rods,/obj/item/stack/material/plasteel{amount = 30},/obj/item/stack/material/plasteel{amount = 30},/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/ScienceShip) +"ll" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1380; id_tag = "estrella_pump"},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "estrella"; pixel_y = 26; tag_airpump = "estrella_pump"; tag_chamber_sensor = "estrella_sensor"; tag_exterior_door = "estrella_outer"; tag_interior_door = "estrella_inner"},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"lu" = (/obj/machinery/r_n_d/circuit_imprinter,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 9; pixel_y = 8},/obj/machinery/light,/turf/simulated/shuttle/floor/purple,/area/survivalpod/superpose/ScienceShip) +"lB" = (/obj/machinery/alarm/alarms_hidden{dir = 8; pixel_x = 22},/obj/structure/sink{dir = 4; pixel_x = 11},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) +"lH" = (/obj/machinery/door/airlock/maintenance/command{req_one_access = null},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/steel_grid,/area/survivalpod/superpose/ScienceShip) +"lK" = (/obj/item/weapon/gun/projectile/colt,/obj/item/weapon/gun/projectile/garand,/obj/item/weapon/gun/projectile/revolvingrifle,/obj/item/weapon/gun/projectile/shotgun/pump,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/obj/item/ammo_magazine/ammo_box/b12g/beanbag,/obj/item/ammo_magazine/ammo_box/b12g/beanbag,/obj/item/ammo_magazine/ammo_box/b12g/flechette,/obj/item/ammo_magazine/ammo_box/b12g/flechette,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"lM" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"lW" = (/obj/structure/shuttle/window,/obj/machinery/door/firedoor/glass,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"mg" = (/obj/structure/shuttle/window,/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"nb" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/shuttle/floor/purple,/area/survivalpod/superpose/ScienceShip) +"nq" = (/obj/structure/fuel_port{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"nM" = (/obj/structure/closet/walllocker_double/kitchen/north{dir = 8; name = "Ration Cabinet"; pixel_x = -32; pixel_y = 0},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"nQ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip) +"nV" = (/obj/machinery/alarm/alarms_hidden{dir = 8; pixel_x = 22},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"os" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/ScienceShip) +"oJ" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/bed/chair/wood{dir = 4},/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip) +"oS" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/storage/toolbox/electrical,/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/weapon/storage/toolbox/syndicate/powertools{pixel_y = 9},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/ScienceShip) +"oX" = (/turf/simulated/shuttle/wall,/area/survivalpod/superpose/ScienceShip) +"pk" = (/obj/machinery/atmospherics/binary/pump,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"pm" = (/obj/machinery/atmospherics/unary/cryo_cell,/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) +"pG" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"pL" = (/obj/machinery/computer/ship/navigation{dir = 4},/obj/machinery/light{dir = 8},/obj/item/device/radio/intercom{desc = "Talk... listen through this."; name = "Station Intercom (Brig Radio)"; pixel_y = -21; wires = 7},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/ScienceShip) +"qb" = (/obj/machinery/door/window/northright{name = "Server Room"; req_access = null},/obj/machinery/door/window/southleft{name = "Server Room"; req_access = null},/obj/effect/floor_decal/industrial/warning/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/ScienceShip) +"qe" = (/obj/structure/table/rack/shelf/steel,/obj/item/stack/material/phoron{amount = 25},/obj/item/stack/material/phoron{amount = 25},/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/ScienceShip) +"qh" = (/obj/structure/sign/science{pixel_x = 32},/turf/template_noop,/area/template_noop) +"ql" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/ScienceShip) +"ri" = (/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"rs" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) +"rP" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/ScienceShip) +"se" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/shuttle/window,/obj/machinery/door/firedoor/glass,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"sv" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"sz" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/maintenance/engi{req_one_access = null},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/survivalpod/superpose/ScienceShip) +"sH" = (/turf/simulated/shuttle/wall/no_join{base_state = "orange"; icon = 'icons/turf/shuttle_orange.dmi'; icon_state = "orange"},/area/survivalpod/superpose/ScienceShip) +"sI" = (/obj/machinery/computer/ship/helm{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/ScienceShip) +"sJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"sK" = (/obj/machinery/door/airlock/maintenance/engi{req_one_access = null},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/survivalpod/superpose/ScienceShip) +"sT" = (/obj/machinery/door/airlock/maintenance/rnd{req_one_access = null},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/survivalpod/superpose/ScienceShip) +"sY" = (/obj/structure/table/rack/shelf/steel,/obj/item/clothing/suit/bio_suit/anomaly,/obj/item/clothing/mask/breath,/obj/item/clothing/head/bio_hood/anomaly,/obj/item/clothing/gloves/sterile/latex,/obj/item/weapon/storage/excavation,/obj/item/stack/flag/yellow,/obj/item/device/measuring_tape,/obj/item/weapon/pickaxe/drill,/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/obj/item/weapon/material/knife/machete/hatchet,/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/ScienceShip) +"tb" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/obj/machinery/space_heater,/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/ScienceShip) +"te" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"tg" = (/obj/machinery/r_n_d/server/core,/obj/machinery/light/small,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/ScienceShip) +"tu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow,/obj/structure/table/rack/shelf/steel,/obj/item/stack/material/glass/phoronrglass{amount = 20},/obj/item/stack/material/glass/phoronrglass{amount = 20},/obj/fiftyspawner/rods,/obj/fiftyspawner/rods,/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/ScienceShip) +"tN" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/ScienceShip) +"tR" = (/obj/machinery/door/firedoor/glass,/obj/structure/table/reinforced,/obj/machinery/door/window/northright{dir = 4; name = "Medical booth"},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) +"um" = (/obj/structure/closet/cabinet{pixel_y = 20},/obj/item/toy/plushie/kitten,/obj/item/toy/plushie/grey_cat,/obj/item/toy/plushie/orange_cat,/obj/item/toy/plushie/borgplushie/scrubpuppy,/obj/item/toy/plushie/black_fox,/obj/item/toy/plushie,/obj/item/toy/plushie/corgi,/obj/item/toy/plushie/crimson_fox,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = -32},/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/turf/simulated/floor/carpet/turcarpet,/area/survivalpod/superpose/ScienceShip) +"uu" = (/obj/machinery/door/airlock/multi_tile/metal/mait,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/survivalpod/superpose/ScienceShip) +"uX" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/structure/closet/walllocker/emerglocker{pixel_x = -25; pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"vl" = (/obj/structure/closet/cabinet{pixel_y = 20},/obj/item/weapon/ore/diamond,/obj/item/weapon/ore/gold,/obj/item/weapon/ore/osmium,/obj/item/weapon/ore/silver,/obj/item/weapon/ore/uranium,/obj/item/weapon/ore/bluespace_crystal,/obj/item/clothing/head/sombrero,/obj/item/clothing/head/sombrero,/obj/item/clothing/suit/poncho,/obj/item/clothing/accessory/poncho/thermal/red,/obj/item/clothing/accessory/poncho/thermal/security,/obj/item/clothing/accessory/poncho/thermal/green,/obj/item/clothing/accessory/poncho/red,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/toy/bosunwhistle/fluff/strix,/obj/item/weapon/blobcore_chunk,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip) +"wp" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/survivalpod/superpose/ScienceShip) +"xk" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip) +"xw" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"xy" = (/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/ScienceShip) +"xF" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/structure/closet/jcloset,/obj/item/weapon/mop,/obj/structure/mopbucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"yb" = (/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_x = 25},/obj/structure/table/reinforced,/obj/item/weapon/storage/quickdraw/syringe_case,/obj/item/weapon/storage/quickdraw/syringe_case,/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) +"yn" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"yt" = (/obj/machinery/smartfridge/survival_pod{name = "food storage"},/obj/item/weapon/reagent_containers/food/snacks/burrito_spicy,/obj/item/weapon/reagent_containers/food/snacks/burrito_spicy,/obj/item/weapon/reagent_containers/food/snacks/burrito_spicy,/obj/item/weapon/reagent_containers/food/snacks/burrito_vegan,/obj/item/weapon/reagent_containers/food/snacks/burrito_vegan,/obj/item/weapon/reagent_containers/food/snacks/burrito_vegan,/obj/item/weapon/reagent_containers/food/snacks/burrito_mystery,/obj/item/weapon/reagent_containers/food/snacks/burrito_mystery,/obj/item/weapon/reagent_containers/food/snacks/burrito_mystery,/obj/item/weapon/reagent_containers/food/snacks/burrito_hell,/obj/item/weapon/reagent_containers/food/snacks/burrito_hell,/obj/item/weapon/reagent_containers/food/snacks/burrito_hell,/obj/item/weapon/reagent_containers/food/snacks/burrito_hell,/obj/item/weapon/reagent_containers/food/snacks/burrito_cheese,/obj/item/weapon/reagent_containers/food/snacks/burrito_cheese,/obj/item/weapon/reagent_containers/food/snacks/burrito_cheese,/obj/item/weapon/reagent_containers/food/snacks/burrito,/obj/item/weapon/reagent_containers/food/snacks/burrito,/obj/item/weapon/reagent_containers/food/snacks/burrito,/obj/item/weapon/reagent_containers/food/snacks/slice/bigbeanburrito,/obj/item/weapon/reagent_containers/food/snacks/slice/bigbeanburrito,/obj/item/weapon/reagent_containers/food/snacks/slice/bigbeanburrito,/obj/item/weapon/reagent_containers/food/snacks/slice/bigbeanburrito/filled,/obj/item/weapon/reagent_containers/food/snacks/slice/bigbeanburrito/filled,/obj/item/weapon/reagent_containers/food/snacks/slice/bigbeanburrito/filled,/obj/item/weapon/reagent_containers/food/snacks/sliceable/supremoburrito,/obj/item/weapon/reagent_containers/food/snacks/enchiladas,/obj/item/weapon/reagent_containers/food/snacks/enchiladas,/obj/item/weapon/reagent_containers/food/snacks/enchiladas,/obj/item/weapon/reagent_containers/food/snacks/cheesenachos,/obj/item/weapon/reagent_containers/food/snacks/cheesenachos,/obj/item/weapon/reagent_containers/food/snacks/cheesenachos,/obj/item/weapon/reagent_containers/food/snacks/chipplate/nachos,/obj/item/weapon/reagent_containers/food/snacks/chipplate/nachos,/obj/item/weapon/reagent_containers/food/snacks/chipplate/nachos,/obj/item/weapon/reagent_containers/food/snacks/cubannachos,/obj/item/weapon/reagent_containers/food/snacks/cubannachos,/obj/item/weapon/reagent_containers/food/snacks/cubannachos,/obj/item/weapon/reagent_containers/food/snacks/cubannachos,/obj/item/weapon/reagent_containers/food/snacks/nachos,/obj/item/weapon/reagent_containers/food/snacks/nachos,/obj/item/weapon/reagent_containers/food/snacks/nachos,/obj/item/weapon/reagent_containers/food/snacks/nachos,/obj/item/weapon/reagent_containers/food/snacks/pandenata,/obj/item/weapon/reagent_containers/food/snacks/pandenata,/obj/item/weapon/reagent_containers/food/snacks/pandenata,/obj/item/weapon/reagent_containers/food/snacks/tocino,/obj/item/weapon/reagent_containers/food/snacks/tocino,/obj/item/weapon/reagent_containers/food/snacks/tocino,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"yy" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 26},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"yB" = (/obj/machinery/alarm/alarms_hidden{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip) +"yJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/mech_recharger,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"zp" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"zV" = (/obj/structure/table/rack/shelf/steel,/obj/item/stack/material/uranium,/obj/item/stack/material/phoron{amount = 5; pixel_x = -1; pixel_y = -3},/obj/item/stack/material/gold{amount = 5},/obj/item/stack/material/diamond,/obj/item/stack/material/silver{amount = 5; pixel_x = 2; pixel_y = 4},/turf/simulated/shuttle/floor/purple,/area/survivalpod/superpose/ScienceShip) +"Az" = (/obj/machinery/door/airlock/maintenance/medical{req_one_access = null},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/survivalpod/superpose/ScienceShip) +"AN" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip) +"AO" = (/obj/structure/closet/walllocker/emerglocker{pixel_x = -25; pixel_y = 32},/turf/simulated/shuttle/floor/purple,/area/survivalpod/superpose/ScienceShip) +"AP" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 6},/turf/simulated/shuttle/wall/hard_corner,/area/survivalpod/superpose/ScienceShip) +"AQ" = (/obj/structure/bed/double/padded,/obj/structure/closet/walllocker/emerglocker{pixel_y = 32},/obj/item/weapon/bedsheet/rainbowdouble,/turf/simulated/floor/carpet/turcarpet,/area/survivalpod/superpose/ScienceShip) +"Bn" = (/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/shuttle/window,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular/open{dir = 4; id = "estrella_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"Bz" = (/obj/structure/toilet{dir = 8; pixel_x = 9},/obj/machinery/door/window/survival_pod{dir = 1},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/ScienceShip) +"BR" = (/obj/machinery/computer/ship/sensors,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/ScienceShip) +"BS" = (/obj/effect/catwalk_plated/white,/obj/machinery/light/small{dir = 1},/turf/template_noop,/area/template_noop) +"Cm" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"Cn" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/ScienceShip) +"Cq" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"Cz" = (/obj/screen/alert/highpressure,/obj/machinery/r_n_d/destructive_analyzer,/turf/simulated/shuttle/floor/purple,/area/survivalpod/superpose/ScienceShip) +"CW" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/ScienceShip) +"CX" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/machinery/light/small{dir = 1},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"Dp" = (/obj/screen/alert/highpressure,/turf/simulated/shuttle/wall/hard_corner,/area/survivalpod/superpose/ScienceShip) +"Ds" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) +"DK" = (/obj/item/weapon/gun/energy/ionrifle,/obj/item/weapon/gun/energy/modular/carbine,/obj/item/weapon/gun/energy/pummeler,/obj/item/weapon/gun/energy/taser,/obj/machinery/light,/obj/item/weapon/cell/device/super,/obj/item/weapon/cell/device/super,/obj/item/weapon/cell/device/super,/obj/item/weapon/cell/device/super,/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"DM" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 1},/obj/structure/reagent_dispensers/fueltank/high,/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/ScienceShip) +"DV" = (/obj/machinery/alarm/alarms_hidden{dir = 8; pixel_x = 22},/obj/structure/bed/chair/office/dark,/turf/simulated/shuttle/floor/purple,/area/survivalpod/superpose/ScienceShip) +"DW" = (/obj/effect/catwalk_plated/dark,/obj/machinery/shipsensors{dir = 8},/obj/structure/sign/science{pixel_x = 32},/turf/template_noop,/area/survivalpod/superpose/ScienceShip) +"Eg" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/ScienceShip) +"Eq" = (/turf/template_noop,/area/template_noop) +"Ew" = (/obj/machinery/sleeper{dir = 4},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) +"EH" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -34},/obj/machinery/space_heater,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"EN" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"ER" = (/obj/structure/bed/chair/bay/comfy/red{dir = 8},/obj/structure/closet/walllocker/emerglocker{pixel_x = -25; pixel_y = 32},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/ScienceShip) +"Fb" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/glass/beaker,/obj/machinery/reagentgrinder,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; name = "Chemistry Cleaner"},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) +"Fe" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/coin/diamond,/obj/machinery/light{layer = 3},/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip) +"Ft" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "estrella"; name = "exterior access button"; pixel_y = 26},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular/open{dir = 4; id = "estrella_blast"; layer = 2; name = "window blast shield"; open_layer = 2},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"FR" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "estrella_side_hatch"; locked = 1; req_access = null; req_one_access = null},/obj/machinery/button/remote/airlock{dir = 8; id = "estrella_side_hatch"; name = "Side Hatch Control"; pixel_x = -27; specialfunctions = 4},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular/open{id = "estrella_blast"; layer = 2; name = "window blast shield"; open_layer = 2},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"FV" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/engineering,/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/obj/item/weapon/tank/phoron,/obj/item/weapon/tank/phoron,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/storage/toolbox/electrical,/obj/item/device/multitool,/obj/item/device/geiger,/obj/item/clothing/glasses/goggles,/obj/item/clothing/glasses/goggles,/obj/item/device/t_scanner,/obj/item/clothing/glasses/welding,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"Gi" = (/obj/effect/catwalk_plated/white,/turf/template_noop,/area/survivalpod/superpose/ScienceShip) +"Gl" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1380; id_tag = "estrella_pump"},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"GM" = (/obj/structure/table/bench/wooden,/obj/machinery/light{dir = 4},/obj/machinery/alarm/alarms_hidden{dir = 8; pixel_x = 22},/obj/item/device/flash,/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip) +"GP" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/ScienceShip) +"GU" = (/obj/machinery/sleep_console{dir = 4},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) +"HX" = (/obj/machinery/chem_master{pixel_x = -7},/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) +"Ij" = (/obj/machinery/power/smes/buildable/hybrid,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/cable/green,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"In" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"Io" = (/obj/machinery/atmospherics/unary/freezer{icon_state = "freezer"},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) +"Ip" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) +"Iz" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/blue,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/blue{pixel_x = -5; pixel_y = -1},/obj/item/weapon/pen/red,/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/turf/simulated/shuttle/floor/purple,/area/survivalpod/superpose/ScienceShip) +"IB" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/obj/random/soap,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/ScienceShip) +"IE" = (/obj/structure/closet/walllocker/emerglocker{dir = 1; pixel_x = -24; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"II" = (/obj/machinery/power/port_gen/pacman,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"IM" = (/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/red,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"IQ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/ScienceShip) +"Jd" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"Jm" = (/obj/machinery/door/airlock/multi_tile/metal/mait{dir = 1; frequency = 1380; icon_state = "door_locked"; id_tag = "estrella_outer"; locked = 1; name = "External Access"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular/open{dir = 4; id = "estrella_blast"; layer = 2; name = "window blast shield"; open_layer = 2},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"JG" = (/obj/structure/reagent_dispensers/acid{density = 0; pixel_x = -30},/turf/simulated/shuttle/floor/purple,/area/survivalpod/superpose/ScienceShip) +"JJ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/closet/walllocker/emerglocker{dir = 1; pixel_y = -32},/obj/machinery/alarm/alarms_hidden{pixel_y = 22},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/ScienceShip) +"Kh" = (/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip) +"Kq" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/obj/random/soap,/turf/simulated/floor/plating,/area/survivalpod/superpose/ScienceShip) +"Kx" = (/obj/screen/alert/highpressure,/turf/template_noop,/area/template_noop) +"KD" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/obj/machinery/telecomms/relay/preset/ruskie,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/ScienceShip) +"Lj" = (/obj/structure/closet/walllocker_double/kitchen/north{dir = 8; name = "Ration Cabinet"; pixel_x = -32; pixel_y = 0},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"Lx" = (/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/ScienceShip) +"LC" = (/obj/machinery/door/firedoor/glass,/obj/structure/shuttle/window,/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"LP" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5},/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/obj/item/clothing/head/helmet/combat/USDF,/obj/item/clothing/head/helmet/combat/USDF,/obj/item/clothing/suit/armor/combat/USDF,/obj/item/clothing/suit/armor/combat/USDF,/obj/item/device/flash,/obj/item/device/flash,/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/ScienceShip) +"Mc" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/fireaxecabinet{pixel_x = 32},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/ScienceShip) +"Mg" = (/obj/machinery/atmospherics/pipe/manifold4w/visible,/obj/machinery/meter,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"MR" = (/obj/machinery/shuttle_sensor,/turf/simulated/shuttle/wall/hard_corner,/area/survivalpod/superpose/ScienceShip) +"Ng" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/alarm/alarms_hidden{pixel_y = 22},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/ScienceShip) +"Nm" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/shield_generator/charged{field_radius = 8; initial_shield_modes = 2153; target_radius = 8},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"Np" = (/obj/machinery/computer/shuttle_control/explore/stargazer{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/ScienceShip) +"NV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/shuttle/floor/purple,/area/survivalpod/superpose/ScienceShip) +"Oh" = (/obj/effect/catwalk_plated/white,/obj/machinery/light/small{dir = 8},/turf/template_noop,/area/survivalpod/superpose/ScienceShip) +"Oi" = (/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"Ou" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"OG" = (/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) +"Pk" = (/obj/structure/closet/walllocker/emerglocker{pixel_y = 32},/turf/simulated/floor/plating,/area/survivalpod/superpose/ScienceShip) +"Pv" = (/obj/machinery/atmospherics/unary/freezer{icon_state = "freezer_1"; power_setting = 20; set_temperature = 73; use_power = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/ScienceShip) +"Pz" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/gear_dispenser/suit/ert{req_one_access = null},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"PB" = (/turf/simulated/floor/wood/broken,/area/survivalpod/superpose/ScienceShip) +"PS" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"Qp" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/table/reinforced,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/turf/simulated/shuttle/floor/purple,/area/survivalpod/superpose/ScienceShip) +"QA" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/obj/machinery/suspension_gen,/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/ScienceShip) +"QC" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/fountain,/obj/item/weapon/pen/chameleon,/obj/item/device/gps/advanced/science,/obj/machinery/button/remote/blast_door{id = "estrella_blast"; name = "remote blast shielding control"; pixel_x = -1; pixel_y = -26},/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip) +"QH" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"QR" = (/obj/machinery/meter,/obj/structure/closet/walllocker/emerglocker{pixel_x = -25; pixel_y = 32},/obj/machinery/alarm/alarms_hidden{dir = 4; pixel_x = -22},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/ScienceShip) +"QT" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) +"Ro" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"Rp" = (/obj/machinery/alarm/alarms_hidden{dir = 8; pixel_x = 22},/turf/simulated/floor/wood/broken,/area/survivalpod/superpose/ScienceShip) +"RI" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/recharge_station,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"RU" = (/obj/structure/closet/cabinet{pixel_y = 20},/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = -32},/obj/item/weapon/handcuffs/legcuffs/fuzzy,/obj/item/weapon/handcuffs/fuzzy,/obj/item/clothing/mask/muzzle/ballgag,/obj/item/clothing/suit/iasexy,/obj/item/clothing/under/sexybunny_white/sexybunny_black,/obj/item/clothing/under/dress/maid/sexy,/obj/item/clothing/head/collectable/rabbitears,/turf/simulated/floor/wood/broken,/area/survivalpod/superpose/ScienceShip) +"RV" = (/obj/structure/table/steel_reinforced,/obj/machinery/power/apc/alarms_hidden{dir = 4; pixel_x = 24},/obj/structure/cable/green,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"St" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/ScienceShip) +"SC" = (/obj/machinery/atmospherics/valve,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"SE" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"SU" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/obj/structure/reagent_dispensers/watertank/high,/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/ScienceShip) +"Te" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/shuttle/floor/purple,/area/survivalpod/superpose/ScienceShip) +"Tp" = (/obj/structure/bed/double/padded,/obj/structure/curtain/bed,/obj/item/weapon/bedsheet/hosdouble,/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_y = 32},/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip) +"Tr" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/maintenance/rnd{req_one_access = null},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/survivalpod/superpose/ScienceShip) +"TB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/ScienceShip) +"TF" = (/obj/screen/alert/highpressure,/obj/machinery/computer/rdconsole/core{dir = 4},/turf/simulated/shuttle/floor/purple,/area/survivalpod/superpose/ScienceShip) +"Ug" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/ScienceShip) +"Ul" = (/turf/simulated/shuttle/wall/hard_corner,/area/survivalpod/superpose/ScienceShip) +"Ur" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 4},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"Uz" = (/obj/machinery/computer/ship/engines,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/ScienceShip) +"UG" = (/obj/structure/table/reinforced,/obj/item/device/gps/advanced/science,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; name = "Chemistry Cleaner"},/turf/simulated/shuttle/floor/purple,/area/survivalpod/superpose/ScienceShip) +"UN" = (/obj/structure/table/reinforced,/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor/purple,/area/survivalpod/superpose/ScienceShip) +"UP" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/table/reinforced,/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/tech_disk,/obj/item/weapon/disk/tech_disk,/turf/simulated/shuttle/floor/purple,/area/survivalpod/superpose/ScienceShip) +"UZ" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "estrella_pump"},/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "estrella_sensor"; pixel_y = -28},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"VB" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"VE" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/ScienceShip) +"VH" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/computer/rdservercontrol,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/ScienceShip) +"VJ" = (/obj/structure/table/steel_reinforced,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/machinery/alarm/alarms_hidden{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"VS" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/binary/passive_gate{dir = 1; regulate_mode = 0; unlocked = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"VT" = (/obj/machinery/door/airlock/multi_tile/metal/mait{dir = 1; frequency = 1380; icon_state = "door_locked"; id_tag = "estrella_inner"; locked = 1; name = "Internal Access"},/obj/machinery/atmospherics/pipe/simple/visible{dir = 5},/obj/machinery/door/firedoor/border_only,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"VY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"Wc" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/full{pixel_y = 5},/obj/item/device/radio/intercom{desc = "Talk... listen through this."; name = "Station Intercom (Brig Radio)"; pixel_y = -21; wires = 7},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) +"Wj" = (/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/shuttle/window,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular/open{id = "estrella_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"Wu" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/plating,/area/survivalpod/superpose/ScienceShip) +"WL" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"Xh" = (/obj/structure/toilet{pixel_y = 12},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/machinery/door/window/survival_pod{dir = 2; req_one_access = null},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/ScienceShip) +"Xz" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "estrella_back_hatch"; locked = 1; req_one_access = null},/obj/machinery/button/remote/airlock{desiredstate = 1; id = "estrella_back_hatch"; name = "Rear Hatch Control"; pixel_y = 27; req_access = null; specialfunctions = 4},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular/open{dir = 4; id = "estrella_blast"; layer = 2; name = "window blast shield"; open_layer = 2},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) +"XQ" = (/obj/structure/closet/cabinet{pixel_y = 20},/obj/item/weapon/implanter/sizecontrol,/obj/item/weapon/ore/uranium,/obj/item/weapon/ore/uranium,/obj/item/weapon/ore/phoron,/obj/item/weapon/ore/phoron,/obj/item/weapon/ore/osmium,/obj/item/weapon/ore/osmium,/obj/item/weapon/ore/gold,/obj/item/weapon/ore/diamond,/obj/item/weapon/ore/marble,/obj/item/weapon/ore/osmium,/obj/item/weapon/ore/rutile,/obj/item/toy/bosunwhistle/fluff/strix,/obj/item/toy/character/wizard,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/mindbreaker/unidentified,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/mindbreaker/unidentified,/obj/item/weapon/fluff/squeezetoy,/obj/item/weapon/fluff/zekewatch,/obj/item/weapon/fluff/fidgetspinner/red,/obj/item/weapon/storage/pill_bottle/dice_nerd,/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip) +"Yi" = (/obj/structure/closet/secure_closet/engineering_welding{req_access = null},/obj/item/weapon/storage/belt/utility,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"YH" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"YN" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) +"YX" = (/obj/machinery/autolathe{hacked = 1},/turf/simulated/shuttle/floor/purple,/area/survivalpod/superpose/ScienceShip) +"Za" = (/obj/structure/table/reinforced,/obj/item/weapon/stock_parts/scanning_module/adv{pixel_x = 5; pixel_y = 6},/obj/item/weapon/stock_parts/scanning_module/adv{pixel_x = 5; pixel_y = 6},/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/matter_bin/adv,/obj/item/weapon/stock_parts/matter_bin/adv,/obj/item/weapon/stock_parts/manipulator/hyper,/obj/item/weapon/stock_parts/manipulator/hyper,/obj/item/weapon/stock_parts/capacitor/adv,/obj/item/weapon/stock_parts/capacitor/adv,/turf/simulated/shuttle/floor/purple,/area/survivalpod/superpose/ScienceShip) +"Zc" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) +"Zd" = (/turf/simulated/floor/plating,/area/survivalpod/superpose/ScienceShip) +"Zg" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/alarm/alarms_hidden{dir = 1; pixel_y = -22},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/ScienceShip) +"ZJ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/alarm/alarms_hidden{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) + +(1,1,1) = {" +EqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEq +EqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqapoXoXoXoXEqEqEq +EqEqEqEqEqEqEqEqEqEqEqEqEqEqEqoXoXsHUloXoXEqEqEqEq +EqEqEqEqEqEqEqEqEqapEqEqEqEqoXUldBYioSbebmbmEqEqEq +EqEqEqEqEqoXWjWjoXsHoXoXbPoXoXriuXOitbbecmbmEqEqEq +EqEqEqEqoXUlBRUzaeXhXQvlKhTpoXIMZcVBklfeoXEqEqEqEq +EqEqEqEqBnpLERxyfDeueueueuGMoXgeZcOigfbebmbmEqEqEq +EqEqEqEqoXUlsINpoJQChQnQKhiQoXgeZcOikVbecmbmEqEqEq +EqEqEqEqEqoXoXoXoXoXUllHmgoXoXUlnqnVklfeoXEqEqEqEq +EqEqEqEqEqDWsHYNpmIooXEgIQjuNgsKpkpGqebebmbmEqEqEq +EqEqEqEqEqoXUldhrslBoXrPoXoXoXUlInsJtubecmbmEqEqEq +EqEqEqEqEqBnWcIpOGQTtRGPoXumAQoXuuwpUloXoXEqEqEqEq +EqEqoXoXWjoXUlHXOGybUlosfsxkyBoXQHxwytoXoXoXEqEqEq +EqKxBnUNYXzVoXdfOGDsAzCnoXANKhoXLjVYPzAPCXUlUlEqEq +EqfgDpivezDVoXGUEwFbUlGPLCFeKhoXIjynCmdaGlllFtGiEq +EqBnhbAOezIzUloXoXoXoXMcoXIBBzoXIIPSCmVTMgJdJmGiEq +EqBnCznbezNVsTIQJJIQIQLxoXoXoXoXyJOiVJUlhBUZMROhEq +EqBnTFezezQpUloXoXoXoXGPoXRUPkoXRIOiRVUloXoXUlGiEq +EqfgDpJGTeUPoXPvVEVHUlEgchWuRpoXNmteENsvRoWLXzGiEq +EqKxBnluUGZaoXQRqlTBTrCnoXPBcuoXnMzpOiOiSEUloXEqEq +EqKxfgoXWjoXUlseqblWUlUgLCkwZdoXQHxwFVSEUloXEqEqEq +EqEqKxKxEqoXoXtNdSCWoXGPoXKqBzoXuuwpUloXoXEqEqEqEq +EqEqEqEqEqoXUljetgKDoXrPoXoXoXUlYHsJDMbebmbmEqEqEq +EqEqEqEqEqEqoXoXoXoXoXSthRcwZgszOupGSUbecmbmEqEqEq +EqEqEqEqEqEqEqEqoXoXUlFRUloXoXUlVSZJklfeoXEqEqEqEq +EqEqEqEqEqEqEqEqEqEqBSGiUlUlxFyySCOisYbebmbmEqEqEq +EqEqEqEqEqEqEqEqEqEqEqEqqhsHCqOulMOiQAbecmbmEqEqEq +EqEqEqEqEqEqEqEqEqEqEqEqEqoXUrIEOiOiklfeoXEqEqEqEq +EqEqEqEqEqEqEqEqEqEqEqEqEqoXUlEHOiOidpbebmbmEqEqEq +EqEqEqEqEqEqEqEqEqEqEqEqEqEqoXUlDKlKLPbecmbmEqEqEq +EqEqEqEqEqEqEqEqEqEqEqEqEqEqEqoXoXsHUloXoXEqEqEqEq +EqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqbcoXoXoXoXEqEqEq +EqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEqEq +"} diff --git a/modular_chomp/maps/submaps/shelters/SmallCombatShip-9x11.dmm b/modular_chomp/maps/submaps/shelters/SmallCombatShip-9x11.dmm new file mode 100644 index 0000000000..a07fe164e6 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/SmallCombatShip-9x11.dmm @@ -0,0 +1,43 @@ +"a" = (/turf/simulated/wall/shull,/area/survivalpod/superpose/SmallCombatShip) +"d" = (/obj/machinery/disperser/front{dir = 1},/turf/template_noop,/area/template_noop) +"f" = (/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SmallCombatShip) +"g" = (/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/SmallCombatShip) +"h" = (/obj/effect/catwalk_plated/dark,/turf/template_noop,/area/survivalpod/superpose/SmallCombatShip) +"l" = (/obj/structure/bed/chair/bay/comfy/red{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/SmallCombatShip) +"m" = (/turf/simulated/wall/rshull,/area/survivalpod/superpose/SmallCombatShip) +"o" = (/obj/structure/salvageable/machine,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SmallCombatShip) +"s" = (/obj/structure/closet/walllocker_double/medical/west,/obj/item/weapon/storage/firstaid,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2,/obj/item/roller,/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/window/reinforced/survival_pod,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SmallCombatShip) +"t" = (/obj/effect/catwalk_plated/dark,/obj/effect/catwalk_plated/dark,/turf/template_noop,/area/survivalpod/superpose/SmallCombatShip) +"u" = (/obj/machinery/porta_turret/stationary/syndie{faction = "neutral"},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/SmallCombatShip) +"w" = (/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/obj/structure/closet{name = "Survival closet"},/obj/structure/closet/walllocker_double/hydrant/east,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/SmallCombatShip) +"z" = (/obj/structure/salvageable/server,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SmallCombatShip) +"A" = (/obj/structure/shuttle/engine/heater,/turf/simulated/wall/shull,/area/survivalpod/superpose/SmallCombatShip) +"C" = (/obj/structure/closet/walllocker_double/kitchen/east{name = "Ration Cabinet"},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/window/reinforced/survival_pod,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SmallCombatShip) +"D" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SmallCombatShip) +"H" = (/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/SmallCombatShip) +"I" = (/obj/machinery/disperser/middle{dir = 1},/turf/template_noop,/area/template_noop) +"J" = (/obj/structure/salvageable/computer,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SmallCombatShip) +"L" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/shuttle/engine/heater,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/SmallCombatShip) +"M" = (/obj/structure/bed/chair/bay/comfy/red{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/SmallCombatShip) +"N" = (/turf/template_noop,/area/template_noop) +"O" = (/obj/machinery/atmospherics/unary/engine{dir = 1},/turf/template_noop,/area/survivalpod/superpose/SmallCombatShip) +"Q" = (/obj/machinery/disperser/back{dir = 1},/obj/structure/ship_munition/disperser_charge/explosive,/turf/simulated/wall/rshull,/area/survivalpod/superpose/SmallCombatShip) +"U" = (/obj/structure/bed/chair/bay/comfy/red{dir = 1},/obj/machinery/door/window/survival_pod{dir = 2},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SmallCombatShip) +"W" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular/open{dir = 4; id = "stargazer_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/SmallCombatShip) +"X" = (/obj/structure/fans/hardlight/colorable{color = "red"},/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = null; locked = 1; req_access = list(11)},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/SmallCombatShip) +"Y" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SmallCombatShip) +"Z" = (/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/structure/table/rack/shelf/steel,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SmallCombatShip) + +(1,1,1) = {" +NNNmNmNNN +NdmmWmmdN +mIWJozWIm +mQmsUCmQm +mmlYfDMmm +NWgYZDgWN +uawaaagau +NaHahXgaN +aaLahaLaa +aAOhthOAa +aONNNNNOa +"} diff --git a/modular_chomp/maps/submaps/shelters/SurvivalBarracks-11x11.dmm b/modular_chomp/maps/submaps/shelters/SurvivalBarracks-11x11.dmm new file mode 100644 index 0000000000..a18457a569 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/SurvivalBarracks-11x11.dmm @@ -0,0 +1,66 @@ +"a" = (/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/weapon/storage/box/survival/space,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/starcaster_news,/obj/item/device/starcaster_news,/obj/item/device/threadneedle,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/random/soap,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/storage/box/flare,/obj/machinery/smartfridge/survival_pod{pixel_y = 28},/obj/structure/table/steel_reinforced,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalBarracks) +"b" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/SurvivalBarracks) +"c" = (/obj/machinery/light{dir = 4},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalBarracks) +"d" = (/obj/structure/bed/double,/obj/item/weapon/bedsheet/hopdouble,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalBarracks) +"e" = (/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/structure/closet/walllocker_double/north{name = "Survival Cabinet"},/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/SurvivalBarracks) +"f" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalBarracks) +"g" = (/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalBarracks) +"h" = (/obj/structure/fans{pixel_y = 32},/obj/machinery/vending/loadout/clothing,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalBarracks) +"i" = (/obj/structure/bed/double,/obj/item/weapon/bedsheet/greendouble,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalBarracks) +"j" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/deck/cah{pixel_x = 2; pixel_y = 2},/obj/item/weapon/deck/cah/black{pixel_x = -2; pixel_y = -2},/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalBarracks) +"k" = (/obj/structure/bed/chair/comfy/blue{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalBarracks) +"l" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/deck/cards,/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalBarracks) +"m" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 28},/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalBarracks) +"n" = (/obj/structure/sign/mining,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalBarracks) +"o" = (/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalBarracks) +"p" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalBarracks) +"q" = (/obj/structure/bed/chair/comfy/blue{dir = 4},/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalBarracks) +"r" = (/obj/structure/bed/double,/obj/item/weapon/bedsheet/orangedouble,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalBarracks) +"s" = (/obj/machinery/door/airlock/maintenance/common{name = "Dorm"},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalBarracks) +"t" = (/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalBarracks) +"u" = (/obj/structure/table/standard,/obj/item/device/flashlight/lamp{pixel_x = -8; pixel_y = 13},/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = 5; pixel_y = 6},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalBarracks) +"v" = (/obj/structure/closet/walllocker_double/south{name = "Survival Cabinet"},/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/effect/floor_decal/spline/fancy/wood{dir = 9},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/turf/simulated/floor/carpet/gaycarpet,/area/survivalpod/superpose/SurvivalBarracks) +"w" = (/obj/machinery/vending/fitness{dir = 1},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalBarracks) +"x" = (/obj/item/device/gps/computer{pixel_y = 0},/obj/structure/table/steel_reinforced,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalBarracks) +"y" = (/obj/structure/closet/walllocker_double/south{name = "Survival Cabinet"},/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/effect/floor_decal/spline/fancy/wood{dir = 9},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/turf/simulated/floor/carpet/blue,/area/survivalpod/superpose/SurvivalBarracks) +"z" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille,/obj/structure/curtain/black,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalBarracks) +"A" = (/obj/structure/bed/chair/comfy/blue{dir = 8},/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalBarracks) +"B" = (/obj/machinery/vending/snack{dir = 1},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalBarracks) +"C" = (/obj/structure/fans/tiny,/obj/effect/floor_decal/industrial/danger/full,/obj/machinery/door/airlock/voidcraft/survival_pod,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalBarracks) +"D" = (/obj/structure/bed/double,/obj/item/weapon/bedsheet/browndouble,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalBarracks) +"E" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/carpet/gaycarpet,/area/survivalpod/superpose/SurvivalBarracks) +"F" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/carpet/oracarpet,/area/survivalpod/superpose/SurvivalBarracks) +"G" = (/obj/structure/sign/mining/survival,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalBarracks) +"H" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalBarracks) +"I" = (/turf/simulated/shuttle/wall/voidcraft/survival,/area/survivalpod/superpose/SurvivalBarracks) +"J" = (/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalBarracks) +"K" = (/obj/machinery/light{dir = 8},/obj/machinery/vending/wallmed1{dir = 8; pixel_x = 25; pixel_y = -1},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalBarracks) +"L" = (/obj/structure/sign/mining/survival{dir = 1},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalBarracks) +"M" = (/obj/machinery/light{dir = 4},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalBarracks) +"N" = (/obj/machinery/vending/loadout/gadget,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalBarracks) +"O" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/item/weapon/pen,/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalBarracks) +"P" = (/obj/machinery/vending/coffee{dir = 1},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalBarracks) +"Q" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/carpet/blue,/area/survivalpod/superpose/SurvivalBarracks) +"R" = (/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/structure/closet/walllocker_double/north{name = "Survival Cabinet"},/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/turf/simulated/floor/carpet/oracarpet,/area/survivalpod/superpose/SurvivalBarracks) +"S" = (/obj/structure/sign/mining/survival{dir = 8},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalBarracks) +"T" = (/obj/machinery/vending/cigarette{dir = 1},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalBarracks) +"U" = (/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalBarracks) +"V" = (/obj/structure/sign/mining/survival{dir = 4},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalBarracks) +"W" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/pill_bottle/dice_nerd,/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalBarracks) +"X" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/industrial/warning,/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalBarracks) +"Y" = (/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalBarracks) +"Z" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalBarracks) + +(1,1,1) = {" +ItLYYCYYntI +zuoDtptRZuz +tHvEsJsFodt +SttttcttttV +zuoitJteZuz +YHyQsJsborY +YttttKttttY +YggmfJNhaxY +SkOjAJUUUMV +tqlWAXwBPTt +InzzYCYYGtI +"} diff --git a/modular_chomp/maps/submaps/shelters/SurvivalCargo-11x11.dmm b/modular_chomp/maps/submaps/shelters/SurvivalCargo-11x11.dmm new file mode 100644 index 0000000000..c07cdb1db3 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/SurvivalCargo-11x11.dmm @@ -0,0 +1,726 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ag" = ( +/obj/structure/table/survival_pod, +/obj/structure/window/reinforced/survival_pod{ + dir = 8; + icon_state = "pwindow" + }, +/obj/machinery/recharger{ + pixel_y = 0; + pixel_x = -5 + }, +/obj/machinery/recharger{ + pixel_y = 0; + pixel_x = 6 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalCargo) +"cF" = ( +/obj/machinery/power/port_gen/pacman, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalCargo) +"ea" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalCargo) +"ex" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/crate/freezer, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalCargo) +"eZ" = ( +/obj/machinery/floodlight, +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalCargo) +"fm" = ( +/obj/item/weapon/shovel, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/pickaxe, +/obj/item/weapon/tool/crowbar, +/obj/item/stack/flag/yellow{ + pixel_x = 4 + }, +/obj/item/stack/flag/red, +/obj/item/stack/flag/green{ + pixel_x = -4 + }, +/obj/structure/table/rack/shelf/steel, +/obj/structure/window/reinforced/survival_pod{ + opacity = 1 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 8; + icon_state = "pwindow" + }, +/obj/item/device/gps/mining{ + pixel_x = -5 + }, +/obj/item/device/gps/mining{ + pixel_x = 5 + }, +/obj/item/weapon/storage/belt/utility/full, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalCargo) +"gj" = ( +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/light, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalCargo) +"gG" = ( +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalCargo) +"ix" = ( +/obj/structure/ore_box, +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalCargo) +"lW" = ( +/obj/vehicle/train/trolley{ + dir = 2 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalCargo) +"mS" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/crate/medical, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalCargo) +"ne" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/crate, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalCargo) +"np" = ( +/obj/structure/sign/mining/survival, +/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner, +/area/survivalpod/superpose/SurvivalCargo) +"nM" = ( +/obj/item/weapon/mining_scanner, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/head/helmet/space/void/mining, +/obj/structure/table/rack/shelf/steel, +/obj/item/device/suit_cooling_unit, +/obj/structure/window/reinforced/survival_pod{ + opacity = 1 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 8; + icon_state = "pwindow" + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalCargo) +"op" = ( +/obj/structure/sign/mining/survival{ + dir = 8 + }, +/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner, +/area/survivalpod/superpose/SurvivalCargo) +"or" = ( +/obj/machinery/autolathe, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalCargo) +"oQ" = ( +/obj/machinery/sleeper/survival_pod, +/obj/structure/window/reinforced/survival_pod{ + dir = 8; + icon_state = "pwindow" + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalCargo) +"pr" = ( +/obj/structure/ore_box, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalCargo) +"pI" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/crate/large, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalCargo) +"qh" = ( +/obj/structure/bed/pod, +/obj/item/weapon/bedsheet/ce, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalCargo) +"qp" = ( +/obj/item/weapon/mining_scanner, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/head/helmet/space/void/mining, +/obj/structure/table/rack/shelf/steel, +/obj/item/device/suit_cooling_unit, +/obj/structure/window/reinforced/survival_pod{ + dir = 1; + icon_state = "pwindow" + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 8; + icon_state = "pwindow" + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalCargo) +"qu" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "SP-Mining" + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalCargo) +"qP" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalCargo) +"qR" = ( +/obj/machinery/power/apc/alarms_hidden{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/ore_box, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalCargo) +"rc" = ( +/obj/item/device/gps/computer, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalCargo) +"sz" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/crate, +/obj/machinery/light, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalCargo) +"vz" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalCargo) +"xp" = ( +/obj/structure/fans/tiny, +/obj/effect/floor_decal/industrial/danger/full, +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalCargo) +"xx" = ( +/obj/structure/sign/mining/survival{ + dir = 1 + }, +/turf/simulated/shuttle/wall/voidcraft/orange, +/area/survivalpod/superpose/SurvivalCargo) +"yl" = ( +/obj/machinery/door/window/survival_pod{ + dir = 2; + req_one_access = null + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalCargo) +"Ag" = ( +/turf/simulated/floor/tiled/techmaint, +/area/survivalpod/superpose/SurvivalCargo) +"By" = ( +/obj/item/weapon/storage/backpack/messenger, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/reagent_containers/food/snacks/sosjerky, +/obj/item/weapon/cell/device/hyper, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy, +/obj/item/weapon/flame/lighter/random, +/obj/item/weapon/storage/box/survival/space, +/obj/item/device/radio, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/weapon/reagent_containers/pill/dylovene, +/obj/item/weapon/reagent_containers/pill/dylovene, +/obj/item/device/flashlight/maglight, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/random/soap, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, +/obj/item/device/fbp_backup_cell, +/obj/item/device/pda, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/device/starcaster_news, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/item/device/suit_cooling_unit/emergency, +/obj/item/device/gps, +/obj/structure/closet/walllocker_double/east, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalCargo) +"BP" = ( +/obj/structure/sign/mining/survival{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner, +/area/survivalpod/superpose/SurvivalCargo) +"BT" = ( +/obj/machinery/mining/brace, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalCargo) +"Cq" = ( +/obj/machinery/conveyor_switch{ + id = "SP-Mining"; + name = "Disposal Sorter"; + pixel_y = 2 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalCargo) +"Ct" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalCargo) +"Cu" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/gun/energy/locked/frontier/carbine{ + pixel_y = 7 + }, +/obj/item/weapon/gun/energy/locked/frontier/carbine{ + pixel_y = -4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalCargo) +"Di" = ( +/obj/structure/sign/mining, +/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner, +/area/survivalpod/superpose/SurvivalCargo) +"Dp" = ( +/obj/structure/table/steel, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/wrench, +/obj/machinery/recharger, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalCargo) +"Eb" = ( +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalCargo) +"Er" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + layer = 3 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalCargo) +"EX" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/crate/internals, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalCargo) +"Fy" = ( +/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner, +/area/survivalpod/superpose/SurvivalCargo) +"Hi" = ( +/obj/item/weapon/shovel, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/pickaxe, +/obj/item/weapon/tool/crowbar, +/obj/item/stack/flag/yellow{ + pixel_x = 4 + }, +/obj/item/stack/flag/red, +/obj/item/stack/flag/green{ + pixel_x = -4 + }, +/obj/structure/table/rack/shelf/steel, +/obj/structure/window/reinforced/survival_pod{ + dir = 1; + icon_state = "pwindow" + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 8; + icon_state = "pwindow" + }, +/obj/item/device/gps/mining{ + pixel_x = -5 + }, +/obj/item/device/gps/mining{ + pixel_x = 5 + }, +/obj/item/weapon/storage/belt/utility/full, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalCargo) +"HC" = ( +/obj/structure/closet/secure_closet/miner{ + locked = 0 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalCargo) +"JT" = ( +/obj/structure/fans, +/obj/structure/window/reinforced/survival_pod{ + dir = 8; + icon_state = "pwindow" + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalCargo) +"Lz" = ( +/obj/structure/closet/crate, +/obj/item/stack/material/phoron{ + amount = 25 + }, +/obj/item/stack/material/phoron{ + amount = 25 + }, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/obj/item/stack/material/copper{ + amount = 25 + }, +/obj/structure/window/reinforced/survival_pod{ + opacity = 1 + }, +/obj/machinery/vending/wallmed1{ + dir = 8; + pixel_x = 22; + pixel_y = 3 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalCargo) +"Mi" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalCargo) +"ND" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/dispenser/oxygen, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalCargo) +"Or" = ( +/turf/simulated/shuttle/wall/voidcraft/survival, +/area/survivalpod/superpose/SurvivalCargo) +"Qg" = ( +/turf/simulated/shuttle/wall/voidcraft/orange, +/area/survivalpod/superpose/SurvivalCargo) +"Qq" = ( +/obj/machinery/door/airlock/multi_tile/metal/mait{ + icon_state = "door_locked"; + id_tag = "SP-CargoHatch"; + locked = 1; + name = "Rear Hatch" + }, +/obj/machinery/button/remote/airlock{ + desiredstate = 1; + dir = 4; + id = "SP-CargoHatch"; + name = "Rear Hatch Control"; + pixel_x = -26; + req_access = null; + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/survivalpod/superpose/SurvivalCargo) +"Tx" = ( +/obj/machinery/smartfridge/survival_pod, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/menu9, +/obj/item/weapon/storage/mre/menu9, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/device/fbp_backup_cell, +/obj/item/device/fbp_backup_cell, +/obj/item/device/fbp_backup_cell, +/obj/item/device/fbp_backup_cell, +/obj/item/device/fbp_backup_cell, +/obj/item/weapon/storage/pill_bottle/antitox, +/obj/item/weapon/storage/box/survival/space, +/obj/item/device/healthanalyzer, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/extinguisher/mini, +/obj/item/weapon/extinguisher/mini, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/box/survival/space, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/starcaster_news, +/obj/item/device/starcaster_news, +/obj/item/device/threadneedle, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/weapon/storage/pill_bottle/spaceacillin, +/obj/random/soap, +/obj/item/weapon/material/knife/machete/hatchet, +/obj/item/weapon/storage/box/flare, +/turf/simulated/shuttle/floor/voidcraft, +/area/survivalpod/superpose/SurvivalCargo) +"Ue" = ( +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalCargo) +"UD" = ( +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/mecha/working/ripley/mining/old, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalCargo) +"Vl" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/gun/energy/locked/phasegun/rifle{ + pixel_y = 3 + }, +/obj/item/weapon/gun/energy/locked/phasegun/rifle{ + pixel_y = -4 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalCargo) +"VF" = ( +/obj/machinery/mining/drill/loaded, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalCargo) +"VQ" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "SP-Mining" + }, +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalCargo) +"VS" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/conveyor{ + dir = 1; + id = "SP-Mining" + }, +/turf/simulated/floor/tiled/techmaint, +/area/survivalpod/superpose/SurvivalCargo) +"Wa" = ( +/obj/structure/sign/mining, +/turf/simulated/shuttle/wall/voidcraft/orange, +/area/survivalpod/superpose/SurvivalCargo) +"WH" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 8 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/obj/structure/window/reinforced/survival_pod, +/obj/structure/grille, +/obj/structure/curtain/black, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalCargo) +"WY" = ( +/obj/structure/closet/secure_closet/miner{ + locked = 0 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalCargo) +"Ye" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/floodlight, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalCargo) +"Zt" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 28 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalCargo) +"ZM" = ( +/obj/vehicle/train/engine{ + dir = 2 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalCargo) + +(1,1,1) = {" +Or +Fy +op +xp +Qg +Qg +Qg +op +Or +Cq +eZ +"} +(2,1,1) = {" +Qg +BT +ND +qP +Er +qu +qu +qu +VS +VQ +VQ +"} +(3,1,1) = {" +xx +VF +vz +Eb +Ct +Ct +Ct +Ct +Fy +Zt +ix +"} +(4,1,1) = {" +Qg +BT +Ye +Eb +Ct +mS +Ct +sz +Fy +Dp +ix +"} +(5,1,1) = {" +Fy +Cu +Ue +Eb +pI +EX +ex +ne +Or +Di +Or +"} +(6,1,1) = {" +WH +Vl +Ue +Eb +Eb +Eb +Eb +Eb +Eb +Mi +Qq +"} +(7,1,1) = {" +Fy +Fy +qR +pr +lW +lW +lW +ZM +Eb +Mi +Ag +"} +(8,1,1) = {" +Qg +JT +oQ +ag +qp +nM +Hi +fm +gG +gj +np +"} +(9,1,1) = {" +Wa +Tx +ea +gG +gG +gG +gG +yl +gG +gG +WH +"} +(10,1,1) = {" +Qg +rc +qh +or +WY +HC +cF +Lz +By +UD +Fy +"} +(11,1,1) = {" +Or +Fy +WH +BP +Qg +Qg +Qg +BP +Fy +Fy +Or +"} diff --git a/modular_chomp/maps/submaps/shelters/SurvivalDIY-11x11.dmm b/modular_chomp/maps/submaps/shelters/SurvivalDIY-11x11.dmm new file mode 100644 index 0000000000..4089c28c44 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/SurvivalDIY-11x11.dmm @@ -0,0 +1,343 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalDIY_11x11) +"b" = ( +/obj/machinery/vending/engivend{ + emagged = 1; + req_access = null; + req_log_access = null + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalDIY_11x11) +"e" = ( +/obj/structure/inflatable, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalDIY_11x11) +"g" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalDIY_11x11) +"h" = ( +/obj/structure/closet/crate, +/obj/fiftyspawner/wood, +/obj/fiftyspawner/wood, +/obj/fiftyspawner/wood/sif, +/obj/fiftyspawner/wood/sif, +/obj/fiftyspawner/turcarpet, +/obj/fiftyspawner/tealcarpet, +/obj/fiftyspawner/sblucarpet, +/obj/fiftyspawner/purcarpet, +/obj/fiftyspawner/oracarpet, +/obj/fiftyspawner/blucarpet, +/obj/fiftyspawner/marble, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/fiftyspawner/cardboard, +/obj/fiftyspawner/cardboard, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalDIY_11x11) +"l" = ( +/obj/structure/reagent_dispensers/fueltank/high, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalDIY_11x11) +"m" = ( +/obj/structure/closet/crate, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalDIY_11x11) +"n" = ( +/obj/structure/inflatable/door, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalDIY_11x11) +"q" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + locked = 0 + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalDIY_11x11) +"t" = ( +/obj/vehicle/train/engine/quadbike/built{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalDIY_11x11) +"u" = ( +/obj/item/weapon/storage/backpack/messenger, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/reagent_containers/food/snacks/sosjerky, +/obj/item/weapon/cell/device/hyper, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy, +/obj/item/weapon/flame/lighter/random, +/obj/item/weapon/storage/box/survival/space, +/obj/item/device/radio, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/weapon/reagent_containers/pill/dylovene, +/obj/item/weapon/reagent_containers/pill/dylovene, +/obj/item/device/flashlight/maglight, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/random/soap, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, +/obj/item/device/fbp_backup_cell, +/obj/item/device/pda, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/device/starcaster_news, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/item/device/suit_cooling_unit/emergency, +/obj/item/device/gps, +/obj/structure/closet{ + name = "Survival closet" + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalDIY_11x11) +"v" = ( +/obj/machinery/autolathe, +/obj/item/weapon/rcd/advanced/loaded{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/weapon/rcd_ammo/large, +/obj/item/weapon/rcd_ammo/large, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalDIY_11x11) +"w" = ( +/obj/machinery/power/port_gen/pacman, +/obj/item/stack/material/phoron{ + amount = 25 + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalDIY_11x11) +"y" = ( +/obj/structure/closet/crate, +/obj/fiftyspawner/plasteel, +/obj/fiftyspawner/plasteel, +/obj/fiftyspawner/phoronrglass, +/obj/fiftyspawner/phoronrglass, +/obj/item/stack/material/lead{ + amount = 50 + }, +/obj/item/stack/material/lead{ + amount = 50 + }, +/obj/fiftyspawner/gold, +/obj/fiftyspawner/phoron, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalDIY_11x11) +"B" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalDIY_11x11) +"F" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalDIY_11x11) +"J" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalDIY_11x11) +"K" = ( +/obj/vehicle/train/trolley{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalDIY_11x11) +"O" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalDIY_11x11) +"P" = ( +/obj/structure/closet/toolcloset, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/device/flashlight, +/obj/item/weapon/storage/belt/utility/full/multitool, +/obj/item/weapon/cell/high, +/obj/item/weapon/cell/high, +/obj/item/weapon/module/power_control, +/obj/item/weapon/module/cell_power, +/obj/item/weapon/module/card_reader, +/obj/item/weapon/module/id_auth, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalDIY_11x11) +"S" = ( +/obj/vehicle/train/engine, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalDIY_11x11) +"X" = ( +/obj/machinery/vending/tool{ + emagged = 1; + req_log_access = null + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalDIY_11x11) +"Z" = ( +/obj/structure/reagent_dispensers/watertank/high, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalDIY_11x11) + +(1,1,1) = {" +e +e +e +e +e +e +e +e +e +e +e +"} +(2,1,1) = {" +e +K +a +a +P +X +a +a +w +a +e +"} +(3,1,1) = {" +e +K +a +a +P +b +a +a +v +a +e +"} +(4,1,1) = {" +e +K +a +a +q +O +a +a +a +a +e +"} +(5,1,1) = {" +e +S +t +a +a +a +a +a +a +a +e +"} +(6,1,1) = {" +e +a +a +a +a +m +y +g +B +F +e +"} +(7,1,1) = {" +e +n +n +e +a +m +u +l +B +F +e +"} +(8,1,1) = {" +e +a +a +e +a +m +u +Z +B +J +e +"} +(9,1,1) = {" +e +a +a +e +a +h +h +Z +B +J +e +"} +(10,1,1) = {" +e +a +a +e +a +a +a +a +a +a +e +"} +(11,1,1) = {" +e +n +n +e +e +e +e +e +e +e +e +"} diff --git a/modular_chomp/maps/submaps/shelters/SurvivalDIY-7x7.dmm b/modular_chomp/maps/submaps/shelters/SurvivalDIY-7x7.dmm new file mode 100644 index 0000000000..731d8bfcaa --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/SurvivalDIY-7x7.dmm @@ -0,0 +1,25 @@ +"a" = (/obj/structure/closet/crate,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_7x7) +"c" = (/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/obj/structure/closet{name = "Survival closet"},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_7x7) +"d" = (/obj/machinery/autolathe,/obj/item/weapon/rcd/loaded{pixel_x = -4; pixel_y = 10},/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_7x7) +"g" = (/obj/structure/inflatable/door,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_7x7) +"h" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_7x7) +"u" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_7x7) +"w" = (/obj/machinery/power/port_gen/pacman,/obj/item/stack/material/phoron{amount = 25},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_7x7) +"A" = (/obj/structure/inflatable,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_7x7) +"C" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_7x7) +"D" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_7x7) +"G" = (/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_7x7) +"H" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_7x7) +"M" = (/obj/structure/closet/crate,/obj/fiftyspawner/wood,/obj/fiftyspawner/wood,/obj/fiftyspawner/wood/sif,/obj/fiftyspawner/wood/sif,/obj/fiftyspawner/turcarpet,/obj/fiftyspawner/tealcarpet,/obj/fiftyspawner/sblucarpet,/obj/fiftyspawner/purcarpet,/obj/fiftyspawner/oracarpet,/obj/fiftyspawner/blucarpet,/obj/fiftyspawner/marble,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/fiftyspawner/cardboard,/obj/fiftyspawner/cardboard,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_7x7) +"S" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_7x7) +"T" = (/obj/structure/closet/toolcloset,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/item/device/flashlight,/obj/item/weapon/storage/belt/utility/full/multitool,/obj/item/weapon/cell/high,/obj/item/weapon/cell/high,/obj/item/weapon/module/power_control,/obj/item/weapon/module/cell_power,/obj/item/weapon/module/card_reader,/obj/item/weapon/module/id_auth,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_7x7) + +(1,1,1) = {" +AAAAAAA +ATcGgGg +AGGGgGg +AdGwAAA +AGGCShA +AaMDHuA +AAAAAAA +"} diff --git a/modular_chomp/maps/submaps/shelters/SurvivalDIY-9x9.dmm b/modular_chomp/maps/submaps/shelters/SurvivalDIY-9x9.dmm new file mode 100644 index 0000000000..8e06e3c308 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/SurvivalDIY-9x9.dmm @@ -0,0 +1,31 @@ +"a" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9) +"c" = (/obj/structure/closet/crate,/obj/fiftyspawner/plasteel,/obj/fiftyspawner/plasteel,/obj/fiftyspawner/phoronrglass,/obj/fiftyspawner/phoronrglass,/obj/item/stack/material/lead{amount = 50},/obj/item/stack/material/lead{amount = 50},/obj/fiftyspawner/gold,/obj/fiftyspawner/phoron,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9) +"f" = (/obj/structure/closet/crate,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9) +"g" = (/obj/machinery/autolathe,/obj/item/weapon/rcd/loaded{pixel_x = -4; pixel_y = 10},/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9) +"h" = (/obj/structure/inflatable,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9) +"i" = (/obj/structure/closet/secure_closet/engineering_welding{locked = 0},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9) +"o" = (/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/obj/structure/closet{name = "Survival closet"},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9) +"q" = (/obj/vehicle/train/engine/quadbike/built{dir = 4},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9) +"u" = (/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9) +"y" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9) +"z" = (/obj/structure/closet/toolcloset,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/item/device/flashlight,/obj/item/weapon/storage/belt/utility/full/multitool,/obj/item/weapon/cell/high,/obj/item/weapon/cell/high,/obj/item/weapon/module/power_control,/obj/item/weapon/module/cell_power,/obj/item/weapon/module/card_reader,/obj/item/weapon/module/id_auth,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9) +"C" = (/obj/structure/closet/crate,/obj/fiftyspawner/wood,/obj/fiftyspawner/wood,/obj/fiftyspawner/wood/sif,/obj/fiftyspawner/wood/sif,/obj/fiftyspawner/turcarpet,/obj/fiftyspawner/tealcarpet,/obj/fiftyspawner/sblucarpet,/obj/fiftyspawner/purcarpet,/obj/fiftyspawner/oracarpet,/obj/fiftyspawner/blucarpet,/obj/fiftyspawner/marble,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/fiftyspawner/cardboard,/obj/fiftyspawner/cardboard,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9) +"F" = (/obj/machinery/power/port_gen/pacman,/obj/item/stack/material/phoron{amount = 25},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9) +"H" = (/obj/structure/inflatable/door,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9) +"I" = (/obj/structure/closet/secure_closet/engineering_electrical,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9) +"M" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9) +"Q" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9) +"T" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9) +"V" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDIY_9x9) + +(1,1,1) = {" +hhhhhhhhh +hziIqHuuH +huuuuHuuH +hFguuhhhh +huuuuuuuh +hufCuVTuh +hufcuaauh +huoMuQyuh +hhhhhhhhh +"} diff --git a/modular_chomp/maps/submaps/shelters/SurvivalDinner-11x11.dmm b/modular_chomp/maps/submaps/shelters/SurvivalDinner-11x11.dmm new file mode 100644 index 0000000000..6ef2ef9621 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/SurvivalDinner-11x11.dmm @@ -0,0 +1,78 @@ +"aj" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{dir = 2; id = "SP-kitchen"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalDinner) +"bc" = (/obj/machinery/vending/dinnerware,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalDinner) +"ca" = (/obj/machinery/recharger/wallcharger{pixel_y = 35},/obj/machinery/recharger/wallcharger{pixel_y = 22},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalDinner) +"cv" = (/obj/machinery/door/airlock/maintenance/cargo,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalDinner) +"cI" = (/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalDinner) +"dw" = (/obj/machinery/button/holosign{id = "SP-baropen"; name = "Open Sign"; pixel_x = -27; pixel_y = 5},/obj/machinery/button/remote/blast_door{id = "SP-kitchen"; name = "Kitchen Shutters Control"; pixel_x = -27; pixel_y = -5; req_access = list(28)},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalDinner) +"dR" = (/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalDinner) +"fP" = (/obj/structure/table/standard,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/spoon{pixel_x = 2},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalDinner) +"gP" = (/obj/machinery/appliance/cooker/fryer,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalDinner) +"jg" = (/obj/structure/table/marble,/obj/machinery/cash_register/civilian{dir = 1},/obj/machinery/door/blast/shutters{dir = 2; id = "SP-kitchen"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalDinner) +"jx" = (/turf/simulated/shuttle/wall/voidcraft/survival,/area/survivalpod/superpose/SurvivalDinner) +"jU" = (/obj/machinery/vending/coffee{dir = 8; pixel_x = 5},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalDinner) +"kd" = (/obj/structure/sign/mining/survival{dir = 4},/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalDinner) +"lU" = (/obj/structure/bed/pod,/obj/item/weapon/bedsheet/green,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalDinner) +"lY" = (/obj/structure/bed/chair/bay/chair/padded/green{dir = 1},/obj/machinery/computer/security/telescreen/entertainment{icon_state = "screen"; layer = 4; pixel_y = -32},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalDinner) +"mK" = (/obj/structure/sink/kitchen{dir = 8; pixel_x = -13},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalDinner) +"nC" = (/obj/structure/sign/mining/survival,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalDinner) +"nJ" = (/obj/machinery/vending/cigarette{dir = 8; pixel_x = 5},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalDinner) +"oj" = (/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalDinner) +"pf" = (/obj/structure/sign/mining/survival{dir = 8},/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalDinner) +"pi" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille,/obj/structure/curtain/black,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalDinner) +"pC" = (/obj/structure/table/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/item/modular_computer/laptop/preset/custom_loadout/standard{pixel_x = 1; pixel_y = 15},/obj/machinery/recharger{pixel_x = -5; pixel_y = -3},/obj/item/pizzavoucher{pixel_x = 7; pixel_y = -4},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalDinner) +"qj" = (/obj/structure/bed/chair/bay/chair/padded/green{dir = 1},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalDinner) +"sl" = (/obj/machinery/appliance/cooker/grill,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalDinner) +"sz" = (/obj/machinery/vending/cola{dir = 8; pixel_x = 5},/obj/machinery/light{dir = 4},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalDinner) +"tC" = (/obj/machinery/vending/snack{dir = 4; pixel_x = -6},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalDinner) +"tN" = (/obj/structure/fans/tiny,/obj/effect/floor_decal/industrial/danger/full,/obj/machinery/door/airlock/voidcraft/vertical,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalDinner) +"vK" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 3},/obj/machinery/chemical_dispenser/bar_coffee/full{pixel_y = 17},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalDinner) +"wc" = (/obj/structure/sign/mining/survival{dir = 1},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalDinner) +"xW" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_soft/full{pixel_x = 1; pixel_y = 17},/obj/item/weapon/book/manual/chef_recipes,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalDinner) +"xX" = (/obj/machinery/appliance/cooker/oven,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalDinner) +"ya" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalDinner) +"zf" = (/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalDinner) +"zl" = (/obj/machinery/computer/security/telescreen/entertainment{icon_state = "screen"; pixel_y = 32},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalDinner) +"zv" = (/obj/structure/bed/chair/bay/chair/padded/green,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalDinner) +"Av" = (/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalDinner) +"Bw" = (/obj/structure/table/standard,/obj/item/device/starcaster_news{pixel_x = 8},/obj/item/device/starcaster_news{pixel_x = -6; pixel_y = 10},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalDinner) +"CG" = (/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "smartfridge"; icon_contents = "boxes"; icon_state = "smartfridge"; name = "Advanced storage"; pixel_y = -1},/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer/meteor,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer/meteor,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer/meteor,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer/meteor,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer/silverdragon,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer/silverdragon,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer/silverdragon,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer/silverdragon,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/litebeer,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/litebeer,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/litebeer,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/litebeer,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/sugar,/obj/item/weapon/reagent_containers/food/condiment/sugar,/obj/item/weapon/reagent_containers/food/condiment/sugar,/obj/item/weapon/reagent_containers/food/condiment/sugar,/obj/item/weapon/reagent_containers/food/condiment/spacespice,/obj/item/weapon/reagent_containers/food/condiment/spacespice,/obj/item/weapon/reagent_containers/food/drinks/milk,/obj/item/weapon/reagent_containers/food/drinks/milk,/obj/item/weapon/reagent_containers/food/drinks/milk,/obj/item/weapon/reagent_containers/food/drinks/milk,/obj/item/weapon/reagent_containers/food/drinks/soymilk,/obj/item/weapon/reagent_containers/food/drinks/soymilk,/obj/item/weapon/reagent_containers/food/drinks/soymilk,/obj/item/weapon/reagent_containers/food/drinks/soymilk,/obj/item/weapon/storage/fancy/egg_box,/obj/item/weapon/storage/fancy/egg_box,/obj/item/weapon/storage/fancy/egg_box,/obj/item/weapon/storage/fancy/egg_box,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose,/obj/item/weapon/reagent_containers/food/snacks/meat/syntiflesh,/obj/item/weapon/reagent_containers/food/snacks/meat/syntiflesh,/obj/item/weapon/reagent_containers/food/snacks/meat/syntiflesh,/obj/item/weapon/reagent_containers/food/snacks/meat/syntiflesh,/obj/item/weapon/reagent_containers/food/snacks/meat/syntiflesh,/obj/item/weapon/reagent_containers/food/snacks/meat/syntiflesh,/obj/item/weapon/reagent_containers/food/snacks/meat/syntiflesh,/obj/item/weapon/reagent_containers/food/snacks/meat/syntiflesh,/obj/item/weapon/reagent_containers/food/snacks/meat/syntiflesh,/obj/item/weapon/reagent_containers/food/snacks/meat/syntiflesh,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalDinner) +"DC" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/snacks/mint,/obj/item/weapon/packageWrap,/obj/item/weapon/reagent_containers/dropper,/obj/machinery/chemical_dispenser/bar_alc/full{pixel_x = -1; pixel_y = 17},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalDinner) +"EM" = (/obj/structure/disposalpipe/segment,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalDinner) +"GB" = (/obj/machinery/smartfridge/survival_pod,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/weapon/storage/box/survival/space,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/machinery/light{dir = 1},/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/starcaster_news,/obj/item/device/starcaster_news,/obj/item/device/threadneedle,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/random/soap,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/storage/box/flare,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalDinner) +"GM" = (/obj/machinery/sleeper/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalDinner) +"Hd" = (/obj/machinery/gibber,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalDinner) +"HI" = (/obj/structure/table/marble,/obj/machinery/microwave{pixel_x = 2; pixel_y = 17},/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/obj/item/weapon/reagent_containers/food/condiment/enzyme,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalDinner) +"Ka" = (/obj/structure/bed/chair/bay/chair/padded/green{dir = 1},/obj/machinery/vending/wallmed1{dir = 1; name = "Emergency NanoMed"; pixel_y = -25},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalDinner) +"KE" = (/obj/effect/floor_decal/industrial/loading{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalDinner) +"Lr" = (/obj/structure/disposalpipe/segment,/turf/simulated/shuttle/wall/voidcraft/survival,/area/survivalpod/superpose/SurvivalDinner) +"LE" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"; pixel_x = -5},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalDinner) +"My" = (/obj/structure/sign/mining/survival{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalDinner) +"MD" = (/obj/machinery/door/window/survival_pod{dir = 8},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalDinner) +"Pp" = (/obj/machinery/vending/fitness{dir = 4; pixel_x = -5},/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalDinner) +"QD" = (/obj/item/device/gps/computer,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalDinner) +"QP" = (/obj/machinery/disposal,/obj/effect/floor_decal/industrial/warning/full,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalDinner) +"Rm" = (/obj/machinery/newscaster{pixel_y = 30},/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalDinner) +"RQ" = (/obj/structure/sign/mining/survival{dir = 4},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalDinner) +"Su" = (/obj/structure/sign/mining,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalDinner) +"SG" = (/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalDinner) +"SV" = (/obj/structure/table/standard,/obj/item/weapon/deck/cards,/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk{pixel_y = 11},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalDinner) +"Th" = (/obj/structure/table/marble,/obj/machinery/reagentgrinder{pixel_x = 10; pixel_y = 19},/obj/item/weapon/material/knife/butch,/obj/item/weapon/material/kitchen/rollingpin,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalDinner) +"Um" = (/obj/structure/tubes,/obj/machinery/icecream_vat,/obj/machinery/power/apc/alarms_hidden{dir = 4; pixel_x = 20},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalDinner) +"Wc" = (/obj/structure/table/standard,/obj/item/weapon/deck/cah{pixel_x = 2; pixel_y = 2},/obj/item/weapon/deck/cah/black{pixel_x = -2; pixel_y = -2},/obj/item/weapon/reagent_containers/food/drinks/smallchocmilk{pixel_y = 11},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalDinner) +"Xo" = (/obj/machinery/media/jukebox,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalDinner) +"Yg" = (/obj/structure/fans,/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalDinner) +"ZN" = (/obj/machinery/holosign/bar{id = "SP-baropen"},/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalDinner) + +(1,1,1) = {" +jxAvAvwcAvAvAvSuAvAvjx +cIgPslxXCGHILEYgGBQDcI +piojojojojojojGMKElUpi +pfmKvKThxWDCojpCojUmkd +AvdwojojojojojMDdRHdAv +ZNbcajjgajcIXocIcvcIZN +tNyaSGSGSGzlSGcaSGRmtN +MyQPzfzvzvzvzvzvzfnJRQ +EMPpzffPSVBwWcfPzfszcI +EMtCzfqjqjlYqjKazfjUcI +LrAvpiSupiAvpinCpiAvjx +"} diff --git a/modular_chomp/maps/submaps/shelters/SurvivalEngineering-9x9.dmm b/modular_chomp/maps/submaps/shelters/SurvivalEngineering-9x9.dmm new file mode 100644 index 0000000000..b02ec41b43 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/SurvivalEngineering-9x9.dmm @@ -0,0 +1,63 @@ +"a" = (/turf/simulated/shuttle/wall/voidcraft/survival,/area/survivalpod/superpose/SurvivalEngineering) +"b" = (/obj/structure/fans/tiny,/obj/effect/floor_decal/industrial/danger/full,/obj/machinery/door/airlock/voidcraft/survival_pod,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalEngineering) +"c" = (/obj/structure/table/survival_pod,/obj/item/modular_computer/laptop/preset/custom_loadout/advanced,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalEngineering) +"d" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/vending/wallmed1/public{pixel_y = 17},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalEngineering) +"e" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/port_gen/pacman,/obj/machinery/newscaster{layer = 3.3; pixel_y = -27},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalEngineering) +"f" = (/obj/structure/fans/tiny,/obj/effect/floor_decal/industrial/danger/full,/obj/machinery/door/airlock/voidcraft/vertical,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalEngineering) +"g" = (/obj/structure/fans,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalEngineering) +"h" = (/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/atmos,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced,/obj/machinery/door/window/westleft{name = "Atmospherics Suits"; req_access = list(24)},/obj/structure/table/rack/shelf/steel,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalEngineering) +"i" = (/obj/item/device/gps/computer,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalEngineering) +"j" = (/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "smartfridge"; icon_contents = "boxes"; icon_state = "smartfridge"; name = "Advanced storage"; pixel_y = -1},/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/maglight,/obj/fiftyspawner/glass,/obj/fiftyspawner/steel,/obj/fiftyspawner/plastic,/obj/item/stack/material/plasteel{amount = 30},/obj/fiftyspawner/rods,/obj/fiftyspawner/rods,/obj/item/stack/material/glass/phoronrglass{amount = 20},/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/weapon/storage/toolbox/electrical,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/item/clothing/gloves/yellow,/obj/item/clothing/gloves/yellow,/obj/item/clothing/head/welding/demon,/obj/item/clothing/head/welding/knight,/obj/item/clothing/glasses/welding,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/item/weapon/inducer,/obj/item/weapon/storage/belt/utility/full,/obj/item/weapon/storage/belt/utility/full,/obj/item/device/multitool,/obj/item/device/multitool,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/device/megaphone,/obj/item/device/megaphone,/obj/item/weapon/extinguisher/atmo,/obj/item/weapon/extinguisher/atmo,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/item/weapon/storage/backpack/dufflebag/eng,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalEngineering) +"k" = (/obj/machinery/suit_cycler/engineering{req_access = null},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalEngineering) +"m" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/table/steel_reinforced,/obj/fiftyspawner/glass{pixel_y = -5},/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/item/stack/material/plasteel{amount = 30; pixel_y = 5},/obj/item/stack/material/glass/phoronrglass{amount = 20; pixel_y = 5},/obj/item/stack/material/phoron{amount = 25},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalEngineering) +"n" = (/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalEngineering) +"o" = (/obj/structure/sign/mining,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalEngineering) +"p" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalEngineering) +"q" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/power/apc/alarms_hidden{dir = 8; pixel_x = -20},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalEngineering) +"r" = (/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/atmos,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/westright{name = "Atmospherics Suits"; req_access = list(24)},/obj/structure/table/rack/shelf/steel,/obj/structure/sign/warning/nosmoking_2{pixel_x = 32},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalEngineering) +"s" = (/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalEngineering) +"t" = (/obj/machinery/autolathe,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalEngineering) +"u" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalEngineering) +"v" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/vending/engivend{pixel_x = -1},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalEngineering) +"w" = (/obj/machinery/smartfridge/survival_pod,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/weapon/storage/box/survival/space,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/machinery/light{dir = 1},/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/starcaster_news,/obj/item/device/starcaster_news,/obj/item/device/threadneedle,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/random/soap,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/storage/box/flare,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalEngineering) +"x" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille,/obj/structure/curtain/black,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalEngineering) +"y" = (/obj/structure/closet/secure_closet/guncabinet/phase{pixel_y = -32},/obj/item/weapon/gun/energy/locked/frontier/holdout,/obj/item/weapon/gun/energy/locked/frontier/holdout,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/holster/waist,/obj/item/clothing/accessory/holster/waist,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalEngineering) +"z" = (/obj/structure/sign/mining/survival{dir = 4},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalEngineering) +"A" = (/obj/structure/sign/mining/survival,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalEngineering) +"B" = (/obj/structure/sign/mining/survival{dir = 8},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalEngineering) +"C" = (/obj/structure/table/steel_reinforced,/obj/machinery/cell_charger{pixel_x = 1; pixel_y = 4},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalEngineering) +"D" = (/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalEngineering) +"E" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/shieldgen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalEngineering) +"F" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/dispenser{phorontanks = 0},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalEngineering) +"G" = (/obj/structure/reagent_dispensers/fueltank/high,/obj/structure/closet/walllocker_double/hydrant/east,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalEngineering) +"H" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalEngineering) +"I" = (/obj/structure/table/steel_reinforced,/obj/machinery/recharger{pixel_x = -3; pixel_y = 9},/obj/machinery/cell_charger{pixel_x = 1; pixel_y = -2},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalEngineering) +"J" = (/turf/simulated/shuttle/wall/voidcraft/orange,/area/survivalpod/superpose/SurvivalEngineering) +"K" = (/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalEngineering) +"L" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalEngineering) +"M" = (/obj/effect/floor_decal/industrial/loading{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalEngineering) +"N" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/industrial/warning,/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalEngineering) +"O" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8; layer = 3},/obj/machinery/power/emitter,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalEngineering) +"P" = (/obj/machinery/door/window/survival_pod{dir = 1},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalEngineering) +"Q" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalEngineering) +"R" = (/obj/structure/reagent_dispensers/watertank/high,/obj/machinery/light{dir = 4; layer = 3},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalEngineering) +"S" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/thermoregulator,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalEngineering) +"T" = (/obj/structure/sign/warning/engineering_access,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalEngineering) +"U" = (/obj/machinery/sleeper/survival_pod,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalEngineering) +"V" = (/obj/structure/bed/pod,/obj/item/weapon/bedsheet/ce,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalEngineering) +"W" = (/obj/structure/sign/mining/survival{dir = 1},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalEngineering) +"X" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/vending/tool{pixel_x = -1},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalEngineering) +"Y" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalEngineering) +"Z" = (/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalEngineering) + +(1,1,1) = {" +aJxnonWJa +JqDFngwiJ +BksrnUMVz +JjshncsIx +xEPpdvPXT +JuYmZZZLf +BOQQZCKRz +JHSeNtyGJ +aJAnbTnJa +"} diff --git a/modular_chomp/maps/submaps/shelters/SurvivalHome-9x9.dmm b/modular_chomp/maps/submaps/shelters/SurvivalHome-9x9.dmm new file mode 100644 index 0000000000..a84a09f8eb --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/SurvivalHome-9x9.dmm @@ -0,0 +1,381 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/item/device/flashlight/lamp/green, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/SurvivalHome) +"b" = ( +/obj/machinery/door/window/survival_pod, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalHome) +"c" = ( +/obj/machinery/door/airlock/maintenance/common{ + name = "Dorm" + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalHome) +"d" = ( +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalHome) +"e" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = 4; + pixel_y = 2 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalHome) +"g" = ( +/obj/structure/sign/mining/survival{ + dir = 8 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/survivalpod/superpose/SurvivalHome) +"h" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/item/weapon/deck/cards, +/turf/simulated/floor/carpet, +/area/survivalpod/superpose/SurvivalHome) +"i" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/survivalpod/superpose/SurvivalHome) +"k" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/deck/cah{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/deck/cah/black{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/deck/tarot{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 28 + }, +/turf/simulated/floor/carpet, +/area/survivalpod/superpose/SurvivalHome) +"m" = ( +/turf/simulated/shuttle/wall/voidcraft/survival, +/area/survivalpod/superpose/SurvivalHome) +"n" = ( +/obj/structure/closet/cabinet, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/SurvivalHome) +"o" = ( +/obj/structure/sign/mining/survival{ + dir = 1 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/survivalpod/superpose/SurvivalHome) +"p" = ( +/obj/structure/bed/double, +/obj/item/weapon/bedsheet/hosdouble, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/SurvivalHome) +"q" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/obj/structure/closet/walllocker_double/survival/north, +/turf/simulated/floor/carpet, +/area/survivalpod/superpose/SurvivalHome) +"r" = ( +/turf/simulated/floor/wood, +/area/survivalpod/superpose/SurvivalHome) +"t" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/obj/machinery/microwave{ + pixel_x = -4; + pixel_y = 17 + }, +/obj/structure/table/steel{ + pixel_x = -4 + }, +/obj/item/weapon/storage/box/donkpockets{ + pixel_y = -3; + pixel_x = -7 + }, +/obj/item/weapon/storage/box/donkpockets{ + pixel_y = -3; + pixel_x = 7 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalHome) +"v" = ( +/obj/structure/fans/tiny, +/obj/effect/floor_decal/industrial/danger/full, +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled/techmaint, +/area/survivalpod/superpose/SurvivalHome) +"x" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalHome) +"y" = ( +/obj/structure/closet/walllocker_double/survival/south, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/SurvivalHome) +"z" = ( +/obj/machinery/power/apc/alarms_hidden{ + pixel_y = -20 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalHome) +"A" = ( +/obj/structure/bed/double, +/obj/item/weapon/bedsheet/cedouble, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/SurvivalHome) +"B" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalHome) +"E" = ( +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalHome) +"I" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/survivalpod/superpose/SurvivalHome) +"J" = ( +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalHome) +"K" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/survivalpod/superpose/SurvivalHome) +"L" = ( +/obj/machinery/smartfridge/survival_pod, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/menu9, +/obj/item/weapon/storage/mre/menu9, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/device/fbp_backup_cell, +/obj/item/device/fbp_backup_cell, +/obj/item/device/fbp_backup_cell, +/obj/item/device/fbp_backup_cell, +/obj/item/device/fbp_backup_cell, +/obj/item/weapon/storage/pill_bottle/antitox, +/obj/item/weapon/storage/box/survival/space, +/obj/item/device/healthanalyzer, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/extinguisher/mini, +/obj/item/weapon/extinguisher/mini, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/box/survival/space, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/starcaster_news, +/obj/item/device/starcaster_news, +/obj/item/device/threadneedle, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/weapon/storage/pill_bottle/spaceacillin, +/obj/random/soap, +/obj/item/weapon/material/knife/machete/hatchet, +/obj/item/weapon/storage/box/flare, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalHome) +"M" = ( +/obj/structure/fans, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalHome) +"N" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/walllocker_double/survival/north, +/turf/simulated/floor/carpet, +/area/survivalpod/superpose/SurvivalHome) +"P" = ( +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalHome) +"Q" = ( +/obj/item/device/gps/computer, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalHome) +"R" = ( +/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner, +/area/survivalpod/superpose/SurvivalHome) +"T" = ( +/obj/machinery/vending/wallmed1{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalHome) +"U" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 8 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/obj/structure/window/reinforced/survival_pod, +/obj/structure/grille, +/obj/structure/curtain/black, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalHome) +"X" = ( +/obj/structure/sign/mining/survival{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/survivalpod/superpose/SurvivalHome) +"Y" = ( +/obj/structure/sign/mining/survival, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/survivalpod/superpose/SurvivalHome) +"Z" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalHome) + +(1,1,1) = {" +m +K +g +R +v +R +g +K +m +"} +(2,1,1) = {" +K +N +I +T +x +R +n +y +R +"} +(3,1,1) = {" +K +k +h +J +E +c +r +r +U +"} +(4,1,1) = {" +R +q +i +J +E +R +A +a +K +"} +(5,1,1) = {" +R +t +b +e +P +R +R +R +Y +"} +(6,1,1) = {" +R +M +d +R +B +R +n +y +K +"} +(7,1,1) = {" +o +L +d +R +E +c +r +r +U +"} +(8,1,1) = {" +K +Q +z +R +Z +R +p +a +R +"} +(9,1,1) = {" +m +K +X +R +v +R +X +K +m +"} diff --git a/modular_chomp/maps/submaps/shelters/SurvivalHydro-9x9.dmm b/modular_chomp/maps/submaps/shelters/SurvivalHydro-9x9.dmm new file mode 100644 index 0000000000..4ed939baaf --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/SurvivalHydro-9x9.dmm @@ -0,0 +1,51 @@ +"a" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/glass/bucket{pixel_x = -6; pixel_y = 7},/obj/item/weapon/reagent_containers/glass/bucket{pixel_x = 6; pixel_y = 7},/obj/structure/sink/kitchen{layer = 1; pixel_y = 12},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHydro) +"c" = (/obj/machinery/smartfridge/survival_pod,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/weapon/storage/box/survival/space,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/machinery/light{dir = 1},/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/starcaster_news,/obj/item/device/starcaster_news,/obj/item/device/threadneedle,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/random/soap,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/storage/box/flare,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalHydro) +"d" = (/obj/structure/fans/tiny,/obj/effect/floor_decal/industrial/danger/full,/obj/machinery/door/airlock/voidcraft/vertical,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalHydro) +"e" = (/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHydro) +"f" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalHydro) +"g" = (/obj/structure/sign/mining/survival{dir = 4},/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalHydro) +"h" = (/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalHydro) +"k" = (/obj/structure/sign/mining/survival{dir = 1},/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalHydro) +"l" = (/obj/machinery/seed_storage/garden,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHydro) +"m" = (/obj/machinery/sleeper/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalHydro) +"p" = (/obj/structure/sign/mining,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalHydro) +"q" = (/turf/simulated/shuttle/wall/voidcraft/survival,/area/survivalpod/superpose/SurvivalHydro) +"r" = (/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "smartfridge"; icon_contents = "boxes"; icon_state = "smartfridge"; name = "Advanced storage"; pixel_y = -1},/obj/item/device/multitool,/obj/item/device/multitool,/obj/item/bee_pack,/obj/item/bee_pack,/obj/item/bee_smoker,/obj/item/bee_smoker,/obj/item/beehive_assembly,/obj/item/beehive_assembly,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/device/analyzer/plant_analyzer,/obj/item/device/analyzer/plant_analyzer,/obj/item/clothing/gloves/botanic_leather,/obj/item/clothing/gloves/botanic_leather,/obj/item/clothing/head/greenbandana,/obj/item/clothing/head/greenbandana,/obj/item/weapon/material/minihoe,/obj/item/weapon/material/minihoe,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/tool/wirecutters/clippers/trimmers,/obj/item/weapon/tool/wirecutters/clippers/trimmers,/obj/item/weapon/reagent_containers/spray/plantbgone,/obj/item/weapon/reagent_containers/spray/plantbgone,/obj/item/clothing/suit/storage/apron/overalls,/obj/item/clothing/suit/storage/apron/overalls,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/storage/toolbox/mechanical,/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHydro) +"s" = (/obj/structure/window/reinforced/polarized{dir = 4; id = "SP-Hydro"},/obj/structure/window/reinforced/polarized{dir = 1; id = "SP-Hydro"},/obj/structure/window/reinforced/polarized{dir = 8; id = "SP-Hydro"},/obj/structure/grille/rustic,/obj/structure/window/reinforced/polarized/full{id = "SP-Hydro"},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalHydro) +"u" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHydro) +"v" = (/obj/structure/window/reinforced/polarized{id = "SP-Hydro"},/obj/structure/window/reinforced/polarized{dir = 4; id = "SP-Hydro"},/obj/structure/grille/rustic,/obj/structure/window/reinforced/polarized/full{id = "SP-Hydro"},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalHydro) +"w" = (/obj/effect/floor_decal/industrial/loading{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalHydro) +"x" = (/obj/machinery/door/window/survival_pod{dir = 2},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalHydro) +"y" = (/obj/machinery/button/windowtint{id = "SP-Hydro"; pixel_x = -28; pixel_y = 6},/obj/machinery/light_switch{name = "light switch "; pixel_x = -27; pixel_y = -5},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHydro) +"z" = (/obj/structure/table/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/item/modular_computer/laptop/preset/custom_loadout/cheap{pixel_x = 3; pixel_y = 12},/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/spoon{pixel_x = 2},/obj/item/pizzavoucher,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalHydro) +"B" = (/obj/structure/window/reinforced/polarized{id = "SP-Hydro"},/obj/structure/window/reinforced/polarized{dir = 8; id = "SP-Hydro"},/obj/structure/grille/rustic,/obj/structure/window/reinforced/polarized/full{id = "SP-Hydro"},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalHydro) +"E" = (/obj/structure/sign/mining/survival{dir = 8},/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalHydro) +"F" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/light,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHydro) +"H" = (/obj/structure/window/reinforced/polarized{id = "SP-Hydro"},/obj/structure/window/reinforced/polarized{dir = 1; id = "SP-Hydro"},/obj/structure/grille/rustic,/obj/structure/window/reinforced/polarized/full{id = "SP-Hydro"},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalHydro) +"K" = (/obj/structure/tubes,/obj/structure/window/reinforced/survival_pod,/obj/structure/reagent_dispensers/watertank/high,/obj/machinery/power/apc/alarms_hidden{dir = 4; pixel_x = 20},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalHydro) +"L" = (/obj/machinery/light{dir = 1},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalHydro) +"M" = (/obj/item/device/gps/computer,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalHydro) +"N" = (/obj/machinery/smartfridge/produce,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalHydro) +"O" = (/obj/machinery/biogenerator,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHydro) +"P" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalHydro) +"Q" = (/obj/machinery/honey_extractor,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHydro) +"S" = (/obj/structure/bed/pod,/obj/item/weapon/bedsheet/brown,/obj/machinery/newscaster{pixel_x = 30},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalHydro) +"T" = (/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalHydro) +"U" = (/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalHydro) +"V" = (/obj/machinery/smartfridge/drying_rack{pixel_x = 9},/obj/machinery/smartfridge/drying_rack{pixel_x = -8},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHydro) +"W" = (/obj/machinery/vending/hydronutrients,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHydro) +"X" = (/obj/structure/window/reinforced/polarized{dir = 4; id = "SP-Hydro"},/obj/structure/window/reinforced/polarized{dir = 8; id = "SP-Hydro"},/obj/structure/grille/rustic,/obj/structure/window/reinforced/polarized/full{id = "SP-Hydro"},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalHydro) +"Y" = (/obj/machinery/seed_extractor,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHydro) +"Z" = (/obj/structure/fans,/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalHydro) + +(1,1,1) = {" +qUkhphkUq +UVrOYZcMU +EyeeemwSg +NeQaezxKh +dPTTTLTfd +selWuuues +XeeeeeeeX +XuFuuuFuX +BHHHHHHHv +"} diff --git a/modular_chomp/maps/submaps/shelters/SurvivalJanitor-7x7.dmm b/modular_chomp/maps/submaps/shelters/SurvivalJanitor-7x7.dmm new file mode 100644 index 0000000000..9d51e3c85a --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/SurvivalJanitor-7x7.dmm @@ -0,0 +1,42 @@ +"a" = (/obj/structure/sink{pixel_y = 16},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalJanitor) +"b" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/reagent_dispensers/watertank/high,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalJanitor) +"c" = (/obj/structure/fans/tiny,/obj/effect/floor_decal/industrial/danger/full,/obj/machinery/door/airlock/voidcraft/vertical,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalJanitor) +"e" = (/obj/machinery/door/window/survival_pod{dir = 8},/obj/machinery/power/apc/alarms_hidden{pixel_y = -20},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalJanitor) +"f" = (/obj/structure/closet/jcloset,/obj/item/weapon/soap/nanotrasen,/obj/item/weapon/shovel,/obj/fiftyspawner/steel,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/pickaxe/silver,/obj/item/weapon/material/knife/machete/hatchet,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalJanitor) +"g" = (/obj/structure/fans,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalJanitor) +"h" = (/obj/machinery/smartfridge/survival_pod,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/weapon/storage/box/survival/space,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/starcaster_news,/obj/item/device/starcaster_news,/obj/item/device/threadneedle,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/random/soap,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/storage/box/flare,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/item/weapon/tape_roll,/obj/item/weapon/tape_roll,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/storage/fancy/markers,/obj/item/weapon/storage/fancy/markers,/obj/item/weapon/hand_labeler,/obj/item/weapon/hand_labeler,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalJanitor) +"j" = (/obj/structure/janitorialcart,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalJanitor) +"k" = (/obj/structure/bed/pod,/obj/item/weapon/bedsheet/ian,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalJanitor) +"m" = (/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalJanitor) +"n" = (/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalJanitor) +"o" = (/obj/structure/sign/mining/survival{dir = 8},/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalJanitor) +"p" = (/turf/simulated/shuttle/wall/voidcraft/survival,/area/survivalpod/superpose/SurvivalJanitor) +"q" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalJanitor) +"t" = (/obj/structure/closet/jcloset,/obj/item/weapon/soap/nanotrasen,/obj/item/weapon/shovel,/obj/fiftyspawner/steel,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/pickaxe/silver,/obj/item/weapon/material/knife/machete/hatchet,/obj/structure/sign/mining,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalJanitor) +"v" = (/obj/structure/closet/l3closet/janitor,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalJanitor) +"w" = (/obj/machinery/newscaster{pixel_y = -30},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalJanitor) +"z" = (/obj/structure/table/steel,/obj/item/weapon/reagent_containers/spray/cleaner{pixel_x = -8; pixel_y = 5},/obj/item/weapon/reagent_containers/spray/cleaner{pixel_y = 5},/obj/item/weapon/reagent_containers/spray/cleaner{pixel_x = 8; pixel_y = 5},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalJanitor) +"A" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille,/obj/structure/curtain/black,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalJanitor) +"D" = (/obj/structure/sign/mining/survival,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalJanitor) +"G" = (/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalJanitor) +"H" = (/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalJanitor) +"J" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalJanitor) +"N" = (/obj/item/device/gps/computer,/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalJanitor) +"O" = (/obj/structure/sign/mining,/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalJanitor) +"P" = (/obj/structure/mopbucket,/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalJanitor) +"Q" = (/obj/structure/table/steel,/obj/machinery/light,/obj/item/weapon/storage/box/lights/mixed{pixel_x = 8},/obj/item/weapon/storage/box/lights/mixed{pixel_x = -8},/obj/item/weapon/storage/box/lights/mixed{pixel_x = -8; pixel_y = 11},/obj/item/weapon/storage/box/lights/mixed{pixel_x = 8; pixel_y = 11},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalJanitor) +"R" = (/obj/structure/sign/mining/survival{dir = 1},/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalJanitor) +"S" = (/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalJanitor) +"V" = (/obj/structure/mopbucket,/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalJanitor) +"W" = (/obj/structure/fans/tiny,/obj/effect/floor_decal/industrial/danger/full,/obj/machinery/door/airlock/voidcraft/survival_pod,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalJanitor) +"Y" = (/obj/structure/sign/mining/survival{dir = 4},/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalJanitor) + +(1,1,1) = {" +pRmWpRp +OtaJVPY +mfnSSqc +AznQjbH +mvnghNm +ovweGkO +pmmDAmp +"} diff --git a/modular_chomp/maps/submaps/shelters/SurvivalLeisure-9x9.dmm b/modular_chomp/maps/submaps/shelters/SurvivalLeisure-9x9.dmm new file mode 100644 index 0000000000..62cd7d950d --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/SurvivalLeisure-9x9.dmm @@ -0,0 +1,64 @@ +"a" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/boxing{name = "yoga mat"},/area/survivalpod/superpose/SurvivalLeisure) +"b" = (/obj/structure/bed/chair/oldsofa{dir = 5},/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalLeisure) +"c" = (/obj/effect/floor_decal/spline/plain{dir = 8},/obj/structure/fans{pixel_y = 16},/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "smartfridge"; icon_contents = "boxes"; icon_state = "smartfridge"; name = "Advanced storage"; pixel_y = -14},/obj/structure/table/reinforced,/obj/item/weapon/tool/wrench,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = -4; pixel_y = 6},/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = -4; pixel_y = 6},/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = -4; pixel_y = 6},/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = -4; pixel_y = 6},/obj/item/weapon/towel/random{pixel_y = 8},/obj/item/weapon/towel/random{pixel_y = 8},/obj/item/weapon/towel/random{pixel_y = 8},/obj/item/weapon/towel/random{pixel_y = 8},/obj/item/weapon/towel/random{pixel_y = 8},/obj/item/weapon/towel/random{pixel_y = 8},/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/gloves/boxing,/obj/item/clothing/gloves/boxing/blue,/obj/item/weapon/material/twohanded/baseballbat/foam,/obj/item/weapon/material/sword/foam,/obj/item/weapon/material/twohanded/fireaxe/foam,/obj/item/weapon/material/twohanded/spear/foam,/obj/item/paint_palette{pixel_y = 6; pixel_x = 6},/obj/item/paint_palette{pixel_y = 6; pixel_x = 6},/obj/item/paint_brush{pixel_y = 4; pixel_x = -8},/obj/item/paint_brush{pixel_y = 4; pixel_x = -8},/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/camera,/obj/item/device/camera,/obj/item/weapon/storage/photo_album,/obj/item/weapon/storage/fancy/crayons{pixel_y = -3; pixel_x = 11},/obj/item/weapon/storage/fancy/crayons{pixel_y = -3; pixel_x = 11},/obj/item/weapon/storage/fancy/markers{pixel_y = 6; pixel_x = 11},/obj/item/weapon/tape_roll,/obj/item/weapon/tape_roll,/obj/item/weapon/hand_labeler,/obj/item/weapon/cell/device,/obj/item/weapon/cell/device,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalLeisure) +"d" = (/obj/structure/easel,/obj/item/canvas/twentythree_nineteen,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLeisure) +"e" = (/obj/structure/sign/mining/survival{dir = 4},/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalLeisure) +"f" = (/obj/effect/floor_decal/spline/plain,/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLeisure) +"g" = (/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalLeisure) +"h" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalLeisure) +"i" = (/obj/machinery/newscaster{pixel_x = 30},/turf/simulated/floor/boxing/gym,/area/survivalpod/superpose/SurvivalLeisure) +"j" = (/obj/item/weapon/dice,/obj/structure/table/hardwoodtable,/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalLeisure) +"k" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/boxing{name = "yoga mat"},/area/survivalpod/superpose/SurvivalLeisure) +"l" = (/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLeisure) +"m" = (/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLeisure) +"n" = (/obj/item/device/gps/computer{pixel_y = -16},/obj/structure/table/reinforced,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalLeisure) +"o" = (/obj/machinery/librarycomp,/obj/structure/table/wooden_reinforced,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLeisure) +"p" = (/obj/machinery/smartfridge/survival_pod{pixel_y = 12},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/weapon/storage/box/survival/space,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/starcaster_news,/obj/item/device/starcaster_news,/obj/item/device/threadneedle,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/random/soap,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/storage/box/flare,/obj/structure/table/reinforced,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalLeisure) +"q" = (/obj/effect/floor_decal/spline/plain,/obj/structure/reagent_dispensers/water_cooler/full{dir = 8; pixel_x = 9},/turf/simulated/floor/boxing{name = "yoga mat"},/area/survivalpod/superpose/SurvivalLeisure) +"r" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille,/obj/structure/curtain/black,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalLeisure) +"s" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/item/device/starcaster_news,/obj/structure/table/hardwoodtable,/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalLeisure) +"t" = (/obj/effect/floor_decal/spline/plain,/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/boxing{name = "yoga mat"},/area/survivalpod/superpose/SurvivalLeisure) +"u" = (/obj/machinery/scale,/turf/simulated/floor/boxing/gym,/area/survivalpod/superpose/SurvivalLeisure) +"v" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/item/weapon/dice/d20,/obj/structure/table/hardwoodtable,/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalLeisure) +"w" = (/obj/machinery/power/apc/alarms_hidden{dir = 4; pixel_x = 20},/turf/simulated/floor/boxing{name = "yoga mat"},/area/survivalpod/superpose/SurvivalLeisure) +"x" = (/obj/structure/sign/mining,/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalLeisure) +"y" = (/obj/structure/sign/mining/survival{dir = 1},/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalLeisure) +"z" = (/obj/structure/bookcase{name = "bookcase (Reference)"},/obj/item/weapon/book/codex/lore/robutt,/obj/item/weapon/book/bundle/custom_library/fiction/metalglen,/obj/item/weapon/book/bundle/custom_library/fiction/silence,/obj/item/weapon/book/bundle/custom_library/fiction/taleoftherainbowcat,/obj/item/weapon/book/bundle/custom_library/religious/zoroastrianism,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLeisure) +"A" = (/obj/item/weapon/deck/cah{pixel_x = 2; pixel_y = 2},/obj/item/weapon/deck/cah/black{pixel_x = -2; pixel_y = -2},/obj/item/weapon/deck/cards{pixel_y = 5; pixel_x = -4},/obj/structure/table/hardwoodtable,/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalLeisure) +"B" = (/obj/structure/bed/chair/oldsofa/left{dir = 1},/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalLeisure) +"C" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/table/woodentable,/obj/item/paint_palette{pixel_y = 6; pixel_x = 6},/obj/item/paint_brush{pixel_y = 4; pixel_x = -8},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLeisure) +"D" = (/obj/structure/easel,/obj/item/canvas/twentythree_twentythree,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLeisure) +"E" = (/obj/structure/fitness/weightlifter,/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/floor/boxing/gym,/area/survivalpod/superpose/SurvivalLeisure) +"F" = (/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/scale,/turf/simulated/floor/boxing/gym,/area/survivalpod/superpose/SurvivalLeisure) +"G" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/sign/painting/public,/turf/simulated/wall/wood,/area/survivalpod/superpose/SurvivalLeisure) +"H" = (/obj/structure/bed/chair/oldsofa/left{dir = 4},/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalLeisure) +"I" = (/turf/simulated/shuttle/wall/voidcraft/survival,/area/survivalpod/superpose/SurvivalLeisure) +"J" = (/obj/structure/sign/mining/survival{dir = 8},/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalLeisure) +"K" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/industrial/warning,/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalLeisure) +"L" = (/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/boxing{name = "yoga mat"},/area/survivalpod/superpose/SurvivalLeisure) +"M" = (/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalLeisure) +"N" = (/obj/structure/fans/tiny,/obj/effect/floor_decal/industrial/danger/full,/obj/machinery/door/airlock/voidcraft/survival_pod,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalLeisure) +"O" = (/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalLeisure) +"P" = (/turf/simulated/floor/boxing/gym,/area/survivalpod/superpose/SurvivalLeisure) +"Q" = (/obj/structure/bed/chair/oldsofa{dir = 4},/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalLeisure) +"R" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/fitness/heavy/lifter,/turf/simulated/floor/boxing/gym,/area/survivalpod/superpose/SurvivalLeisure) +"S" = (/obj/effect/floor_decal/spline/plain{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/vending/fitness,/turf/simulated/floor/boxing/gym,/area/survivalpod/superpose/SurvivalLeisure) +"T" = (/obj/structure/bed/chair/oldsofa{dir = 1},/obj/machinery/light,/turf/simulated/floor/carpet,/area/survivalpod/superpose/SurvivalLeisure) +"U" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLeisure) +"V" = (/turf/simulated/floor/boxing{name = "yoga mat"},/area/survivalpod/superpose/SurvivalLeisure) +"W" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLeisure) +"X" = (/obj/structure/fitness/punchingbag,/obj/machinery/light,/turf/simulated/floor/boxing/gym,/area/survivalpod/superpose/SurvivalLeisure) +"Y" = (/obj/structure/sign/mining/survival,/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalLeisure) +"Z" = (/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/boxing/gym,/area/survivalpod/superpose/SurvivalLeisure) + +(1,1,1) = {" +IOxgNgyOI +OdDChcpnO +JWlmMLVae +gzoGMLVwg +rUUfMtkqr +gHAvMSREg +JQjsMZPie +ObTBKFXuO +IOYgNgxOI +"} diff --git a/modular_chomp/maps/submaps/shelters/SurvivalLuxuryBar-11x11.dmm b/modular_chomp/maps/submaps/shelters/SurvivalLuxuryBar-11x11.dmm new file mode 100644 index 0000000000..955e81152c --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/SurvivalLuxuryBar-11x11.dmm @@ -0,0 +1,90 @@ +"aB" = (/obj/structure/table/fancyblack,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/item/device/starcaster_news,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar) +"bg" = (/obj/machinery/chemical_dispenser/bar_soft/full{pixel_y = 22},/obj/structure/table/marble,/obj/item/weapon/book/manual/barman_recipes,/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/weapon/reagent_containers/glass/rag,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalLuxuryBar) +"ce" = (/obj/structure/sign/mining/survival{dir = 4},/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalLuxuryBar) +"cy" = (/obj/machinery/door/window/survival_pod{dir = 2; req_one_access = null},/obj/effect/floor_decal/spline/fancy/wood,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalLuxuryBar) +"cC" = (/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalLuxuryBar) +"cS" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalLuxuryBar) +"dl" = (/obj/machinery/newscaster{pixel_x = 30},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalLuxuryBar) +"eI" = (/obj/item/weapon/stool/baystool/padded,/obj/effect/floor_decal/spline/fancy/wood,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar) +"ff" = (/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar) +"gm" = (/obj/structure/sign/mining/survival{dir = 1},/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalLuxuryBar) +"if" = (/obj/structure/disposalpipe/junction{dir = 4},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalLuxuryBar) +"is" = (/obj/structure/bed/chair/sofa/black,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLuxuryBar) +"jv" = (/obj/structure/fans/tiny,/obj/effect/floor_decal/industrial/danger/full,/obj/machinery/door/airlock/voidcraft/vertical,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalLuxuryBar) +"jC" = (/obj/machinery/vending/foodfast,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalLuxuryBar) +"kZ" = (/obj/structure/urinal{dir = 4; pixel_y = 0; pixel_x = -31},/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalLuxuryBar) +"lj" = (/obj/structure/bed/chair/comfy/black,/obj/effect/floor_decal/spline/fancy/wood{dir = 5},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar) +"lp" = (/obj/structure/fans,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 28},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalLuxuryBar) +"lE" = (/obj/structure/table/bench/glass,/obj/structure/closet/walllocker_double/survival/west,/obj/item/clothing/under/swimsuit/stripper/stripper_pink,/obj/item/clothing/mask/muzzle/ballgag/ringgag,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLuxuryBar) +"ne" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalLuxuryBar) +"ni" = (/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalLuxuryBar) +"no" = (/obj/structure/disposalpipe/segment,/turf/simulated/shuttle/wall/voidcraft/survival,/area/survivalpod/superpose/SurvivalLuxuryBar) +"np" = (/obj/machinery/door/airlock/maintenance/common{name = "Pole Dance Room"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalLuxuryBar) +"pc" = (/obj/machinery/chemical_dispenser/bar_alc/full{pixel_y = 22},/obj/structure/table/marble,/obj/item/weapon/clipboard,/obj/item/toy/figure/bartender,/obj/item/weapon/storage/fancy/cigar/havana,/obj/item/weapon/storage/fancy/cigar/cohiba,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalLuxuryBar) +"pj" = (/obj/structure/table/reinforced,/obj/machinery/cash_register/civilian{dir = 1},/obj/effect/floor_decal/spline/fancy/wood,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalLuxuryBar) +"pw" = (/obj/machinery/vending/cigarette,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalLuxuryBar) +"rc" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/item/weapon/pen,/obj/item/weapon/packageWrap,/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalLuxuryBar) +"tA" = (/obj/machinery/door/airlock/maintenance/common{name = "Unisex Bathroom"},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalLuxuryBar) +"tZ" = (/obj/machinery/power/apc/alarms_hidden{pixel_y = -20},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalLuxuryBar) +"vH" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille,/obj/structure/curtain/black,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalLuxuryBar) +"xR" = (/obj/structure/disposalpipe/segment,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalLuxuryBar) +"zq" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille,/obj/structure/curtain/black,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalLuxuryBar) +"zW" = (/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar) +"As" = (/obj/machinery/disposal/wall{dir = 8; pixel_y = 0; pixel_x = 35},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalLuxuryBar) +"BC" = (/obj/structure/bed/chair/comfy/black,/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar) +"Cg" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar) +"Di" = (/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLuxuryBar) +"Dy" = (/obj/structure/bed/chair/sofa/left/black{dir = 2},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLuxuryBar) +"DK" = (/obj/structure/table/reinforced,/obj/structure/reagent_dispensers/beerkeg,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/spline/fancy/wood,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalLuxuryBar) +"DN" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/machinery/light,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar) +"DX" = (/obj/structure/bed/chair/sofa/right/black,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLuxuryBar) +"ET" = (/obj/machinery/door/airlock/voidcraft/survival_pod,/obj/structure/fans/tiny,/obj/effect/floor_decal/industrial/danger/full,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "shelterblast"; name = "Shelter Blast Doors"; opacity = 0},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalLuxuryBar) +"EY" = (/obj/structure/sink{pixel_y = 14},/obj/structure/mirror{pixel_y = 32},/obj/machinery/disposal/wall{dir = 4; pixel_y = 0; pixel_x = -37},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalLuxuryBar) +"Gg" = (/obj/effect/floor_decal/spline/fancy/wood,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar) +"GB" = (/obj/structure/table/bench/glass,/obj/item/weapon/handcuffs/legcuffs/fuzzy,/obj/item/weapon/handcuffs/fuzzy,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLuxuryBar) +"GF" = (/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalLuxuryBar) +"GH" = (/obj/structure/table/hardwoodtable,/obj/structure/stripper_pole{pixel_y = 9},/obj/structure/mirror{dir = 1; pixel_y = -27},/obj/item/clothing/under/swimsuit/stripper/mankini{pixel_y = 5; pixel_x = -6},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLuxuryBar) +"HE" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/structure/closet/walllocker_double/survival/west,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar) +"HS" = (/obj/structure/table/fancyblack,/obj/item/device/paicard,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar) +"Ij" = (/obj/structure/table/hardwoodtable,/obj/structure/stripper_pole{pixel_y = 9},/obj/structure/mirror{dir = 1; pixel_y = -27},/obj/item/clothing/under/fluff/latexmaid{pixel_y = 7; pixel_x = -8},/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalLuxuryBar) +"IN" = (/obj/structure/sign/mining/survival{dir = 8},/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalLuxuryBar) +"IT" = (/obj/structure/sink/kitchen{dir = 8; pixel_x = -13},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalLuxuryBar) +"JT" = (/obj/structure/table/reinforced,/obj/item/weapon/flame/lighter/random{pixel_x = -4; pixel_y = 4},/obj/item/weapon/flame/lighter/random,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/spline/fancy/wood,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalLuxuryBar) +"La" = (/obj/structure/table/reinforced,/obj/machinery/microwave{pixel_y = -9},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalLuxuryBar) +"Lb" = (/obj/structure/disposalpipe/segment,/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalLuxuryBar) +"Li" = (/obj/structure/disposalpipe/segment,/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalLuxuryBar) +"Lt" = (/obj/item/weapon/stool/baystool/padded,/obj/effect/floor_decal/spline/fancy/wood,/obj/machinery/vending/wallmed1{dir = 4; pixel_x = -23},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar) +"LX" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/spline/fancy/wood,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalLuxuryBar) +"MV" = (/obj/structure/sink{pixel_y = 14},/obj/structure/mirror{pixel_y = 32},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalLuxuryBar) +"Nl" = (/turf/simulated/shuttle/wall/voidcraft/survival,/area/survivalpod/superpose/SurvivalLuxuryBar) +"Nv" = (/obj/structure/urinal{dir = 4; pixel_y = 0; pixel_x = -31},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalLuxuryBar) +"NJ" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = 4; pixel_y = 4},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = -4; pixel_y = 12},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar) +"Ol" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalLuxuryBar) +"OA" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/industrial/warning,/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalLuxuryBar) +"Pr" = (/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalLuxuryBar) +"Pv" = (/obj/structure/disposalpipe/segment,/obj/structure/sign/mining/survival{dir = 4},/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalLuxuryBar) +"RE" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille,/obj/structure/curtain/black,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalLuxuryBar) +"RR" = (/obj/structure/toilet{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/curtain/bed{name = "Bathroom curtain"; icon_state = "open"; opacity = 0; dir = 2; pixel_y = 0},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalLuxuryBar) +"RS" = (/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalLuxuryBar) +"RV" = (/obj/structure/bed/chair/comfy/black,/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/obj/structure/closet/walllocker_double/survival/west,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar) +"Ub" = (/obj/structure/table/fancyblack,/obj/item/toy/eight_ball,/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar) +"Uu" = (/obj/structure/table/fancyblack,/obj/item/weapon/deck/cah{pixel_x = 2; pixel_y = 2},/obj/item/weapon/deck/cah/black{pixel_x = -2; pixel_y = -2},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar) +"Wq" = (/obj/structure/sign/mining/survival,/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalLuxuryBar) +"WL" = (/obj/item/device/gps/computer,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalLuxuryBar) +"XG" = (/obj/machinery/smartfridge/survival_pod,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/weapon/storage/box/survival/space,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/starcaster_news,/obj/item/device/starcaster_news,/obj/item/device/threadneedle,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/random/soap,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/storage/box/flare,/obj/item/weapon/storage/box/donut{pixel_y = -4},/obj/item/weapon/storage/box/donut{pixel_y = -4},/obj/item/weapon/storage/box/donkpockets,/obj/item/weapon/storage/box/donkpockets,/obj/item/weapon/storage/box/glasses/cocktail,/obj/item/weapon/storage/box/glasses/wine,/obj/item/weapon/storage/box/glasses/shot,/obj/item/weapon/storage/box/glasses/meta/metapint,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalLuxuryBar) +"Ym" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = 4; pixel_y = 4},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = -4; pixel_y = 12},/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/survivalpod/superpose/SurvivalLuxuryBar) +"ZS" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalLuxuryBar) + +(1,1,1) = {" +NlGFgmcCcCGFcCcCgmGFno +GFpcbglpXGWLGFDXisDyxR +zqITPrPrPrLaGFlEDiGBvH +INJTLXpjcyDKGFIjDiGHPv +cCLteIeIGgGgpwGFtAGFLi +jvcSnininiZSOlOlifrcRE +cCRVBCzWljLbjCGFnpGFcC +INHSUuffYmAsGFEYneMVce +cCNJUbffaBdlGFNvRSRRcC +GFHEDNffCgOAGFkZtZRRGF +NlcCWqzqGFETGFcCWqcCNl +"} diff --git a/modular_chomp/maps/submaps/shelters/SurvivalLuxuryHome-11x11.dmm b/modular_chomp/maps/submaps/shelters/SurvivalLuxuryHome-11x11.dmm new file mode 100644 index 0000000000..03a7d1b4e3 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/SurvivalLuxuryHome-11x11.dmm @@ -0,0 +1,655 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ao" = ( +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 + }, +/obj/structure/closet/walllocker_double/survival/north, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"aX" = ( +/obj/machinery/vending/wallmed1{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"by" = ( +/obj/structure/table/marble, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"bS" = ( +/obj/structure/closet/cabinet, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"bX" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower, +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"cK" = ( +/obj/structure/fans, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"eH" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"eW" = ( +/obj/structure/table/marble, +/obj/machinery/reagentgrinder, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"iq" = ( +/obj/structure/sign/mining/survival{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"jn" = ( +/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"jw" = ( +/obj/structure/table/fancyblack, +/obj/item/weapon/material/kitchen/utensil/spoon{ + pixel_x = 2 + }, +/obj/item/weapon/material/kitchen/utensil/fork, +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"jz" = ( +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"jL" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/storage/box/glasses/square{ + pixel_y = -2 + }, +/obj/item/weapon/storage/box/glass_extras/sticks{ + pixel_y = 4 + }, +/obj/item/weapon/storage/box/glass_extras/straws{ + pixel_y = 7 + }, +/obj/item/weapon/packageWrap, +/obj/structure/curtain/open/bed, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/spoon{ + pixel_x = 2 + }, +/obj/item/weapon/material/kitchen/utensil/spoon{ + pixel_x = 2 + }, +/obj/item/weapon/storage/box/condimentbottles, +/obj/item/weapon/reagent_containers/food/condiment/sugar, +/obj/item/weapon/storage/box/donkpockets, +/obj/item/weapon/storage/box/donkpockets, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/weapon/reagent_containers/food/drinks/teapot{ + pixel_y = 7 + }, +/obj/item/weapon/storage/box/donut{ + pixel_y = -4 + }, +/obj/item/weapon/storage/box/donut{ + pixel_y = -4 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"ku" = ( +/obj/structure/table/fancyblack, +/obj/item/weapon/deck/cards, +/obj/machinery/computer/security/telescreen/entertainment{ + layer = 4; + pixel_y = -32 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"nZ" = ( +/obj/machinery/door/window/survival_pod{ + dir = 2 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"ov" = ( +/obj/machinery/door/window/survival_pod, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"pn" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"qZ" = ( +/obj/structure/sign/mining/survival{ + dir = 8 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"rm" = ( +/obj/machinery/appliance/cooker/oven, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"rY" = ( +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"sa" = ( +/obj/structure/table/bench/wooden, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 2 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"sq" = ( +/obj/structure/table/marble, +/obj/structure/sink/countertop{ + dir = 1; + pixel_y = 2 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"sF" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy{ + dir = 4 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"tb" = ( +/obj/structure/table/bench/marble, +/obj/structure/flora/pottedplant/bamboo{ + pixel_y = 7 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"tx" = ( +/obj/structure/table/fancyblack, +/obj/item/weapon/material/kitchen/utensil/spoon{ + pixel_x = 2 + }, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/effect/floor_decal/spline/fancy{ + dir = 1 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"ty" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy{ + dir = 1 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"tK" = ( +/obj/structure/table/woodentable, +/obj/item/pizzavoucher, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"uz" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"wD" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"wS" = ( +/obj/structure/window/reinforced/survival_pod{ + opacity = 1 + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"xt" = ( +/obj/structure/sign/mining/survival, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"zK" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"zN" = ( +/obj/structure/bed/pod, +/obj/item/weapon/bedsheet/cosmos, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"AI" = ( +/obj/structure/table/marble, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/microwave, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"By" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/storage/box/characters, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"BM" = ( +/obj/structure/sign/mining/survival{ + dir = 8 + }, +/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"BP" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"CD" = ( +/obj/machinery/smartfridge/survival_pod, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/menu9, +/obj/item/weapon/storage/mre/menu9, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/device/fbp_backup_cell, +/obj/item/device/fbp_backup_cell, +/obj/item/device/fbp_backup_cell, +/obj/item/device/fbp_backup_cell, +/obj/item/device/fbp_backup_cell, +/obj/item/weapon/storage/pill_bottle/antitox, +/obj/item/weapon/storage/box/survival/space, +/obj/item/device/healthanalyzer, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/extinguisher/mini, +/obj/item/weapon/extinguisher/mini, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/box/survival/space, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/starcaster_news, +/obj/item/device/starcaster_news, +/obj/item/device/threadneedle, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/weapon/storage/pill_bottle/spaceacillin, +/obj/random/soap, +/obj/item/weapon/material/knife/machete/hatchet, +/obj/item/weapon/storage/box/flare, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"Dv" = ( +/obj/structure/table/bench/wooden{ + pixel_x = -9 + }, +/obj/structure/flora/pottedplant/small{ + pixel_x = -9; + pixel_y = 10 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"DL" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_coffee/full{ + pixel_y = 17 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"DN" = ( +/obj/machinery/door/window/survival_pod, +/obj/structure/closet/walllocker_double/survival/north, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"DT" = ( +/obj/machinery/door/airlock/maintenance/common{ + name = "Dorm" + }, +/turf/simulated/floor/tiled/techmaint, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"Gb" = ( +/obj/structure/window/reinforced/survival_pod{ + opacity = 1 + }, +/obj/machinery/power/apc/alarms_hidden{ + dir = 4; + pixel_x = 20 + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"Hk" = ( +/obj/structure/sign/mining/survival{ + dir = 1 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"HO" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy{ + dir = 5 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"Jk" = ( +/obj/structure/fans/tiny, +/obj/effect/floor_decal/industrial/danger/full, +/obj/machinery/door/airlock/voidcraft/survival_pod, +/turf/simulated/floor/tiled/techmaint, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"JA" = ( +/obj/structure/table/fancyblack, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/obj/effect/floor_decal/spline/fancy{ + dir = 1 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"JH" = ( +/obj/structure/table/standard, +/obj/item/weapon/towel/random{ + pixel_y = -5 + }, +/obj/item/weapon/towel/random, +/obj/random/soap{ + pixel_y = 5 + }, +/obj/random/soap{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"JK" = ( +/turf/simulated/shuttle/wall/voidcraft/survival, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"LR" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"ML" = ( +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"MR" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/cedouble, +/turf/simulated/floor/carpet/oracarpet, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"Nv" = ( +/turf/simulated/floor/wood, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"Nx" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 8 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/obj/structure/window/reinforced/survival_pod, +/obj/structure/grille, +/obj/structure/curtain/black, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"Oc" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/obj/structure/closet/secure_closet/freezer/kitchen{ + locked = 0; + pixel_x = -5 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"Pf" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"Qs" = ( +/obj/structure/table/marble, +/obj/item/weapon/material/sharpeningkit, +/obj/item/weapon/reagent_containers/dropper, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"SI" = ( +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"Wx" = ( +/obj/structure/toilet, +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"WI" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 36; + pixel_y = 3 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 36; + pixel_y = -10 + }, +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"XT" = ( +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"Yw" = ( +/obj/structure/closet/walllocker_double/survival/west, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"YY" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/survivalpod/superpose/SurvivalLuxuryHome) +"Zy" = ( +/obj/item/device/gps/computer, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalLuxuryHome) + +(1,1,1) = {" +JK +jn +Nx +BM +Nx +jn +LR +qZ +LR +jn +JK +"} +(2,1,1) = {" +jn +BP +rY +by +ML +ty +eH +jn +By +Dv +jn +"} +(3,1,1) = {" +LR +rm +rY +sq +ML +JA +jw +jn +ao +YY +Nx +"} +(4,1,1) = {" +Hk +AI +rY +Qs +ML +tx +ku +jn +Nv +zN +xt +"} +(5,1,1) = {" +LR +DL +rY +nZ +ML +HO +sF +jn +DT +jn +LR +"} +(6,1,1) = {" +jn +jL +rY +eW +ML +XT +WI +aX +SI +zK +Jk +"} +(7,1,1) = {" +LR +Oc +ov +jn +DN +jn +jn +jn +DT +jn +LR +"} +(8,1,1) = {" +Hk +cK +wS +Wx +jz +jn +tK +Yw +Nv +tb +Nx +"} +(9,1,1) = {" +LR +CD +wS +bX +jz +jn +bS +uz +Pf +Pf +xt +"} +(10,1,1) = {" +jn +Zy +Gb +JH +pn +jn +bS +wD +MR +sa +jn +"} +(11,1,1) = {" +JK +jn +LR +iq +LR +jn +LR +iq +LR +jn +JK +"} diff --git a/modular_chomp/maps/submaps/shelters/SurvivalMedical-9x9.dmm b/modular_chomp/maps/submaps/shelters/SurvivalMedical-9x9.dmm new file mode 100644 index 0000000000..1f1d5dd1c8 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/SurvivalMedical-9x9.dmm @@ -0,0 +1,552 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/machinery/sleeper/survival_pod, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalMedical) +"b" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalMedical) +"c" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalMedical) +"d" = ( +/obj/structure/sign/mining/survival{ + dir = 8 + }, +/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner, +/area/survivalpod/superpose/SurvivalMedical) +"e" = ( +/obj/machinery/iv_drip, +/obj/effect/floor_decal/industrial/loading{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalMedical) +"f" = ( +/obj/machinery/door/window/survival_pod{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalMedical) +"g" = ( +/obj/machinery/door/window/survival_pod{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalMedical) +"h" = ( +/obj/structure/table/survival_pod, +/obj/item/weapon/storage/firstaid/surgery, +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = -13 + }, +/obj/machinery/recharger, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalMedical) +"i" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/obj/machinery/vending/medical{ + req_access = null; + req_log_access = null + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalMedical) +"j" = ( +/obj/machinery/smartfridge/survival_pod, +/obj/item/weapon/storage/box/bodybags, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/item/device/sleevemate, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/device/defib_kit/compact/loaded, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/weapon/extinguisher/mini, +/obj/item/weapon/extinguisher/mini, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/device/binoculars, +/obj/item/device/bluespaceradio, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/box/survival/comp, +/obj/item/weapon/storage/box/survival/comp, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/device/radio/emergency, +/obj/item/device/radio/emergency, +/obj/item/device/radio/emergency, +/obj/item/device/radio/emergency, +/obj/item/device/radio/emergency, +/obj/item/device/radio/emergency, +/obj/item/weapon/storage/backpack/dufflebag/emt, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalMedical) +"k" = ( +/obj/machinery/smartfridge/survival_pod, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/device/fbp_backup_cell, +/obj/item/device/fbp_backup_cell, +/obj/item/device/fbp_backup_cell, +/obj/item/device/fbp_backup_cell, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose, +/obj/item/weapon/storage/box/freezer, +/obj/item/weapon/storage/box/freezer, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/reagent_containers/glass/beaker, +/obj/item/weapon/reagent_containers/glass/beaker, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/device/defib_kit/loaded, +/obj/item/device/defib_kit/loaded, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/box/survival/space, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/starcaster_news, +/obj/item/device/starcaster_news, +/obj/item/device/threadneedle, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/weapon/storage/pill_bottle/spaceacillin, +/obj/random/soap, +/obj/item/weapon/material/knife/machete/hatchet, +/obj/item/weapon/storage/box/flare, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalMedical) +"l" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 8 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalMedical) +"m" = ( +/obj/structure/table/survival_pod, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalMedical) +"n" = ( +/obj/item/device/gps/computer, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalMedical) +"o" = ( +/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner, +/area/survivalpod/superpose/SurvivalMedical) +"p" = ( +/obj/structure/table/glass, +/obj/structure/closet/secure_closet/guncabinet/phase{ + pixel_y = -32 + }, +/obj/item/weapon/gun/energy/locked/frontier/holdout, +/obj/item/weapon/gun/energy/locked/frontier/holdout, +/obj/item/clothing/accessory/permit/gun/planetside, +/obj/item/clothing/accessory/permit/gun/planetside, +/obj/item/clothing/accessory/holster/waist, +/obj/item/clothing/accessory/holster/waist, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalMedical) +"q" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalMedical) +"r" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/chemical_dispenser/full, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalMedical) +"s" = ( +/obj/structure/sign/mining/survival{ + dir = 8 + }, +/turf/simulated/shuttle/wall/voidcraft/lightblue, +/area/survivalpod/superpose/SurvivalMedical) +"u" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/obj/structure/table/gamblingtable, +/obj/item/device/starcaster_news, +/obj/item/weapon/deck/cards, +/obj/structure/fireaxecabinet{ + pixel_y = 27 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalMedical) +"v" = ( +/obj/structure/sign/mining/survival, +/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner, +/area/survivalpod/superpose/SurvivalMedical) +"w" = ( +/obj/machinery/light, +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalMedical) +"x" = ( +/obj/structure/table/survival_pod, +/obj/item/weapon/storage/firstaid/adv, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalMedical) +"y" = ( +/obj/structure/sign/mining, +/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner, +/area/survivalpod/superpose/SurvivalMedical) +"z" = ( +/obj/machinery/iv_drip, +/obj/machinery/iv_drip, +/obj/machinery/vending/wallmed1{ + dir = 8; + pixel_x = 22; + pixel_y = 3 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalMedical) +"A" = ( +/obj/structure/fans, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalMedical) +"B" = ( +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalMedical) +"C" = ( +/obj/structure/sign/mining/survival{ + dir = 1 + }, +/turf/simulated/shuttle/wall/voidcraft/survival, +/area/survivalpod/superpose/SurvivalMedical) +"D" = ( +/turf/simulated/shuttle/wall/voidcraft/survival, +/area/survivalpod/superpose/SurvivalMedical) +"E" = ( +/obj/structure/sign/mining/survival{ + dir = 1 + }, +/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner, +/area/survivalpod/superpose/SurvivalMedical) +"F" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/medical, +/obj/structure/curtain/open/privacy, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalMedical) +"G" = ( +/obj/machinery/optable, +/obj/machinery/oxygen_pump/anesthetic{ + pixel_x = 32 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalMedical) +"H" = ( +/obj/structure/sign/nosmoking_2, +/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner, +/area/survivalpod/superpose/SurvivalMedical) +"I" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalMedical) +"J" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/masks, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/obj/machinery/power/apc/alarms_hidden{ + dir = 4; + pixel_x = 20 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalMedical) +"K" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/item/weapon/soap/deluxe, +/obj/structure/curtain, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalMedical) +"L" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalMedical) +"M" = ( +/obj/machinery/light/small, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalMedical) +"N" = ( +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalMedical) +"O" = ( +/obj/structure/sign/mining/survival{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/lightblue, +/area/survivalpod/superpose/SurvivalMedical) +"P" = ( +/turf/simulated/shuttle/wall/voidcraft/lightblue, +/area/survivalpod/superpose/SurvivalMedical) +"Q" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalMedical) +"R" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/shuttle/wall/voidcraft/lightblue, +/area/survivalpod/superpose/SurvivalMedical) +"S" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 8 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/obj/structure/window/reinforced/survival_pod, +/obj/structure/grille, +/obj/structure/curtain/black, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalMedical) +"T" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/shuttle/wall/voidcraft/survival, +/area/survivalpod/superpose/SurvivalMedical) +"U" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalMedical) +"V" = ( +/obj/effect/floor_decal/industrial/danger/full, +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled/techmaint, +/area/survivalpod/superpose/SurvivalMedical) +"W" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/obj/machinery/washing_machine, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalMedical) +"X" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/sign/mining/survival{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner, +/area/survivalpod/superpose/SurvivalMedical) +"Y" = ( +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalMedical) +"Z" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/mining/survival{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner, +/area/survivalpod/superpose/SurvivalMedical) + +(1,1,1) = {" +D +d +P +P +d +V +P +s +D +"} +(2,1,1) = {" +E +A +a +h +i +c +N +Q +v +"} +(3,1,1) = {" +P +k +e +Y +f +B +N +w +P +"} +(4,1,1) = {" +P +n +G +r +b +B +N +p +P +"} +(5,1,1) = {" +y +o +o +o +u +B +N +J +y +"} +(6,1,1) = {" +P +j +x +m +l +B +W +H +P +"} +(7,1,1) = {" +S +U +Y +Y +f +B +g +M +P +"} +(8,1,1) = {" +C +F +z +F +q +I +L +K +v +"} +(9,1,1) = {" +T +Z +R +R +X +V +P +O +D +"} diff --git a/modular_chomp/maps/submaps/shelters/SurvivalPool-11x11.dmm b/modular_chomp/maps/submaps/shelters/SurvivalPool-11x11.dmm new file mode 100644 index 0000000000..8df4ccf714 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/SurvivalPool-11x11.dmm @@ -0,0 +1,672 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"al" = ( +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "SP-Pool" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "SP-Pool" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "SP-Pool" + }, +/obj/structure/grille/rustic, +/obj/structure/window/reinforced/polarized/full{ + id = "SP-Pool" + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalPool) +"aJ" = ( +/obj/structure/sign/mining/survival{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner, +/area/survivalpod/superpose/SurvivalPool) +"bt" = ( +/obj/structure/sign/mining/survival{ + dir = 8 + }, +/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner, +/area/survivalpod/superpose/SurvivalPool) +"bG" = ( +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalPool) +"bS" = ( +/obj/structure/fans, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalPool) +"cB" = ( +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "SP-Sauna" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "SP-Sauna" + }, +/obj/structure/grille/rustic, +/obj/structure/window/reinforced/polarized{ + id = "SP-Sauna" + }, +/obj/structure/window/reinforced/polarized/full{ + id = "SP-Sauna" + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalPool) +"eM" = ( +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "SP-Pool" + }, +/obj/structure/grille/rustic, +/obj/structure/window/reinforced/polarized{ + id = "SP-Pool" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "SP-Pool" + }, +/obj/structure/window/reinforced/polarized/full{ + id = "SP-Pool" + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalPool) +"gf" = ( +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalPool) +"gE" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/SurvivalPool) +"hC" = ( +/obj/item/device/gps/computer, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalPool) +"ih" = ( +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "SP-Sauna" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "SP-Sauna" + }, +/obj/structure/grille/rustic, +/obj/structure/window/reinforced/polarized/full{ + id = "SP-Sauna" + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalPool) +"il" = ( +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "SP-Sauna" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "SP-Sauna" + }, +/obj/structure/grille/rustic, +/obj/structure/window/reinforced/polarized{ + id = "SP-Sauna" + }, +/obj/structure/window/reinforced/polarized/full{ + id = "SP-Sauna" + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalPool) +"iA" = ( +/obj/structure/sign/mining/survival{ + dir = 8 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/survivalpod/superpose/SurvivalPool) +"jH" = ( +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "SP-Sauna" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "SP-Sauna" + }, +/obj/structure/grille/rustic, +/obj/structure/window/reinforced/polarized{ + id = "SP-Sauna" + }, +/obj/structure/window/reinforced/polarized/full{ + id = "SP-Sauna" + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalPool) +"ki" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalPool) +"kZ" = ( +/obj/machinery/button/windowtint{ + id = "SP-Sauna"; + pixel_y = -29 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalPool) +"mr" = ( +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "SP-Pool" + }, +/obj/structure/grille/rustic, +/obj/structure/window/reinforced/polarized{ + id = "SP-Pool" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "SP-Pool" + }, +/obj/structure/window/reinforced/polarized/full{ + id = "SP-Pool" + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalPool) +"mK" = ( +/obj/machinery/vending/wallmed1{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalPool) +"qA" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/SurvivalPool) +"rw" = ( +/obj/structure/sign/mining/survival{ + dir = 1 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/survivalpod/superpose/SurvivalPool) +"rP" = ( +/obj/structure/table/bench/wooden, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/SurvivalPool) +"sX" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/obj/structure/table/rack/shelf, +/obj/item/weapon/reagent_containers/glass/bucket/wood{ + pixel_y = 6 + }, +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/SurvivalPool) +"ul" = ( +/obj/structure/fans/tiny, +/obj/effect/floor_decal/industrial/danger/full, +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalPool) +"uA" = ( +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "SP-Pool" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "SP-Pool" + }, +/obj/structure/grille/rustic, +/obj/structure/window/reinforced/polarized/full{ + id = "SP-Pool" + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalPool) +"vr" = ( +/obj/structure/closet/athletic_mixed, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalPool) +"wl" = ( +/obj/effect/mist, +/obj/machinery/light, +/turf/simulated/floor/water/pool, +/area/survivalpod/superpose/SurvivalPool) +"wS" = ( +/obj/item/weapon/beach_ball, +/turf/simulated/floor/water/deep/pool, +/area/survivalpod/superpose/SurvivalPool) +"xf" = ( +/obj/structure/sign/mining/survival{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/survivalpod/superpose/SurvivalPool) +"yA" = ( +/obj/structure/table/reinforced, +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalPool) +"yE" = ( +/obj/structure/window/reinforced/survival_pod{ + opacity = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalPool) +"yN" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/SurvivalPool) +"zi" = ( +/obj/effect/mist, +/turf/simulated/floor/water/pool, +/area/survivalpod/superpose/SurvivalPool) +"Aa" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/survivalpod/superpose/SurvivalPool) +"CK" = ( +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "SP-Pool" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "SP-Pool" + }, +/obj/structure/grille/rustic, +/obj/structure/window/reinforced/polarized{ + id = "SP-Pool" + }, +/obj/structure/window/reinforced/polarized/full{ + id = "SP-Pool" + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalPool) +"DO" = ( +/obj/structure/sign/mining, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/survivalpod/superpose/SurvivalPool) +"IV" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/SurvivalPool) +"IW" = ( +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "SP-Sauna" + }, +/obj/structure/grille/rustic, +/obj/structure/window/reinforced/polarized{ + id = "SP-Sauna" + }, +/obj/structure/window/reinforced/polarized/full{ + id = "SP-Sauna" + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalPool) +"Ju" = ( +/obj/structure/table/glass, +/obj/item/clothing/shoes/swimmingfins, +/obj/item/clothing/mask/snorkel, +/obj/item/clothing/shoes/swimmingfins, +/obj/item/clothing/mask/snorkel, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 28 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/SurvivalPool) +"KB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/SurvivalPool) +"KM" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/survivalpod/superpose/SurvivalPool) +"Lb" = ( +/obj/machinery/atmospherics/unary/heater/sauna{ + dir = 8; + icon_state = "heater_1"; + use_power = 1 + }, +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalPool) +"Ls" = ( +/obj/structure/table/bench/wooden, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + external_pressure_bound = 140; + external_pressure_bound_default = 140; + icon_state = "map_vent_out"; + pressure_checks = 0; + pressure_checks_default = 0; + use_power = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/item/weapon/bikehorn/rubberducky, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/SurvivalPool) +"Mm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 9 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/SurvivalPool) +"Nd" = ( +/obj/machinery/smartfridge/survival_pod, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/menu9, +/obj/item/weapon/storage/mre/menu9, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/device/fbp_backup_cell, +/obj/item/device/fbp_backup_cell, +/obj/item/device/fbp_backup_cell, +/obj/item/device/fbp_backup_cell, +/obj/item/device/fbp_backup_cell, +/obj/item/weapon/storage/pill_bottle/antitox, +/obj/item/weapon/storage/box/survival/space, +/obj/item/device/healthanalyzer, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/extinguisher/mini, +/obj/item/weapon/extinguisher/mini, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/box/survival/space, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/starcaster_news, +/obj/item/device/starcaster_news, +/obj/item/device/threadneedle, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/weapon/storage/pill_bottle/spaceacillin, +/obj/random/soap, +/obj/item/weapon/material/knife/machete/hatchet, +/obj/item/weapon/storage/box/flare, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/survivalpod/superpose/SurvivalPool) +"Nk" = ( +/turf/simulated/shuttle/wall/voidcraft/survival, +/area/survivalpod/superpose/SurvivalPool) +"Ok" = ( +/obj/item/weapon/inflatable_duck, +/turf/simulated/floor/water/pool, +/area/survivalpod/superpose/SurvivalPool) +"PV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/maintenance/int{ + name = "Sauna" + }, +/turf/simulated/floor/tiled/techmaint, +/area/survivalpod/superpose/SurvivalPool) +"Qo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 6 + }, +/turf/simulated/shuttle/plating/skipjack, +/area/survivalpod/superpose/SurvivalPool) +"QB" = ( +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "SP-Pool" + }, +/obj/structure/grille/rustic, +/obj/structure/window/reinforced/polarized{ + id = "SP-Pool" + }, +/obj/structure/window/reinforced/polarized/full{ + id = "SP-Pool" + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalPool) +"Rw" = ( +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "SP-Sauna" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "SP-Sauna" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "SP-Sauna" + }, +/obj/structure/grille/rustic, +/obj/structure/window/reinforced/polarized/full{ + id = "SP-Sauna" + }, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/SurvivalPool) +"RD" = ( +/obj/item/weapon/stool/padded, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/SurvivalPool) +"Tf" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/button/windowtint{ + id = "SP-Pool"; + pixel_x = -27 + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/SurvivalPool) +"TV" = ( +/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner, +/area/survivalpod/superpose/SurvivalPool) +"Yb" = ( +/obj/machinery/door/window/survival_pod, +/obj/machinery/power/apc/alarms_hidden{ + dir = 1; + pixel_y = 20 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/survivalpod/superpose/SurvivalPool) +"YF" = ( +/turf/simulated/floor/water/pool, +/area/survivalpod/superpose/SurvivalPool) +"YZ" = ( +/obj/machinery/light, +/turf/simulated/floor/water/deep/pool, +/area/survivalpod/superpose/SurvivalPool) +"Ze" = ( +/turf/simulated/floor/water/deep/pool, +/area/survivalpod/superpose/SurvivalPool) + +(1,1,1) = {" +Nk +TV +iA +Aa +ul +bt +Rw +ih +ih +cB +Nk +"} +(2,1,1) = {" +TV +yN +KM +mK +kZ +TV +gE +Ls +zi +zi +il +"} +(3,1,1) = {" +rw +yN +KM +gf +Qo +PV +KB +Mm +zi +wl +IW +"} +(4,1,1) = {" +Aa +Ju +KM +gf +Lb +TV +sX +rP +zi +zi +jH +"} +(5,1,1) = {" +Aa +yN +KM +gf +yA +TV +Rw +ih +ih +cB +DO +"} +(6,1,1) = {" +TV +yN +KM +gf +bG +Tf +YF +YF +Ze +Ze +eM +"} +(7,1,1) = {" +Aa +TV +Yb +gf +bG +RD +YF +Ok +Ze +Ze +QB +"} +(8,1,1) = {" +Aa +bS +yE +vr +bG +qA +YF +YF +Ze +YZ +QB +"} +(9,1,1) = {" +DO +Nd +yE +vr +bG +RD +YF +YF +wS +Ze +QB +"} +(10,1,1) = {" +TV +hC +yE +vr +ki +IV +YF +YF +Ze +Ze +mr +"} +(11,1,1) = {" +Nk +TV +xf +Aa +ul +aJ +al +uA +uA +CK +Nk +"} diff --git a/modular_chomp/maps/submaps/shelters/SurvivalQuarters-9x9.dmm b/modular_chomp/maps/submaps/shelters/SurvivalQuarters-9x9.dmm new file mode 100644 index 0000000000..b8d6be66e6 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/SurvivalQuarters-9x9.dmm @@ -0,0 +1,60 @@ +"a" = (/turf/simulated/shuttle/wall/voidcraft/survival,/area/survivalpod/superpose/SurvivalQuarters) +"b" = (/obj/structure/fans,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalQuarters) +"c" = (/obj/machinery/recharge_station,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalQuarters) +"e" = (/obj/structure/window/reinforced/survival_pod{opacity = 1},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/table/reinforced{pixel_x = 5; pixel_y = -2},/obj/item/weapon/paper_bin{pixel_x = 9},/obj/machinery/vending/loadout/uniform{pixel_x = -5},/obj/item/weapon/pen{pixel_x = 11; pixel_y = -3},/obj/item/weapon/pen{pixel_x = 10; pixel_y = 5},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalQuarters) +"f" = (/obj/structure/fans/tiny,/obj/effect/floor_decal/industrial/danger/full,/obj/machinery/door/airlock/voidcraft/survival_pod,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalQuarters) +"g" = (/obj/structure/sign/mining/survival{dir = 4},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalQuarters) +"h" = (/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "smartfridge"; icon_contents = "boxes"; icon_state = "smartfridge"; name = "Advanced storage"; pixel_x = -3; pixel_y = -1},/obj/item/weapon/towel{color = "#ff0000"; name = "red towel"},/obj/item/weapon/towel{color = "#ff0000"; name = "red towel"},/obj/item/weapon/towel{color = "#FF8C00"; name = "orange towel"; pixel_x = -2; pixel_y = -4},/obj/item/weapon/towel{color = "#FF8C00"; name = "orange towel"; pixel_x = -2; pixel_y = -4},/obj/item/weapon/towel{color = "#90ee90"; name = "green towel"},/obj/item/weapon/towel{color = "#90ee90"; name = "green towel"},/obj/item/weapon/towel{color = "#b5651d"; name = "brown towel"},/obj/item/weapon/towel{color = "#b5651d"; name = "brown towel"},/obj/item/weapon/towel,/obj/item/weapon/towel,/obj/random/soap,/obj/random/soap,/obj/random/soap,/obj/random/soap,/obj/random/soap,/obj/random/soap,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/item/weapon/tape_roll{pixel_x = 4; pixel_y = 4},/obj/item/weapon/tape_roll{pixel_x = 4; pixel_y = 4},/obj/item/device/taperecorder,/obj/item/device/tape/random,/obj/item/device/tape/random,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/folder/yellow,/obj/item/weapon/folder/yellow,/obj/item/weapon/folder/yellow,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalQuarters) +"i" = (/obj/structure/bed/double,/obj/item/weapon/bedsheet/browndouble,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalQuarters) +"j" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/industrial/warning,/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalQuarters) +"k" = (/obj/structure/sign/mining/survival{dir = 1},/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalQuarters) +"l" = (/obj/structure/bed/pod,/obj/item/weapon/bedsheet/red,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalQuarters) +"m" = (/turf/simulated/floor/carpet/tealcarpet,/area/survivalpod/superpose/SurvivalQuarters) +"n" = (/obj/structure/sign/nosmoking_2{pixel_x = 30},/obj/machinery/light{dir = 4},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalQuarters) +"o" = (/obj/machinery/shower{pixel_y = 16},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalQuarters) +"p" = (/obj/structure/sign/mining,/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalQuarters) +"q" = (/obj/structure/closet/walllocker_double/south{name = "Survival Cabinet"},/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalQuarters) +"r" = (/obj/machinery/vending/wallmed1{dir = 4; pixel_x = -23},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalQuarters) +"s" = (/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalQuarters) +"t" = (/obj/structure/bed/double,/obj/item/weapon/bedsheet/iandouble,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalQuarters) +"u" = (/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalQuarters) +"v" = (/obj/effect/floor_decal/industrial/loading{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalQuarters) +"w" = (/obj/structure/closet/walllocker_double/north{name = "Survival Cabinet"},/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalQuarters) +"x" = (/obj/machinery/door/airlock/maintenance/common{name = "Dorm"},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalQuarters) +"y" = (/obj/structure/bed/pod,/obj/item/weapon/bedsheet/yellow,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalQuarters) +"z" = (/obj/machinery/power/apc/alarms_hidden{dir = 4; pixel_x = 20},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalQuarters) +"A" = (/obj/machinery/smartfridge/survival_pod,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/weapon/storage/box/survival/space,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/machinery/light{dir = 1},/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/starcaster_news,/obj/item/device/starcaster_news,/obj/item/device/threadneedle,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/random/soap,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/storage/box/flare,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalQuarters) +"B" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille,/obj/structure/curtain/black,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalQuarters) +"C" = (/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/toilet{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalQuarters) +"D" = (/obj/machinery/sleeper/survival_pod,/obj/machinery/cryopod{dir = 4; pixel_x = 5; pixel_y = -3},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalQuarters) +"E" = (/obj/structure/table/survival_pod,/obj/machinery/recharger{pixel_x = -5; pixel_y = -3},/obj/item/modular_computer/laptop/preset/custom_loadout/standard{pixel_x = 1; pixel_y = 15},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalQuarters) +"F" = (/obj/item/device/gps/computer,/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalQuarters) +"G" = (/obj/structure/sign/mining/survival,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalQuarters) +"H" = (/obj/machinery/door/window/survival_pod,/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalQuarters) +"I" = (/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalQuarters) +"J" = (/turf/simulated/floor/carpet/purcarpet,/area/survivalpod/superpose/SurvivalQuarters) +"K" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalQuarters) +"L" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/table/reinforced,/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/obj/machinery/recharger{pixel_x = -4; pixel_y = 9},/obj/item/pizzavoucher,/obj/item/toy/figure,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalQuarters) +"M" = (/obj/structure/sign/mining/survival{dir = 8},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalQuarters) +"N" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/obj/structure/table/reinforced,/obj/machinery/recharger{pixel_x = -4; pixel_y = 9},/obj/item/pizzavoucher,/obj/item/toy/figure,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalQuarters) +"O" = (/obj/structure/mirror{dir = 1; pixel_y = -27},/obj/structure/sink{dir = 1; pixel_y = -9},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalQuarters) +"P" = (/obj/machinery/door/window/survival_pod,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalQuarters) +"R" = (/obj/machinery/newscaster{pixel_x = 30},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalQuarters) +"S" = (/obj/structure/closet/walllocker_double/north{name = "Survival Cabinet"},/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/device/starcaster_news,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/turf/simulated/floor/wood,/area/survivalpod/superpose/SurvivalQuarters) +"U" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/toilet{dir = 4},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalQuarters) +"V" = (/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalQuarters) +"W" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalQuarters) +"X" = (/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalQuarters) +"Y" = (/turf/simulated/shuttle/wall/voidcraft/green,/area/survivalpod/superpose/SurvivalQuarters) + +(1,1,1) = {" +aupYfYkua +MbAFWLSyg +YDvIXxJKB +YEVPzuqiY +uuuenuuuu +uochRuwtY +ursHXxmKB +MUOCjNqlg +aGYYfYYGa +"} diff --git a/modular_chomp/maps/submaps/shelters/SurvivalScience-9x9.dmm b/modular_chomp/maps/submaps/shelters/SurvivalScience-9x9.dmm new file mode 100644 index 0000000000..8f725cb2df --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/SurvivalScience-9x9.dmm @@ -0,0 +1,65 @@ +"ax" = (/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalScience) +"cv" = (/obj/structure/fans/tiny,/obj/effect/floor_decal/industrial/danger/full,/obj/machinery/door/airlock/voidcraft/survival_pod,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalScience) +"eI" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/atmospherics/unary/vent_pump{dir = 8; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 8; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/SurvivalScience) +"eX" = (/obj/machinery/r_n_d/server/robotics,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/SurvivalScience) +"fo" = (/obj/structure/tubes,/obj/machinery/computer/rdservercontrol{dir = 8},/obj/structure/window/reinforced/survival_pod{opacity = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience) +"fS" = (/turf/simulated/shuttle/wall/voidcraft/survival,/area/survivalpod/superpose/SurvivalScience) +"gC" = (/obj/structure/table/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8; opacity = 1},/obj/machinery/cell_charger{pixel_x = 1; pixel_y = -2},/obj/machinery/recharger{pixel_x = -3; pixel_y = 9},/obj/structure/window/reinforced/survival_pod{opacity = 1},/obj/item/weapon/reagent_containers/food/drinks/jar{pixel_x = 10; pixel_y = 12},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience) +"gN" = (/obj/machinery/light{dir = 1},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalScience) +"gW" = (/obj/machinery/r_n_d/destructive_analyzer,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience) +"gY" = (/obj/structure/fans/tiny,/obj/effect/floor_decal/industrial/danger/full,/obj/machinery/door/airlock/voidcraft/vertical,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScience) +"hp" = (/obj/machinery/computer/rdconsole/core{dir = 4},/obj/machinery/light{dir = 8; layer = 3},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience) +"hW" = (/obj/machinery/r_n_d/protolathe,/obj/structure/sign/periodic{pixel_y = 29},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience) +"ku" = (/obj/structure/sign/science,/turf/simulated/shuttle/wall/voidcraft/lightblue,/area/survivalpod/superpose/SurvivalScience) +"mB" = (/obj/structure/reagent_dispensers/fueltank/high,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience) +"mY" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalScience) +"nQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/meter,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScience) +"oQ" = (/obj/machinery/autolathe,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience) +"ph" = (/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScience) +"pw" = (/obj/effect/floor_decal/industrial/loading{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience) +"pK" = (/obj/machinery/door/window/survival_pod{dir = 2; req_one_access = null},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience) +"sk" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/industrial/warning,/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalScience) +"uq" = (/obj/machinery/mecha_part_fabricator,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience) +"va" = (/obj/machinery/sleeper/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8; opacity = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience) +"vt" = (/obj/structure/sign/mining/survival{dir = 8},/turf/simulated/shuttle/wall/voidcraft/lightblue,/area/survivalpod/superpose/SurvivalScience) +"wq" = (/obj/machinery/smartfridge/survival_pod,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/weapon/storage/box/survival/space,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/machinery/light{dir = 1},/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/starcaster_news,/obj/item/device/starcaster_news,/obj/item/device/threadneedle,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/random/soap,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/storage/box/flare,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience) +"wY" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/recharge_station,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalScience) +"xx" = (/obj/structure/window/reinforced/survival_pod{opacity = 1},/obj/machinery/r_n_d/circuit_imprinter,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 9; pixel_y = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience) +"zw" = (/obj/item/device/gps/computer,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience) +"zR" = (/obj/structure/sign/mining,/turf/simulated/shuttle/wall/voidcraft/lightblue,/area/survivalpod/superpose/SurvivalScience) +"AA" = (/obj/structure/bed/pod,/obj/item/weapon/bedsheet/purple,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience) +"AB" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience) +"AH" = (/obj/structure/window/reinforced/survival_pod{opacity = 1},/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "smartfridge"; icon_contents = "boxes"; icon_state = "smartfridge"; name = "Advanced storage"; pixel_y = -1},/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/clothing/gloves/sterile/latex,/obj/item/clothing/gloves/sterile/latex,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/stack/material/copper{amount = 25},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/tech_disk,/obj/item/weapon/disk/tech_disk,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience) +"Ct" = (/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience) +"Cz" = (/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalScience) +"CX" = (/turf/simulated/shuttle/wall/voidcraft/lightblue,/area/survivalpod/superpose/SurvivalScience) +"EO" = (/obj/structure/sign/mining/survival,/turf/simulated/shuttle/wall/voidcraft/lightblue,/area/survivalpod/superpose/SurvivalScience) +"Gd" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille,/obj/structure/curtain/black,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalScience) +"Gt" = (/obj/machinery/r_n_d/server/core,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/SurvivalScience) +"Gx" = (/obj/structure/sign/mining/survival{dir = 4},/turf/simulated/shuttle/wall/voidcraft/lightblue,/area/survivalpod/superpose/SurvivalScience) +"HB" = (/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "smartfridge"; icon_contents = "boxes"; icon_state = "smartfridge"; name = "Advanced storage"; pixel_y = -1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = 6},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = 6},/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/device/multitool{pixel_x = 3},/obj/item/device/multitool{pixel_x = 3},/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/item/device/mmi,/obj/item/device/mmi,/obj/item/device/mmi,/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/head/welding/demon,/obj/item/clothing/glasses/welding,/obj/item/clothing/glasses/welding,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/stack/material/copper{amount = 25},/obj/item/stack/material/plastic{max_amount = 25},/obj/item/stack/material/plastic{max_amount = 25},/obj/item/stack/material/plasteel{amount = 10},/obj/item/stack/material/plasteel{amount = 10},/obj/item/stack/material/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/material/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/material/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/material/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/device/flash,/obj/item/device/flash,/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/weapon/implanter,/obj/item/weapon/implanter,/obj/item/weapon/implanter,/obj/item/weapon/storage/backpack/dufflebag/sci,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience) +"IJ" = (/obj/structure/fans,/obj/structure/window/reinforced/survival_pod{dir = 8; opacity = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience) +"Ko" = (/obj/structure/table/reinforced,/obj/item/modular_computer/laptop/preset/custom_loadout/advanced,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience) +"Mf" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/power/apc/alarms_hidden{dir = 4; pixel_x = 20},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScience) +"Nt" = (/obj/machinery/mech_recharger,/obj/machinery/newscaster{layer = 3.3; pixel_y = -27},/obj/mecha/medical/odysseus/old,/obj/effect/floor_decal/industrial/warning/full,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalScience) +"NV" = (/obj/structure/reagent_dispensers/acid{density = 0; pixel_x = -30},/obj/structure/sink/kitchen{dir = 8; pixel_x = -13},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience) +"PD" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScience) +"Qx" = (/obj/machinery/mecha_part_fabricator/pros,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience) +"TK" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalScience) +"TY" = (/obj/structure/closet/secure_closet/guncabinet/phase{pixel_y = -32},/obj/item/weapon/gun/energy/locked/frontier/holdout,/obj/item/weapon/gun/energy/locked/frontier/holdout,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/holster/waist,/obj/item/clothing/accessory/holster/waist,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScience) +"Vp" = (/obj/structure/window/reinforced/survival_pod{opacity = 1},/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/clipboard,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/item/weapon/reagent_containers/dropper{pixel_y = -4},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScience) +"VG" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; icon_state = "map_vent_out"; use_power = 1},/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/SurvivalScience) +"Yk" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/warning/full,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalScience) +"Zq" = (/obj/machinery/atmospherics/unary/freezer{dir = 8; icon_state = "freezer_1"; power_setting = 20; set_temperature = 73; use_power = 1},/obj/machinery/light{dir = 4},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScience) + +(1,1,1) = {" +fSaxGdkucvCXzRaxfS +axhWKogWmYIJwqzwax +vthpABCtCzvapwAAGd +CXAHVpxxCzgCpKfoCX +gYTKCzgNCzphPDMfax +CXQxHBuqCzwYnQZqCX +vtNVCtCtCzYkGteIGx +axmBoQTYskNteXVGax +fSaxzRCXcvCXEOaxfS +"} diff --git a/modular_chomp/maps/submaps/shelters/SurvivalSecurity-9x9.dmm b/modular_chomp/maps/submaps/shelters/SurvivalSecurity-9x9.dmm new file mode 100644 index 0000000000..2eee234579 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/SurvivalSecurity-9x9.dmm @@ -0,0 +1,60 @@ +"a" = (/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurity) +"b" = (/obj/item/device/tape/random,/obj/item/device/taperecorder,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/item/weapon/pen,/obj/structure/table/survival_pod,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurity) +"c" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalSecurity) +"d" = (/obj/machinery/button/remote/blast_door{dir = 8; id = "SP-Cell2"; name = "Cell Door"; pixel_x = -25; pixel_y = 8; req_one_access = list(2,4)},/obj/structure/closet/walllocker_double/survival/south,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalSecurity) +"e" = (/obj/structure/grille,/obj/structure/window/reinforced/polarized{dir = 1; id = "SP-Sec"},/obj/structure/window/reinforced/polarized{dir = 4; id = "SP-Sec"},/obj/structure/window/reinforced/polarized{dir = 8; id = "SP-Sec"},/obj/structure/window/reinforced/polarized{id = "SP-Sec"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalSecurity) +"f" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalSecurity) +"g" = (/obj/structure/window/reinforced/polarized{dir = 4; id = "SP-Sec"},/obj/structure/window/reinforced/polarized{id = "SP-Sec"},/obj/machinery/washing_machine{pixel_x = 2; pixel_y = 18},/obj/item/weapon/storage/laundry_basket{pixel_x = -1; pixel_y = -7},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurity) +"h" = (/obj/structure/grille,/obj/structure/window/reinforced/polarized{dir = 1; id = "SP-Sec"},/obj/structure/window/reinforced/polarized{dir = 4; id = "SP-Sec"},/obj/structure/window/reinforced/polarized{dir = 8; id = "SP-Sec"},/obj/structure/window/reinforced/polarized{id = "SP-Sec"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalSecurity) +"i" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalSecurity) +"j" = (/obj/structure/sign/mining/survival{dir = 8},/turf/simulated/shuttle/wall/voidcraft/red,/area/survivalpod/superpose/SurvivalSecurity) +"k" = (/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalSecurity) +"l" = (/obj/machinery/door/airlock/maintenance/sec{name = "Security Door"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalSecurity) +"m" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/curtain/open/shower,/obj/structure/toilet/prison{dir = 4},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalSecurity) +"n" = (/obj/structure/grille,/obj/structure/window/reinforced/polarized{dir = 1; id = "SP-Sec"},/obj/structure/window/reinforced/polarized{dir = 4; id = "SP-Sec"},/obj/structure/window/reinforced/polarized{dir = 8; id = "SP-Sec"},/obj/structure/window/reinforced/polarized{id = "SP-Sec"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalSecurity) +"o" = (/obj/structure/closet/secure_closet/brig{id = "Cell"; name = "Cell Locker"},/obj/machinery/light/small,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurity) +"p" = (/obj/structure/sign/mining/survival{dir = 1},/turf/simulated/shuttle/wall/voidcraft/red,/area/survivalpod/superpose/SurvivalSecurity) +"q" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalSecurity) +"r" = (/obj/machinery/door/blast/regular{dir = 4; id = "SP-Cell"; name = "Cell Door"},/obj/effect/floor_decal/industrial/danger/full,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalSecurity) +"t" = (/obj/structure/bed/pod,/obj/item/weapon/bedsheet/red,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurity) +"u" = (/turf/simulated/shuttle/wall/voidcraft/red,/area/survivalpod/superpose/SurvivalSecurity) +"v" = (/obj/machinery/light{dir = 8},/obj/machinery/button/flasher{id = "SP-Cell flash"; name = "Cell Flash"; pixel_x = 7; pixel_y = 26; req_access = list(2,4)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/bed/chair/bay/chair/padded/black{dir = 8},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalSecurity) +"w" = (/obj/machinery/newscaster{pixel_x = 30},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalSecurity) +"x" = (/obj/machinery/dnaforensics{pixel_x = -4},/obj/structure/tubes,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurity) +"y" = (/obj/structure/bed/padded,/obj/machinery/flasher{id = "SP-Cell flash"; pixel_y = -26},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurity) +"z" = (/obj/structure/sign/mining/survival{dir = 4},/turf/simulated/shuttle/wall/voidcraft/red,/area/survivalpod/superpose/SurvivalSecurity) +"A" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/power/apc/alarms_hidden{dir = 1; pixel_y = 20},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalSecurity) +"B" = (/obj/machinery/flasher{id = "SP-Cell flash"; name = "Floor mounted flash"},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurity) +"C" = (/obj/structure/grille,/obj/structure/window/reinforced/polarized{dir = 1; id = "SP-Sec"},/obj/structure/window/reinforced/polarized{dir = 4; id = "SP-Sec"},/obj/structure/window/reinforced/polarized{dir = 8; id = "SP-Sec"},/obj/structure/window/reinforced/polarized{id = "SP-Sec"},/obj/structure/cable/green,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalSecurity) +"D" = (/obj/structure/fans/tiny,/obj/effect/floor_decal/industrial/danger/full,/obj/machinery/door/airlock/voidcraft/vertical,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalSecurity) +"E" = (/obj/structure/bed/chair,/obj/machinery/newscaster{pixel_x = -30},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurity) +"F" = (/obj/structure/table/steel,/obj/machinery/button/windowtint{id = "SP-Sec"; pixel_x = 10; pixel_y = 25},/obj/structure/fans{pixel_y = 32},/obj/machinery/microscope{pixel_y = 4},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurity) +"G" = (/turf/simulated/shuttle/wall/voidcraft/survival,/area/survivalpod/superpose/SurvivalSecurity) +"H" = (/obj/structure/sign/mining/survival,/turf/simulated/shuttle/wall/voidcraft/red,/area/survivalpod/superpose/SurvivalSecurity) +"I" = (/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurity) +"J" = (/obj/machinery/vending/emergencyfood/filled,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurity) +"K" = (/obj/structure/bed/pod,/obj/item/weapon/bedsheet/green,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurity) +"L" = (/obj/machinery/door/window/survival_pod{dir = 1; icon_state = "windoor"},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalSecurity) +"M" = (/obj/machinery/door/window/brigdoor/northright{dir = 8; id = "SP-Cell"; name = "Cell"; req_access = null; req_one_access = list(2,4)},/obj/machinery/door/blast/regular{dir = 4; id = "SP-Cell2"; name = "Cell Door"},/obj/effect/floor_decal/industrial/danger/full,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalSecurity) +"N" = (/obj/machinery/button/remote/blast_door{id = "SP-Cell"; name = "Cell Door"; pixel_x = 6; pixel_y = -33; req_one_access = list(2,4)},/obj/machinery/button/flasher{id = "SP-Cell flash"; name = "Cell Flash"; pixel_x = 7; pixel_y = -24; req_access = list(2,4)},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalSecurity) +"P" = (/obj/machinery/vending/security,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalSecurity) +"Q" = (/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/weapon/storage/box/survival/space,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/machinery/light{dir = 1},/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/starcaster_news,/obj/item/device/starcaster_news,/obj/item/device/threadneedle,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/random/soap,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/storage/box/flare,/obj/structure/bed/chair/comfy/black{dir = 8},/obj/machinery/smartfridge/survival_pod{pixel_y = 28},/obj/item/device/reagent_scanner,/obj/item/device/mass_spectrometer/adv,/obj/item/weapon/forensics/sample_kit/powder,/obj/item/weapon/forensics/sample_kit,/obj/item/clothing/gloves/sterile/latex,/obj/item/weapon/reagent_containers/spray/luminol,/obj/item/weapon/storage/briefcase/crimekit,/obj/item/weapon/storage/briefcase/crimekit,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/storage/box/bodybags,/obj/item/device/camera{desc = "A one use - polaroid camera. 30 photos left."; name = "detectives camera"; pictures_left = 30; pixel_x = 2; pixel_y = 3},/obj/item/device/camera_film,/obj/item/weapon/storage/photo_album{pixel_y = -10},/obj/item/device/flash,/obj/item/device/flash,/obj/item/device/flash,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurity) +"S" = (/obj/structure/table/steel,/obj/item/device/starcaster_news{pixel_x = -6; pixel_y = 10},/obj/item/toy/eight_ball{pixel_x = 5; pixel_y = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurity) +"T" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/industrial/loading{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurity) +"U" = (/obj/structure/sign/mining,/turf/simulated/shuttle/wall/voidcraft/red,/area/survivalpod/superpose/SurvivalSecurity) +"V" = (/obj/structure/bed/pod,/obj/item/weapon/bedsheet/purple,/obj/item/device/gps/computer{pixel_y = 0},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurity) +"W" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{dir = 8; pixel_x = 25},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/SurvivalSecurity) +"Y" = (/obj/structure/reagent_dispensers/water_cooler/full{pixel_x = -10; pixel_y = 12},/obj/structure/closet/crate/bin{pixel_x = 6; pixel_y = 13},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurity) +"Z" = (/obj/item/weapon/newspaper,/obj/item/device/tape,/obj/item/device/taperecorder{pixel_x = -4; pixel_y = 2},/obj/structure/table/standard,/obj/machinery/light{dir = 8},/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurity) + +(1,1,1) = {" +GkpukuUkG +ktIYeFQVk +jKaShbTxz +uEBgkPlku +kZanvfNAD +uJBCkckwu +jmLraaMqz +kiWkyokdk +GkUukuHkG +"} diff --git a/modular_chomp/maps/submaps/shelters/TinyCombatShip-9x7.dmm b/modular_chomp/maps/submaps/shelters/TinyCombatShip-9x7.dmm new file mode 100644 index 0000000000..d280de6aae --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/TinyCombatShip-9x7.dmm @@ -0,0 +1,33 @@ +"a" = (/turf/template_noop,/area/template_noop) +"b" = (/obj/machinery/disperser/front{dir = 1},/turf/template_noop,/area/template_noop) +"c" = (/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/TinyCombatShip) +"f" = (/obj/structure/fans/hardlight/colorable{color = "red"},/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = null; locked = 1; req_access = list(11)},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/TinyCombatShip) +"h" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/shuttle/engine/heater,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/TinyCombatShip) +"j" = (/obj/structure/salvageable/machine,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/TinyCombatShip) +"k" = (/turf/simulated/wall/rshull,/area/survivalpod/superpose/TinyCombatShip) +"l" = (/obj/machinery/disperser/back{dir = 1},/obj/structure/ship_munition/disperser_charge/explosive,/turf/simulated/wall/shull,/area/survivalpod/superpose/TinyCombatShip) +"n" = (/obj/structure/closet/walllocker_double/medical/west,/obj/item/weapon/storage/firstaid,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2,/obj/item/roller,/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/TinyCombatShip) +"q" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/machinery/light/poi{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/TinyCombatShip) +"s" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular/open{dir = 4; id = "stargazer_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TinyCombatShip) +"t" = (/obj/effect/catwalk_plated/dark,/turf/template_noop,/area/survivalpod/superpose/TinyCombatShip) +"u" = (/obj/machinery/disperser/middle{dir = 1},/turf/template_noop,/area/template_noop) +"x" = (/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/obj/structure/closet{name = "Survival closet"},/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/closet/walllocker_double/kitchen/east{name = "Ration Cabinet"},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/TinyCombatShip) +"D" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/TinyCombatShip) +"F" = (/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/TinyCombatShip) +"H" = (/obj/structure/bed/chair/bay/comfy/red{dir = 1},/obj/machinery/door/window/survival_pod{dir = 2},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/TinyCombatShip) +"L" = (/obj/machinery/atmospherics/unary/engine{dir = 1},/turf/template_noop,/area/survivalpod/superpose/TinyCombatShip) +"M" = (/obj/effect/catwalk_plated/dark,/obj/machinery/light/poi{dir = 1},/turf/template_noop,/area/survivalpod/superpose/TinyCombatShip) +"P" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/TinyCombatShip) +"S" = (/turf/simulated/wall/shull,/area/survivalpod/superpose/TinyCombatShip) +"U" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/window/reinforced/survival_pod,/obj/machinery/light/poi{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/TinyCombatShip) +"X" = (/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/structure/table/rack/shelf/steel,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/TinyCombatShip) + +(1,1,1) = {" +aaakskaaa +abkkjkkba +SusUHqsuS +SlSncxSlS +SSFDcPXSS +aShSfShSa +aSLMtMLSa +"} diff --git a/modular_chomp/maps/submaps/shelters/TradingShip-40x22.dmm b/modular_chomp/maps/submaps/shelters/TradingShip-40x22.dmm new file mode 100644 index 0000000000..e193ca15dd --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/TradingShip-40x22.dmm @@ -0,0 +1,223 @@ +"aa" = (/obj/machinery/button/remote/blast_door{id = "tradestarshutters"; name = "remote shutter control"; pixel_x = 30; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"aA" = (/obj/structure/shuttle/engine/propulsion{dir = 4; icon_state = "propulsion_l"},/turf/simulated/shuttle/plating/airless/carry,/area/survivalpod/superpose/TradingShip) +"aP" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/structure/largecrate/animal/corgi,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"bf" = (/obj/structure/table/standard,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/clothing/gloves/yellow,/obj/item/clothing/gloves/yellow,/obj/item/clothing/gloves/yellow,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"bk" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"bm" = (/obj/structure/table/standard,/obj/item/clothing/suit/space/void/merc,/obj/item/clothing/suit/space/void/merc,/obj/item/clothing/suit/space/void/merc,/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/head/helmet/space/void/merc,/obj/item/clothing/head/helmet/space/void/merc,/obj/item/clothing/head/helmet/space/void/merc,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"ca" = (/obj/item/weapon/coin/phoron,/obj/item/weapon/coin/phoron,/obj/item/weapon/coin/phoron,/obj/item/weapon/coin/phoron,/obj/item/weapon/coin/phoron,/obj/item/weapon/coin/phoron,/obj/item/weapon/coin/phoron,/obj/item/weapon/coin/phoron,/obj/item/weapon/coin/phoron,/obj/item/weapon/coin/phoron,/obj/item/weapon/coin/phoron,/obj/item/weapon/coin/phoron,/obj/item/weapon/coin/phoron,/obj/item/weapon/coin/phoron,/obj/item/weapon/coin/phoron,/obj/item/weapon/coin/phoron,/obj/item/weapon/coin/phoron,/obj/item/weapon/coin/phoron,/obj/item/weapon/coin/phoron,/obj/item/weapon/coin/phoron,/obj/item/weapon/coin/phoron,/obj/item/weapon/coin/phoron,/obj/item/weapon/coin/phoron,/obj/item/weapon/coin/phoron,/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "fridge_sci"; icon_contents = "chem"; icon_state = "fridge_sci"; name = "Phoron storage"; pixel_y = 0},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"cC" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 10},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"cM" = (/obj/machinery/vending/medical{pixel_y = -32; req_access = null},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"cV" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"cX" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "tradeportshutters"; name = "Blast Shutters"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced/full,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TradingShip) +"ds" = (/obj/machinery/atmospherics/unary/engine/bigger{dir = 8},/turf/simulated/shuttle/plating/airless/carry,/area/survivalpod/superpose/TradingShip) +"dy" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 1},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"dP" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/closet/crate/secure/loot,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"dY" = (/obj/machinery/light{dir = 4},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"dZ" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/cell/high,/obj/item/weapon/cell/high,/obj/item/weapon/cell/hyper,/obj/item/weapon/cell/potato,/obj/structure/window/reinforced,/obj/item/weapon/cell/slime,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"es" = (/obj/structure/table/standard,/obj/item/stack/material/steel{amount = 2},/obj/item/stack/material/steel{amount = 2},/obj/item/stack/material/glass{amount = 15},/obj/item/stack/material/glass{amount = 15},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"eE" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 2; req_access = null},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/TradingShip) +"eS" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/item/device/kit/paint/ripley/death,/obj/item/device/kit/paint/ripley/flames_blue,/obj/item/device/kit/paint/ripley/flames_red,/obj/item/device/kit/paint/ripley,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"fe" = (/obj/machinery/mineral/mint{emagged = 1},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"fm" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"fG" = (/obj/machinery/vending/cigarette{name = "hacked cigarette machine"; prices = list(); products = list(/obj/item/weapon/storage/fancy/cigarettes=10,/obj/item/weapon/storage/box/matches=10,/obj/item/weapon/flame/lighter/zippo=4,/obj/item/clothing/mask/smokable/cigarette/cigar/havana=2)},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"fJ" = (/obj/machinery/door/airlock/silver{name = "Restroom"},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/TradingShip) +"fP" = (/obj/vehicle/train/engine,/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"fU" = (/obj/machinery/door/window/northright{name = "Cargo Hold"; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"gq" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"gA" = (/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"gJ" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"hm" = (/obj/structure/table/steel_reinforced,/obj/machinery/button/remote/blast_door{id = "tradebridgeshutters"; name = "remote shutter control"; pixel_x = 30; req_access = list(150)},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"hx" = (/obj/structure/window/reinforced,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "trade"; name = "Shop Shutters"; opacity = 0},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TradingShip) +"hI" = (/obj/structure/closet,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"hK" = (/obj/machinery/autolathe{desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; emagged = 1; hacked = 1; name = "Unlocked Autolathe"},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"ia" = (/obj/machinery/optable,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"jA" = (/obj/structure/fans/hardlight,/obj/machinery/door/airlock/multi_tile/metal/mait,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/TradingShip) +"jH" = (/obj/structure/table/standard,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"kd" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/meter,/obj/structure/largecrate/animal/cat,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"kw" = (/obj/machinery/embedded_controller/radio/simple_docking_controller{dir = 4; frequency = 1380; id_tag = "trade_shuttle"; pixel_x = -25; req_one_access = list(101); tag_door = "trade_shuttle_hatch"},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"kx" = (/obj/structure/frame/computer,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"kB" = (/obj/machinery/button/remote/blast_door{id = "tradeportshutters"; name = "remote shutter control"; pixel_x = 30; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"kD" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"kO" = (/obj/machinery/door/window/northleft{name = "Cargo Hold"; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"kU" = (/obj/machinery/access_button{master_tag = null; pixel_x = 27; pixel_y = -7; req_one_access = null},/obj/machinery/door/airlock/external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Ship Hatch"; req_access = null},/obj/structure/fans/hardlight,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/TradingShip) +"kV" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/survivalpod/superpose/TradingShip) +"lm" = (/obj/structure/closet/crate,/obj/fiftyspawner/wood,/obj/fiftyspawner/wood,/obj/fiftyspawner/wood/sif,/obj/fiftyspawner/wood/sif,/obj/fiftyspawner/turcarpet,/obj/fiftyspawner/tealcarpet,/obj/fiftyspawner/sblucarpet,/obj/fiftyspawner/purcarpet,/obj/fiftyspawner/oracarpet,/obj/fiftyspawner/blucarpet,/obj/fiftyspawner/marble,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/fiftyspawner/cardboard,/obj/fiftyspawner/cardboard,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/TradingShip) +"lv" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "tradeportshutters"; name = "Blast Shutters"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced/full,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TradingShip) +"lQ" = (/obj/structure/fans/hardlight,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/TradingShip) +"lW" = (/obj/structure/table/standard,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"md" = (/obj/structure/salvageable/console_os{dir = 4},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"mi" = (/obj/structure/window/reinforced,/obj/machinery/door/blast/shutters{density = 0; icon_state = "shutter0"; id = "tradestarshutters"; name = "Blast Shutters"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced/full,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TradingShip) +"mF" = (/obj/structure/mirror{pixel_y = 28},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/TradingShip) +"mJ" = (/obj/structure/table/standard,/obj/item/clothing/gloves/sterile/latex,/obj/item/clothing/mask/surgical,/obj/item/weapon/surgical/retractor{pixel_y = 6},/obj/item/weapon/surgical/scalpel,/obj/item/weapon/surgical/surgicaldrill,/obj/item/weapon/surgical/circular_saw,/obj/item/stack/nanopaste,/obj/item/weapon/surgical/hemostat{pixel_y = 4},/obj/item/weapon/surgical/cautery{pixel_y = 4},/obj/item/weapon/surgical/FixOVein{pixel_x = -6; pixel_y = 1},/obj/item/stack/medical/advanced/bruise_pack,/obj/item/weapon/surgical/bonesetter,/obj/item/weapon/surgical/bonegel{pixel_x = 4; pixel_y = 3},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"mK" = (/obj/machinery/light{dir = 1},/obj/structure/bookcase,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"mR" = (/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 8},/obj/item/weapon/pen{pixel_y = 4},/obj/machinery/light,/obj/structure/table/glass,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"mY" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/coin/uranium,/obj/item/weapon/coin/silver,/obj/item/weapon/coin/platinum,/obj/item/weapon/coin/phoron,/obj/item/weapon/coin/iron,/obj/item/weapon/coin/gold,/obj/item/weapon/coin/diamond,/obj/structure/window/reinforced,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"nh" = (/obj/machinery/door/airlock/external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Ship Hatch"; req_access = null},/obj/machinery/atmospherics/pipe/simple/visible,/obj/structure/fans/hardlight,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/TradingShip) +"nC" = (/obj/structure/table/steel_reinforced,/obj/item/clothing/head/bearpelt,/obj/item/clothing/head/bowler,/obj/item/clothing/head/caphat/cap,/obj/item/clothing/head/beaverhat,/obj/item/clothing/head/beret/centcom,/obj/item/clothing/head/beret/sec,/obj/item/clothing/head/collectable/kitty,/obj/item/clothing/head/collectable/kitty,/obj/item/clothing/head/collectable/kitty,/obj/item/clothing/head/collectable/rabbitears,/obj/item/clothing/head/collectable/rabbitears,/obj/item/clothing/head/collectable/rabbitears,/obj/item/clothing/head/collectable/petehat,/obj/item/clothing/head/collectable/pirate,/obj/item/clothing/head/collectable/wizard,/obj/item/clothing/head/collectable/xenom,/obj/item/clothing/head/pin/flower/violet,/obj/item/clothing/head/pin/flower/blue,/obj/item/clothing/head/pin/flower/orange,/obj/item/clothing/head/pin/flower/pink,/obj/item/clothing/head/justice,/obj/item/clothing/head/justice/blue,/obj/item/clothing/head/justice/green,/obj/item/clothing/head/justice/pink,/obj/item/clothing/head/justice/yellow,/obj/item/clothing/head/philosopher_wig,/obj/item/clothing/head/plaguedoctorhat,/obj/item/clothing/head/xenos,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"nD" = (/obj/structure/table/steel_reinforced,/obj/random/firstaid,/obj/random/firstaid,/obj/random/firstaid,/obj/random/firstaid,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"nT" = (/obj/machinery/vending/sovietsoda,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"nW" = (/obj/machinery/vending/snack{name = "hacked Getmore Chocolate Corp"; prices = list()},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"oi" = (/obj/structure/table/steel_reinforced,/obj/random/medical,/obj/random/medical,/obj/random/medical,/obj/random/medical,/obj/structure/window/reinforced,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"pl" = (/obj/machinery/door/airlock/glass_engineering{name = "Engineering"; req_access = null; req_one_access = null},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/TradingShip) +"pr" = (/obj/machinery/door/airlock/silver{name = "Toilet"},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/TradingShip) +"pU" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "tradestarshutters"; name = "Blast Shutters"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced/full,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TradingShip) +"qc" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 8},/obj/item/weapon/pen{pixel_y = 4},/turf/simulated/floor/carpet,/area/survivalpod/superpose/TradingShip) +"qo" = (/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "tradebridgeshutters"; name = "Blast Shutters"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced/full,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TradingShip) +"qz" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/largecrate/animal/corgi,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"qT" = (/obj/machinery/door/window/southright{name = "Cargo Hold"; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"qV" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/structure/largecrate/animal/cat,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"rf" = (/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/TradingShip) +"rg" = (/obj/structure/flora/pottedplant{icon_state = "plant-10"},/turf/simulated/floor/carpet,/area/survivalpod/superpose/TradingShip) +"ri" = (/obj/machinery/door/airlock/command{name = "Captain's Quarters"; req_access = null; req_one_access = null},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/TradingShip) +"rq" = (/obj/machinery/door/blast/shutters{density = 0; icon_state = "shutter0"; id = "tradebridgeshutters"; name = "Blast Shutters"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced/full,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TradingShip) +"rx" = (/obj/machinery/door/window/westright{name = "Storefront"; req_access = list(160)},/obj/structure/table/marble,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "trade"; name = "Shop Shutters"; opacity = 0},/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/TradingShip) +"rG" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "tradeportshutters"; name = "Blast Shutters"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced/full,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TradingShip) +"se" = (/obj/structure/curtain/open/shower,/obj/machinery/shower{pixel_y = 3},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/TradingShip) +"sh" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/closet/crate/secure/loot,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"sj" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet,/area/survivalpod/superpose/TradingShip) +"sT" = (/obj/machinery/bodyscanner{dir = 8},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"th" = (/obj/machinery/iv_drip,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"tu" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/light/small,/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/TradingShip) +"tx" = (/obj/machinery/door/airlock/command{name = "Bridge"; req_access = null; req_one_access = null},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/TradingShip) +"tN" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/TradingShip) +"tQ" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TradingShip) +"tX" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/largecrate/hoverpod,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"ua" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/glasses/square,/turf/simulated/floor/carpet,/area/survivalpod/superpose/TradingShip) +"uo" = (/obj/structure/closet/crate,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/TradingShip) +"uv" = (/turf/simulated/floor/carpet,/area/survivalpod/superpose/TradingShip) +"uA" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning,/obj/item/device/kit/paint/gygax/darkgygax,/obj/item/device/kit/paint/gygax/recitence,/obj/item/device/kit/paint/durand,/obj/item/device/kit/paint/durand/phazon,/obj/item/device/kit/paint/durand/seraph,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"uL" = (/obj/machinery/light,/obj/structure/table/standard,/obj/item/weapon/soap,/obj/item/weapon/towel{color = "#0000FF"},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"uR" = (/obj/structure/toilet,/obj/machinery/light/small{dir = 1},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/TradingShip) +"vs" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"vC" = (/obj/machinery/vending/assist{contraband = null; name = "Old Vending Machine"; products = list(/obj/item/device/assembly/prox_sensor=5,/obj/item/device/assembly/signaler=4,/obj/item/device/assembly/infra=4,/obj/item/device/assembly/prox_sensor=4,/obj/item/weapon/handcuffs=8,/obj/item/device/flash=4,/obj/item/weapon/cartridge/signal=4,/obj/item/clothing/glasses/sunglasses=4)},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"vL" = (/obj/machinery/vending/boozeomat{req_access = null},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"vM" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/carpet,/area/survivalpod/superpose/TradingShip) +"wn" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/turf/simulated/floor/carpet,/area/survivalpod/superpose/TradingShip) +"wz" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/door/airlock/external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Ship Hatch"; req_access = null},/obj/machinery/access_button{dir = 1; master_tag = null; pixel_x = -27; pixel_y = 7; req_one_access = null},/obj/structure/fans/hardlight,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/TradingShip) +"wT" = (/obj/machinery/door/window/southleft{name = "Cargo Hold"; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"xd" = (/obj/structure/table/steel_reinforced,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/item/weapon/weldpack,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"xi" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/inflatable_duck,/obj/random/tech_supply/nofail,/obj/random/tech_supply/nofail,/obj/random/tech_supply/nofail,/obj/random/tech_supply/nofail,/obj/random/tech_supply/nofail,/obj/random/tech_supply/nofail,/obj/random/tech_supply/nofail,/obj/random/tech_supply/nofail,/obj/random/tech_supply/nofail,/obj/random/tech_supply/nofail,/obj/random/tech_supply/nofail,/obj/random/tech_supply/nofail,/obj/random/tech_supply/nofail,/obj/random/tech_supply/nofail,/obj/random/tech_supply/nofail,/obj/random/tech_supply/nofail,/obj/random/tech_supply/nofail,/obj/random/tech_supply/nofail,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"xz" = (/obj/structure/window/reinforced,/obj/machinery/door/blast/shutters{density = 0; icon_state = "shutter0"; id = "tradestarshutters"; name = "Blast Shutters"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced/full,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TradingShip) +"xF" = (/obj/structure/closet/wardrobe/pjs,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"xM" = (/obj/machinery/light/small{dir = 4},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"xZ" = (/obj/structure/filingcabinet/filingcabinet,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"yw" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/rd,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"yx" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/rig/internalaffairs,/obj/item/clothing/head/helmet/space/void/wizard,/obj/item/clothing/suit/space/void/wizard,/obj/item/device/survivalcapsule/luxury,/obj/item/device/survivalcapsule/luxurybar,/obj/item/device/survivalcapsule/military,/obj/item/device/survivalcapsule/tabiranth,/obj/item/device/survivalcapsule,/obj/item/device/survivalcapsule,/obj/item/device/survivalcapsule,/obj/item/device/survivalcapsule/luxury,/obj/item/device/survivalcapsule/luxury,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"yN" = (/obj/machinery/photocopier,/turf/simulated/floor/carpet,/area/survivalpod/superpose/TradingShip) +"yS" = (/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/obj/structure/closet{name = "Survival closet"},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"zh" = (/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"zN" = (/obj/machinery/button/remote/blast_door{id = "trade"; name = "Shop Shutters"; pixel_y = -26},/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/TradingShip) +"Au" = (/obj/structure/shuttle/engine/propulsion{dir = 4; icon_state = "propulsion_r"},/turf/simulated/shuttle/plating/airless/carry,/area/survivalpod/superpose/TradingShip) +"AL" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; id_tag = null},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{dir = 4; frequency = 1331; id_tag = "trade2_control"; pixel_x = -25; req_access = list(150); tag_airpump = null; tag_chamber_sensor = null; tag_exterior_door = null; tag_interior_door = null},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"AR" = (/obj/structure/closet/walllocker/emerglocker{pixel_y = -32},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Be" = (/obj/structure/shuttle/engine/heater{dir = 4},/turf/simulated/shuttle/plating/airless,/area/survivalpod/superpose/TradingShip) +"BH" = (/obj/structure/table/steel_reinforced,/obj/item/clothing/gloves/black,/obj/item/clothing/gloves/blue,/obj/item/clothing/gloves/brown,/obj/item/clothing/gloves/captain,/obj/item/clothing/gloves/combat,/obj/item/clothing/gloves/green,/obj/item/clothing/gloves/grey,/obj/item/clothing/gloves/light_brown,/obj/item/clothing/gloves/purple,/obj/item/clothing/gloves/rainbow,/obj/item/clothing/gloves/swat,/obj/item/clothing/gloves/white,/obj/structure/window/reinforced{dir = 1},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"BU" = (/obj/structure/bed/chair,/turf/simulated/floor/carpet,/area/survivalpod/superpose/TradingShip) +"Ca" = (/obj/structure/closet/crate,/obj/fiftyspawner/plasteel,/obj/fiftyspawner/plasteel,/obj/fiftyspawner/phoronrglass,/obj/fiftyspawner/phoronrglass,/obj/item/stack/material/lead{amount = 50},/obj/item/stack/material/lead{amount = 50},/obj/fiftyspawner/gold,/obj/fiftyspawner/phoron,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/TradingShip) +"Cu" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/carpet,/area/survivalpod/superpose/TradingShip) +"CV" = (/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/TradingShip) +"DT" = (/obj/machinery/light,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"DX" = (/obj/structure/table/steel_reinforced,/obj/random/tool,/obj/random/tool,/obj/random/tool,/obj/random/tool,/obj/random/tool,/obj/item/slimepotion/stabilizer,/obj/item/slimepotion/steroid,/obj/item/slimepotion/unity,/obj/item/slimepotion/friendship,/obj/item/slimepotion/friendship,/obj/item/slimepotion/feeding,/obj/item/slimepotion/docility,/obj/item/slimepotion/enhancer,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"EK" = (/obj/machinery/door/airlock/silver{name = "Sleeping"},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/TradingShip) +"ET" = (/obj/structure/undies_wardrobe,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Fy" = (/obj/structure/table/woodentable,/obj/item/weapon/card/id/casino{desc = "An alien id card with strange glowing markings."; icon_state = "changeling"; name = "Alien id"},/obj/item/weapon/card/id/casino{desc = "An alien id card with strange glowing markings."; icon_state = "changeling"; name = "Alien id"},/obj/item/weapon/card/id/casino{desc = "An alien id card with strange glowing markings."; icon_state = "changeling"; name = "Alien id"},/obj/item/weapon/card/id/casino{desc = "An alien id card with strange glowing markings."; icon_state = "changeling"; name = "Alien id"},/obj/item/weapon/card/id/casino{desc = "An alien id card with strange glowing markings."; icon_state = "changeling"; name = "Alien id"},/obj/item/weapon/card/id/casino{desc = "An alien id card with strange glowing markings."; icon_state = "changeling"; name = "Alien id"},/obj/item/weapon/card/id/casino{desc = "An alien id card with strange glowing markings."; icon_state = "changeling"; name = "Alien id"},/obj/item/weapon/card/id/casino{desc = "An alien id card with strange glowing markings."; icon_state = "changeling"; name = "Alien id"},/obj/item/weapon/card/id/casino{desc = "An alien id card with strange glowing markings."; icon_state = "changeling"; name = "Alien id"},/obj/item/weapon/card/id/casino{desc = "An alien id card with strange glowing markings."; icon_state = "changeling"; name = "Alien id"},/turf/simulated/floor/carpet,/area/survivalpod/superpose/TradingShip) +"FL" = (/obj/machinery/door/window/westleft{name = "Storefront"; req_access = list(160)},/obj/structure/window/reinforced,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "trade"; name = "Shop Shutters"; opacity = 0},/obj/structure/table/marble,/obj/machinery/cash_register/civilian{dir = 4},/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/TradingShip) +"FW" = (/obj/machinery/door/airlock/external{frequency = null; icon_state = "door_locked"; id_tag = null; locked = 1; name = "Ship Hatch"; req_access = null},/obj/structure/fans/hardlight,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/TradingShip) +"Gb" = (/obj/machinery/light,/turf/simulated/floor/carpet,/area/survivalpod/superpose/TradingShip) +"Gk" = (/obj/structure/table/standard,/obj/machinery/chemical_dispenser/bar_alc/full,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"GN" = (/obj/machinery/light/small{dir = 4},/obj/machinery/airlock_sensor{dir = 8; id_tag = null; pixel_x = 27},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; id_tag = null},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"GS" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/mecha/working/ripley/firefighter,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"GU" = (/obj/machinery/light{dir = 4},/obj/machinery/vending/deluxe_boozeomat{req_access = null; req_log_access = null},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Hh" = (/obj/structure/table/steel_reinforced,/obj/random/action_figure,/obj/random/action_figure,/obj/random/action_figure,/obj/random/action_figure,/obj/random/action_figure,/obj/random/action_figure,/obj/random/curseditem,/obj/random/curseditem,/obj/random/curseditem,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Hp" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/carpet,/area/survivalpod/superpose/TradingShip) +"HB" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/structure/closet/crate/solar,/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"HC" = (/obj/structure/table/standard,/obj/machinery/microwave,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"HP" = (/obj/structure/closet/walllocker/emerglocker{pixel_y = 32},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Ii" = (/obj/machinery/computer/arcade/battle,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"IL" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TradingShip) +"Jg" = (/obj/structure/window/reinforced,/obj/machinery/door/blast/shutters{density = 0; icon_state = "shutter0"; id = "tradestarshutters"; name = "Blast Shutters"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced/full,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TradingShip) +"JF" = (/obj/machinery/vending/deluxe_dinner{req_access = null; req_log_access = null},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"JI" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "tradeportshutters"; name = "Blast Shutters"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced/full,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TradingShip) +"JN" = (/obj/machinery/body_scanconsole,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Km" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/largecrate/animal/cow,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Ko" = (/obj/structure/table/glass,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Kv" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/lipstick/black,/obj/item/weapon/lipstick/jade,/obj/item/weapon/lipstick/purple,/obj/item/weapon/lipstick,/obj/item/weapon/lipstick/random,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Lp" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table/steel_reinforced,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Lt" = (/obj/structure/table/steel_reinforced,/obj/item/clothing/under/cheongsam,/obj/item/clothing/under/hosformalmale,/obj/item/clothing/under/hosformalfem,/obj/item/clothing/under/harness,/obj/item/clothing/under/gladiator,/obj/item/clothing/under/ert,/obj/item/clothing/under/schoolgirl,/obj/item/clothing/under/redcoat,/obj/item/clothing/under/sexymime,/obj/item/clothing/under/sexyclown,/obj/item/clothing/under/soviet,/obj/item/clothing/under/space,/obj/item/clothing/under/swimsuit/stripper/mankini,/obj/item/clothing/under/suit_jacket/female,/obj/item/clothing/under/rank/psych/turtleneck,/obj/item/clothing/under/syndicate/combat,/obj/item/clothing/under/syndicate/combat,/obj/item/clothing/under/syndicate/tacticool,/obj/item/clothing/under/syndicate/tacticool,/obj/item/clothing/under/dress/sailordress,/obj/item/clothing/under/dress/redeveninggown,/obj/item/clothing/under/dress/dress_saloon,/obj/item/clothing/under/dress/blacktango,/obj/item/clothing/under/dress/blacktango/alt,/obj/item/clothing/under/dress/dress_orange,/obj/item/clothing/under/dress/maid/janitor,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Mc" = (/turf/template_noop,/area/template_noop) +"Mk" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/closet/crate/internals,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"MO" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/captain,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"MP" = (/obj/structure/table/steel_reinforced,/obj/item/clothing/accessory/holster/hip,/obj/item/clothing/accessory/holster/armpit,/obj/item/clothing/accessory/holster/armpit,/obj/item/clothing/accessory/holster/hip,/obj/item/clothing/accessory/storage/white_vest,/obj/item/clothing/accessory/storage/white_vest,/obj/item/clothing/accessory/storage/webbing,/obj/item/clothing/accessory/storage/webbing,/obj/item/clothing/accessory/storage/black_vest,/obj/item/clothing/accessory/storage/black_vest,/obj/item/clothing/accessory/storage/brown_vest,/obj/item/clothing/accessory/storage/brown_vest,/obj/item/clothing/accessory/scarf/white,/obj/item/clothing/accessory/scarf/lightblue,/obj/item/clothing/accessory/scarf/red,/obj/item/clothing/accessory/scarf/purple,/obj/item/clothing/accessory/armband/science,/obj/item/clothing/accessory/armband/med,/obj/item/clothing/accessory/armband/engine,/obj/item/clothing/accessory/armband/cargo,/obj/item/clothing/accessory/armband,/obj/item/clothing/accessory/medal/nobel_science,/obj/item/clothing/accessory/medal/silver,/obj/item/clothing/accessory/medal/gold,/obj/item/clothing/accessory/medal/bronze_heart,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"MT" = (/turf/simulated/shuttle/wall/dark,/area/survivalpod/superpose/TradingShip) +"No" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 5},/obj/machinery/atm{pixel_x = -32},/obj/machinery/meter,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Nq" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/mecha/working/ripley/mining,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"NE" = (/obj/vehicle/train/trolley,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"NJ" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = 32},/turf/simulated/floor/carpet,/area/survivalpod/superpose/TradingShip) +"NQ" = (/obj/machinery/sleeper{dir = 4},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Od" = (/obj/item/weapon/storage/firstaid/regular{pixel_x = -2; pixel_y = 4},/obj/item/weapon/storage/firstaid/regular{pixel_x = -2; pixel_y = 4},/obj/item/bodybag/cryobag{pixel_x = 5},/obj/item/bodybag/cryobag{pixel_x = 5},/obj/item/weapon/storage/firstaid/o2{layer = 2.8; pixel_x = 4; pixel_y = 6},/obj/item/weapon/storage/box/masks,/obj/item/weapon/storage/box/gloves{pixel_x = 3; pixel_y = 4},/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/fire{layer = 2.9; pixel_x = 2; pixel_y = 3},/obj/item/weapon/storage/firstaid/adv{pixel_x = -2},/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/structure/closet/medical_wall{pixel_y = 32},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"OE" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/carpet,/area/survivalpod/superpose/TradingShip) +"OK" = (/obj/structure/table/steel_reinforced,/obj/item/clothing/suit/hgpirate,/obj/item/clothing/suit/imperium_monk,/obj/item/clothing/suit/leathercoat,/obj/item/clothing/suit/justice,/obj/item/clothing/suit/justice,/obj/item/clothing/suit/justice,/obj/item/clothing/suit/justice,/obj/item/clothing/suit/justice,/obj/item/clothing/suit/pirate,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Pb" = (/obj/machinery/light{dir = 4},/obj/structure/sign/kiddieplaque{desc = "A plaque commemorating the construction of the cargo ship Beruang."; name = "Beruang"; pixel_x = 32},/mob/living/simple_mob/animal/passive/dog/tamaskan/Spice,/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/TradingShip) +"Pv" = (/obj/machinery/atm{pixel_x = -32},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"PW" = (/obj/structure/table/steel_reinforced,/obj/structure/flora/pottedplant{icon_state = "plant-09"; name = "Esteban"; pixel_y = 8},/obj/machinery/newscaster{pixel_x = 32},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Qm" = (/obj/structure/closet/wardrobe/captain,/obj/item/weapon/gun/projectile/revolver/mateba,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Qp" = (/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"QB" = (/obj/machinery/sleep_console,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"QQ" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TradingShip) +"Ry" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 8},/obj/item/weapon/pen{pixel_y = 4},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Sp" = (/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Sy" = (/obj/machinery/atmospherics/pipe/tank/air{start_pressure = 740.5},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"SE" = (/turf/simulated/shuttle/wall/dark/hard_corner,/area/survivalpod/superpose/TradingShip) +"SI" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/largecrate/hoverpod,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"SR" = (/obj/machinery/vending/tool{emagged = 1},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"SV" = (/obj/structure/closet/crate/secure/weapon,/obj/item/stack/material/phoron{material = 50},/obj/item/stack/material/phoron{material = 50},/obj/item/stack/material/phoron{material = 50},/obj/item/stack/material/phoron{material = 50},/obj/random/cash/huge,/obj/random/cash/huge,/obj/random/cash/huge,/obj/random/cash/huge,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Tb" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/carpet,/area/survivalpod/superpose/TradingShip) +"TJ" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/hos,/obj/structure/sign/poster{pixel_y = -32},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"TK" = (/obj/machinery/door/airlock/multi_tile/glass,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/TradingShip) +"TU" = (/obj/machinery/door/blast/shutters{density = 0; icon_state = "shutter0"; id = "tradebridgeshutters"; name = "Blast Shutters"; opacity = 0},/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced/full,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TradingShip) +"Uw" = (/obj/machinery/vending/coffee,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Uy" = (/obj/structure/closet{name = "custodial"},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/mop,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Uz" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "tradestarshutters"; name = "Blast Shutters"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced/full,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TradingShip) +"VL" = (/obj/machinery/vending/engivend{emagged = 1},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"VP" = (/obj/machinery/door/airlock/glass_medical{name = "Medical Bay"; req_access = null; req_one_access = null},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/TradingShip) +"VX" = (/obj/structure/table/steel_reinforced,/obj/random/toolbox,/obj/random/toolbox,/obj/random/toolbox,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"VY" = (/obj/machinery/suit_cycler/syndicate,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Wy" = (/obj/structure/table/steel_reinforced,/obj/random/contraband,/obj/random/contraband,/obj/random/contraband,/obj/random/contraband,/obj/random/contraband,/obj/random/contraband,/obj/item/weapon/bikehorn,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"WG" = (/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "tradebridgeshutters"; name = "Blast Shutters"; opacity = 0},/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced/full,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TradingShip) +"WK" = (/obj/structure/table/steel_reinforced,/obj/item/stack/material/mhydrogen,/obj/item/stack/material/diamond,/obj/item/stack/material/sandstone,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"WL" = (/obj/machinery/door/window/westleft{name = "Storefront"; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Xi" = (/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "tradebridgeshutters"; name = "Blast Shutters"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced/full,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TradingShip) +"Xy" = (/obj/structure/noticeboard{pixel_y = 32},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"XH" = (/obj/machinery/door/airlock/multi_tile/glass{req_access = null},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/TradingShip) +"XL" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "tradeportshutters"; name = "Blast Shutters"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced/full,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TradingShip) +"XO" = (/turf/simulated/shuttle/plating/airless/carry,/area/survivalpod/superpose/TradingShip) +"Yc" = (/obj/structure/sign/poster{pixel_y = -32},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Yi" = (/obj/structure/table/steel_reinforced,/obj/random/plushie,/obj/random/plushie,/obj/random/plushie,/obj/random/plushie,/obj/random/plushie,/obj/structure/window/reinforced{dir = 1},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"Zs" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/shuttle/floor/darkred,/area/survivalpod/superpose/TradingShip) +"ZD" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/closet/crate/freezer/rations,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"ZX" = (/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id = "tradebridgeshutters"; name = "Blast Shutters"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced/full,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TradingShip) + +(1,1,1) = {" +McMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMc +McMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcSEjAlQSEMcMcMcMcMTMTMTMTMTMcMc +McMcMcMcMcMcMcMcMcMTMTMTMTMTMTxzJgmiMTMcMcMcMcMcMTMTkwxMMTMTMcMcMTMTMTMTBeAuMcMc +McMcMcMcMcMcMcMcMTSEhIywMTGkHCsjBUwnMTMTMcMcMcMTMTSEjAlQSEMTxzmiSEQBNQMTBeXOMcMc +McMcMcMcMcMcMcMcUzQpSpSpEKSpSpuvHpTbMTMTxzJgmiMTMTPvSpSpVYMTsTJNOdSpdYMTBedsMcMc +McMcMcMcMcMcMcMcpUxFmRTJMTSpSpvMuaNJMTxiWKyxDXVXILfPCVCVSpVPSpSpSpSpiaMTBeaAMcMc +McMcMcMcMcMcMcMcMTMTMTMTMTMTARSpSpaaMTnDkDgJcVxdQQNECVCVSpVPSpDTcMSpSpMTMTMTMcMc +McMcMcMcMcMcMcMcMcMcMcMcMTMTMTXHrfMTSEoiwTmYqTdZtQNECVSpARSEMTMTSEmJthMTMTMcMcMc +McMcMcMTrqTUMTMTMTMTMTMTMTMTUwSpSpSpSpzhSpSpSpSpMTMTTKrfSEMTSVcaMTMTMTMTMcMcMcMc +McMcMTMTIiPWMTuRMTtumFseSEMTnWSpCVCVCVCVCVCVCVCVCVSpCVSphxgACVCVfeMTBeAuMcMcMcMc +McMcXikxCVPbMTprSEMTfJMTETMTfGCVlmqVKmZDeSshSINquoCVCVCVrxtNCVCVSpMTBeXOMcMcMcMc +McMcZXmdZsCVtxSpSpSpSpXySprfSpCVuoaPqzMkuAdPtXGSCaCVCVCVFLCVCVCVJFMTBedsMcMcMcMc +McMcMTMTRyhmMTvCUynTuLYcSpeESpSpCVCVCVCVCVCVCVCVCVSpCVSpWLSpzNCVGUMTBeaAMcMcMcMc +McMcMcMTqoWGMTMTMTMTMTMTMTSEvLSpSpSpSpDTSpSpSpSpMTMTTKrfSEMTjHlWMTMTMTMTMcMcMcMc +McMcMcMcMcMcMcMcMcMcMcMcMTMTMTXHrfMTSELpkOYifUBHILSyCVSpHPSEMTMTMTVLSRMTMTMcMcMc +McMcMcMcMcMcMcMcMTMTMTMTMTSpHPSpSpkBMTWyvsgqbknCQQkdCVCVSpplSpzhySSpSpMTMTMTMcMc +McMcMcMcMcMcMcMclvQmmKfmMTSpSpuvOEyNMTHhKvMPLtOKtQHBCVCVSpplSpSpSpSpSpMTBeAuMcMc +McMcMcMcMcMcMcMcXLSpSpSpriSpSpqckVFyMTMTcXrGJIMTMTNodycCSpMTbmbfesSpdYMTBeXOMcMc +McMcMcMcMcMcMcMcMTSEMOKoMTxZSpGbCurgMTMTMcMcMcMTMTSEwznhSEMTcXJIMTyShKMTBedsMcMc +McMcMcMcMcMcMcMcMcMTMTMTMTMTMTcXrGJIMTMcMcMcMcMcMTMTALGNMTMTMcMcMTMTMTMTBeaAMcMc +McMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcSEFWkUSEMcMcMcMcMTMTMTMTMTMcMc +McMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMcMc +"} diff --git a/modular_chomp/maps/submaps/shelters/WoodenCamp-10x10.dmm b/modular_chomp/maps/submaps/shelters/WoodenCamp-10x10.dmm new file mode 100644 index 0000000000..7d4b1f06ae --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/WoodenCamp-10x10.dmm @@ -0,0 +1,360 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/simulated/wall/log_sif, +/area/survivalpod/superpose/WoodenCamp) +"c" = ( +/obj/structure/grille/rustic, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/survivalpod/superpose/WoodenCamp) +"d" = ( +/obj/structure/bed/padded, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/survivalpod/superpose/WoodenCamp) +"e" = ( +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/survivalpod/superpose/WoodenCamp) +"f" = ( +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/survivalpod/superpose/WoodenCamp) +"g" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/survivalpod/superpose/WoodenCamp) +"h" = ( +/obj/structure/simple_door/sifwood, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/survivalpod/superpose/WoodenCamp) +"i" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/launcher/crossbow, +/obj/item/stack/rods{ + amount = 17 + }, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/survivalpod/superpose/WoodenCamp) +"j" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor, +/area/survivalpod/superpose/WoodenCamp) +"k" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/WoodenCamp) +"l" = ( +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/WoodenCamp) +"m" = ( +/obj/item/weapon/material/knife/machete/hatchet, +/turf/template_noop, +/area/template_noop) +"n" = ( +/obj/item/weapon/flame/lighter, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/WoodenCamp) +"o" = ( +/obj/structure/bonfire/sifwood, +/turf/simulated/floor/outdoors/dirt, +/area/survivalpod/superpose/WoodenCamp) +"v" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/white, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/survivalpod/superpose/WoodenCamp) +"y" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/survivalpod/superpose/WoodenCamp) +"B" = ( +/obj/machinery/power/apc/alarms_hidden{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor, +/area/survivalpod/superpose/WoodenCamp) +"F" = ( +/obj/item/device/flashlight/lamp{ + pixel_x = -8; + pixel_y = 13 + }, +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/survivalpod/superpose/WoodenCamp) +"I" = ( +/obj/structure/closet/crate, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/survivalpod/superpose/WoodenCamp) +"K" = ( +/obj/item/weapon/storage/backpack/messenger, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/reagent_containers/food/snacks/sosjerky, +/obj/item/weapon/cell/device/hyper, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy, +/obj/item/weapon/flame/lighter/random, +/obj/item/weapon/storage/box/survival/space, +/obj/item/device/radio, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/weapon/reagent_containers/pill/dylovene, +/obj/item/weapon/reagent_containers/pill/dylovene, +/obj/item/device/flashlight/maglight, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/random/soap, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, +/obj/item/device/fbp_backup_cell, +/obj/item/device/pda, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/device/starcaster_news, +/obj/item/device/suit_cooling_unit/emergency, +/obj/item/device/gps, +/obj/structure/closet/walllocker_double/west{ + name = "Survival Cabinet" + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/WoodenCamp) +"Q" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor, +/area/survivalpod/superpose/WoodenCamp) +"W" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/chainsaw, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/extinguisher, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/stack/material/log/sif{ + amount = 25 + }, +/obj/item/stack/material/log/sif{ + amount = 25 + }, +/turf/simulated/floor, +/area/survivalpod/superpose/WoodenCamp) +"Y" = ( +/obj/item/weapon/storage/backpack/messenger, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/reagent_containers/food/snacks/sosjerky, +/obj/item/weapon/cell/device/hyper, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy, +/obj/item/weapon/flame/lighter/random, +/obj/item/weapon/storage/box/survival/space, +/obj/item/device/radio, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/weapon/reagent_containers/pill/dylovene, +/obj/item/weapon/reagent_containers/pill/dylovene, +/obj/item/device/flashlight/maglight, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/random/soap, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, +/obj/item/device/fbp_backup_cell, +/obj/item/device/pda, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/device/starcaster_news, +/obj/item/device/suit_cooling_unit/emergency, +/obj/item/device/gps, +/obj/structure/closet/walllocker_double/east{ + name = "Survival Cabinet" + }, +/turf/simulated/floor/wood, +/area/survivalpod/superpose/WoodenCamp) +"Z" = ( +/obj/structure/table/steel, +/obj/item/stack/material/phoron{ + amount = 5 + }, +/obj/item/stack/material/phoron{ + amount = 5 + }, +/obj/fiftyspawner/wood, +/obj/fiftyspawner/steel, +/turf/simulated/floor, +/area/survivalpod/superpose/WoodenCamp) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +b +b +c +b +b +b +Q +a +a +a +"} +(3,1,1) = {" +b +d +f +K +g +b +B +k +k +k +"} +(4,1,1) = {" +b +d +f +F +b +b +b +l +l +n +"} +(5,1,1) = {" +c +y +e +f +h +f +h +l +o +l +"} +(6,1,1) = {" +c +I +f +f +b +b +b +l +l +l +"} +(7,1,1) = {" +b +d +f +f +v +b +Z +k +k +k +"} +(8,1,1) = {" +b +d +f +Y +i +b +W +a +a +a +"} +(9,1,1) = {" +b +b +c +b +b +b +j +m +a +a +"} +(10,1,1) = {" +a +a +a +a +a +a +a +a +a +a +"} diff --git a/sound/effects/mentorhelp.mp3 b/sound/effects/mentorhelp.mp3 new file mode 100644 index 0000000000..a72cec612a Binary files /dev/null and b/sound/effects/mentorhelp.mp3 differ diff --git a/sound/weapons/chargeup.ogg b/sound/weapons/chargeup.ogg new file mode 100644 index 0000000000..263d2b1d99 Binary files /dev/null and b/sound/weapons/chargeup.ogg differ diff --git a/tgui/.gitignore b/tgui/.gitignore index bcdbd1c91a..7214051f09 100644 --- a/tgui/.gitignore +++ b/tgui/.gitignore @@ -15,6 +15,8 @@ package-lock.json ## Build artifacts /public/.tmp/**/* /public/*.map +/public/tgui-bench.bundle.js +/public/tgui-bench.bundle.css ## Previously ignored locations that are kept to avoid confusing git ## while transitioning to a new project structure. diff --git a/tgui/package.json b/tgui/package.json index 602af0324c..c8ea6dfb14 100644 --- a/tgui/package.json +++ b/tgui/package.json @@ -43,7 +43,6 @@ "eslint-plugin-radar": "^0.2.1", "eslint-plugin-react": "^7.30.0", "eslint-plugin-unused-imports": "^2.0.0", - "file-loader": "^6.2.0", "inferno": "^7.4.11", "jest": "^28.1.0", "jest-circus": "^28.1.0", @@ -56,7 +55,6 @@ "style-loader": "^3.3.1", "terser-webpack-plugin": "^5.3.1", "typescript": "^4.6.4", - "url-loader": "^4.1.1", "webpack": "^5.72.1", "webpack-bundle-analyzer": "^4.5.0", "webpack-cli": "^4.9.2" diff --git a/tgui/packages/tgui/interfaces/Newscaster.js b/tgui/packages/tgui/interfaces/Newscaster.js index 70b516a110..7266f750ae 100644 --- a/tgui/packages/tgui/interfaces/Newscaster.js +++ b/tgui/packages/tgui/interfaces/Newscaster.js @@ -1,7 +1,7 @@ import { decodeHtmlEntities } from 'common/string'; import { Fragment } from 'inferno'; import { useBackend, useSharedState } from '../backend'; -import { Box, Button, Flex, LabeledList, Input, Section } from '../components'; +import { Box, Button, LabeledList, Input, Section } from '../components'; import { Window } from '../layouts'; import { TemporaryNotice } from './common/TemporaryNotice'; @@ -164,6 +164,10 @@ const NewscasterNewStory = (props, context) => { const { setScreen } = props; + const label_style = { 'white-space': 'nowrap' }; + + const break_style = { width: '100%', 'word-break': 'break-all', 'word-wrap': 'break-word' }; + return (
{ Back }> - - - - - - {user} - - - - -
- {title || '(no title yet)'} -
-
- - -
-
+ + + + + + + + + + + + + + + + + + + + + + + +
Receiving Channel: + +
Message Author: + {user} +
Message Title:{title || '(no title yet)'} +
Message Body:{msg || '(no message yet)'} +
Attach Photo: + +
diff --git a/tgui/packages/tgui/interfaces/VorePanel.js b/tgui/packages/tgui/interfaces/VorePanel.js index a2f2497b0e..9cf0f604f2 100644 --- a/tgui/packages/tgui/interfaces/VorePanel.js +++ b/tgui/packages/tgui/interfaces/VorePanel.js @@ -177,67 +177,6 @@ export const VorePanel = (props, context) => { tabs[1] = ; - const generateBellyString = () => { - const { - // Controls - belly_name, - mode, - item_mode, - addons, - - // Descriptions - verb, - release_verb, - desc, - absorbed_desc, - } = data.selected; - - let result = '=== ' + belly_name + ' ===\n\n'; - result += '== Controls ==\n\n'; - result += 'Mode:\n' + mode + '\n\n'; - result += 'Addons:\n' + addons + '\n\n'; - result += 'Item Mode:\n' + item_mode + '\n\n'; - result += '== Descriptions ==\n\n'; - result += 'Verb:\n' + verb + '\n\n'; - result += 'Release Verb:\n' + release_verb + '\n\n'; - result += 'Description:\n"' + desc + '"\n\n'; - result += 'Absorbed Description:\n"' + absorbed_desc + '"\n\n'; - - return result; - }; - - const downloadPrefs = () => { - const { belly_name } = data.selected; - - const extension = '.txt'; - - let now = new Date(); - let hours = String(now.getHours()); - if (hours.length < 2) { - hours = '0' + hours; - } - let minutes = String(now.getMinutes()); - if (minutes.length < 2) { - minutes = '0' + minutes; - } - let dayofmonth = String(now.getDate()); - if (dayofmonth.length < 2) { - dayofmonth = '0' + dayofmonth; - } - let month = String(now.getMonth() + 1); // 0-11 - if (month.length < 2) { - month = '0' + month; - } - let year = String(now.getFullYear()); - - let datesegment = ' ' + year + '-' + month + '-' + dayofmonth + ' (' + hours + ' ' + minutes + ')'; - - let filename = belly_name + datesegment + extension; - - let blob = new Blob([generateBellyString()], { type: 'text/html;charset=utf8;' }); - window.navigator.msSaveOrOpenBlob(blob, filename); - }; - return ( @@ -248,16 +187,18 @@ export const VorePanel = (props, context) => { '; + + result += '
'; + result += '
'; + result += 'Addons:
' + GetAddons(addons) + '

'; + + result += '== Descriptions ==
'; + result += 'Vore Verb:
' + vore_verb + '

'; + result += 'Release Verb:
' + release_verb + '

'; + result += 'Description:
"' + desc + '"

'; + result += 'Absorbed Description:
"' + absorbed_desc + '"

'; + + result += '
'; + + result += '== Messages ==
'; + result += '
'; // Start Div messagesTabpanel + result += '
'; + result += '
'; + result += 'Struggle Messages (Outside)'; + result += 'Struggle Messages (Inside)'; + result += 'Absorbed Struggle Messages (Outside)'; + result += 'Absorbed Struggle Messages (Inside)'; + result += 'Digest Messages (Owner)'; + result += 'Digest Messages (Prey)'; + result += 'Absorb Messages (Owner)'; + result += 'Absorb Messages (Prey)'; + result += 'Unabsorb Messages (Owner)'; + result += 'Unabsorb Messages (Prey)'; + result += 'Examine Messages'; + result += 'Examine Messages (Absorbed)'; + result += '
'; + + result += '
'; + result += '
'; + + result += '
'; + struggle_messages_outside?.forEach((msg) => { + result += msg + '
'; + }); + result += '
'; + + result += '
'; + struggle_messages_inside?.forEach((msg) => { + result += msg + '
'; + }); + result += '
'; + + result += '
'; + absorbed_struggle_messages_outside?.forEach((msg) => { + result += msg + '
'; + }); + result += '
'; + + result += '
'; + absorbed_struggle_messages_inside?.forEach((msg) => { + result += msg + '
'; + }); + result += '
'; + + result += '
'; + digest_messages_owner?.forEach((msg) => { + result += msg + '
'; + }); + result += '
'; + + result += '
'; + digest_messages_prey?.forEach((msg) => { + result += msg + '
'; + }); + result += '
'; + + result += '
'; + absorb_messages_owner?.forEach((msg) => { + result += msg + '
'; + }); + result += '
'; + + result += '
'; + absorb_messages_prey?.forEach((msg) => { + result += msg + '
'; + }); + result += '
'; + + result += '
'; + unabsorb_messages_owner?.forEach((msg) => { + result += msg + '
'; + }); + result += '
'; + + result += '
'; + unabsorb_messages_prey?.forEach((msg) => { + result += msg + '
'; + }); + result += '
'; + + result += '
'; + examine_messages?.forEach((msg) => { + result += msg + '
'; + }); + result += '
'; + + result += '
'; + examine_messages_absorbed?.forEach((msg) => { + result += msg + '
'; + }); + result += '
'; + + result += '
'; + result += '
'; + result += '
'; // End Div messagesTabpanel + + result += '
= Idle Messages =

'; + + result += '

Idle Messages (Hold):

'; + emotes_hold?.forEach((msg) => { + result += msg + '
'; + }); + result += '


'; + + result += '
Idle Messages (Hold Absorbed):

'; + emotes_holdabsorbed?.forEach((msg) => { + result += msg + '
'; + }); + result += '


'; + + result += '
Idle Messages (Digest):

'; + emotes_digest?.forEach((msg) => { + result += msg + '
'; + }); + result += '


'; + + result += '
Idle Messages (Absorb):

'; + emotes_absorb?.forEach((msg) => { + result += msg + '
'; + }); + result += '


'; + + result += '
Idle Messages (Unabsorb):

'; + emotes_unabsorb?.forEach((msg) => { + result += msg + '
'; + }); + result += '


'; + + result += '
Idle Messages (Drain):

'; + emotes_drain?.forEach((msg) => { + result += msg + '
'; + }); + result += '


'; + + result += '
Idle Messages (Heal):

'; + emotes_heal?.forEach((msg) => { + result += msg + '
'; + }); + result += '


'; + + result += '
Idle Messages (Size Steal):

'; + emotes_steal?.forEach((msg) => { + result += msg + '
'; + }); + result += '


'; + + result += '
Idle Messages (Shrink):

'; + emotes_shrink?.forEach((msg) => { + result += msg + '
'; + }); + result += '


'; + + result += '
Idle Messages (Grow):

'; + emotes_grow?.forEach((msg) => { + result += msg + '
'; + }); + result += '


'; + + result += '
Idle Messages (Encase In Egg):

'; + emotes_egg?.forEach((msg) => { + result += msg + '
'; + }); + result += '


'; + + result += '


'; + + result += '
'; + + result += '
'; + + // OPTIONS + + result += '
'; + result += '

'; + result += '

'; + + result += '
'; + result += '
'; + result += '
    '; + result += '
  • Can Taste: ' + (can_taste ? 'Yes' : 'No') + '
  • '; + result += '
  • Contaminates: ' + (contaminates ? 'Yes' : 'No') + '
  • '; + result += '
  • Contamination Flavor: ' + contamination_flavor + '
  • '; + result += '
  • Contamination Color: ' + contamination_color + '
  • '; + result += '
  • Nutritional Gain: ' + nutrition_percent + '%
  • '; + result += '
  • Required Examine Size: ' + bulge_size * 100 + '%
  • '; + result += '
  • Display Absorbed Examines: ' + (display_absorbed_examine ? 'True' : 'False') + '
  • '; + result += '
  • Save Digest Mode: ' + (save_digest_mode ? 'True' : 'False') + '
  • '; + result += '
  • Idle Emotes: ' + (emote_active ? 'Active' : 'Inactive') + '
  • '; + result += '
  • Idle Emote Delay: ' + emote_time + ' seconds
  • '; + result += '
  • Shrink/Grow Size: ' + shrink_grow_size * 100 + '%
  • '; + result += '
  • Vore Spawn Blacklist: ' + (vorespawn_blacklist ? 'Yes' : 'No') + '
  • '; + result += '
  • Egg Type: ' + egg_type + '
  • '; + result += '
  • Selective Mode Preference: ' + selective_preference + '
  • '; + result += '
'; + result += '
'; + + // END OPTIONS + // SOUNDS + + result += '
'; + result += '

'; + result += '

'; + + result += '
'; + result += '
'; + result += '
    '; + result += '
  • Fleshy Belly: ' + (is_wet ? 'Yes' : 'No') + '
  • '; + result += '
  • Internal Loop: ' + (wet_loop ? 'Yes' : 'No') + '
  • '; + result += '
  • Use Fancy Sounds: ' + (fancy_vore ? 'Yes' : 'No') + '
  • '; + result += '
  • Vore Sound: ' + vore_sound + '
  • '; + result += '
  • Release Sound: ' + release_sound + '
  • '; + result += '
'; + result += '
'; + + // END SOUNDS + // VISUALS + + result += '
'; + result += '

'; + result += '

'; + + result += '
'; + result += 'Vore Sprites'; + result += '
    '; + result += '
  • Affect Vore Sprites: ' + (affects_vore_sprites ? 'Yes' : 'No') + '
  • '; + result += '
  • Count Absorbed prey for vore sprites: ' + (count_absorbed_prey_for_sprite ? 'Yes' : 'No') + '
  • '; + result += '
  • Animation when prey resist: ' + (resist_triggers_animation ? 'Yes' : 'No') + '
  • '; + result += '
  • Vore Sprite Size Factor: ' + size_factor_for_sprite + '
  • '; + result += '
  • Belly Sprite to affect: ' + belly_sprite_to_affect + '
  • '; + result += '
'; + result += 'Belly Fullscreens Preview and Coloring'; + result += '
    '; + result += '
  • Color: ' + belly_fullscreen_color + ''; + result += '
'; + result += 'Vore FX'; + result += '
    '; + result += '
  • Disable Prey HUD: ' + (disable_hud ? 'Yes' : 'No') + '
  • '; + result += '
'; + result += '
'; + + // END VISUALS + // INTERACTIONS + + result += '
'; + result += '

'; + result += '

'; + + result += '
'; + result += '
'; + result += 'Belly Interactions (' + + (escapable ? 'Enabled' : 'Disabled') + + ')'; + result += '
    '; + result += '
  • Escape Chance: ' + escapechance + '%
  • '; + result += '
  • Escape Time: ' + escapetime / 10 + 's
  • '; + result += '
  • Transfer Chance: ' + transferchance + '%
  • '; + result += '
  • Transfer Location: ' + transferlocation + '
  • '; + result += '
  • Secondary Transfer Chance: ' + transferchance_secondary + '%
  • '; + result += '
  • Secondary Transfer Location: ' + transferlocation_secondary + '
  • '; + result += '
  • Absorb Chance: ' + absorbchance + '%
  • '; + result += '
  • Digest Chance: ' + digestchance + '%
  • '; + result += '
'; + result += '
'; + result += 'Auto-Transfer Options (' + + (autotransfer_enabled ? 'Enabled' : 'Disabled') + + ')'; + result += '
    '; + result += '
  • Auto-Transfer Chance: ' + autotransferchance + '%
  • '; + result += '
  • Auto-Transfer Time: ' + autotransferwait / 10 + 's
  • '; + result += '
  • Auto-Transfer Location: ' + autotransferlocation + '
  • '; + result += '
  • Auto-Transfer Min Amount: ' + autotransfer_min_amount + '
  • '; + result += '
  • Auto-Transfer Max Amount: ' + autotransfer_max_amount + '
  • '; + result += '
'; + result += '
'; + + // END INTERACTIONS + // LIQUID OPTIONS + + result += '
'; + result += '

'; + result += '

'; + + result += '
'; + result += '
'; + result += '
    '; + result += '
  • Generate Liquids: ' + (reagentbellymode ? 'On' : 'Off') + '
  • '; + result += '
  • Liquid Type: ' + reagent_chosen + '
  • '; + result += '
  • Liquid Name: ' + reagent_name + '
  • '; + result += '
  • Transfer Verb: ' + reagent_transfer_verb + '
  • '; + result += '
  • Generation Time: ' + gen_time_display + '
  • '; + result += '
  • Liquid Capacity: ' + custom_max_volume + '
  • '; + result += '
  • Slosh Sounds: ' + (vorefootsteps_sounds ? 'On' : 'Off') + '
  • '; + result += '
  • Liquid Addons: ' + GetLiquidAddons(reagent_mode_flag_list) + '
  • '; + result += '
'; + result += '
'; + + // END LIQUID OPTIONS + // LIQUID MESSAGES + + result += '
'; + result += '

'; + result += '

'; + + result += '
'; + result += '
'; + + result += '
'; // Start Div liquidMessagesTabpanel + result += '
'; + + result += '
'; + result += '
'; + + result += '
'; + fullness1_messages?.forEach((msg) => { + result += msg + '
'; + }); + result += '
'; + + result += '
'; + fullness2_messages?.forEach((msg) => { + result += msg + '
'; + }); + result += '
'; + + result += '
'; + fullness3_messages?.forEach((msg) => { + result += msg + '
'; + }); + result += '
'; + + result += '
'; + fullness4_messages?.forEach((msg) => { + result += msg + '
'; + }); + result += '
'; + + result += '
'; + fullness5_messages?.forEach((msg) => { + result += msg + '
'; + }); + result += '
'; + + result += '
'; + result += '
'; + result += '
'; // End Div liquidMessagesTabpanel + + result += '
'; + + // END LIQUID MESSAGES + + result += '
'; + + return result; +}; + +const getCurrentTimestamp = (): string => { + let now = new Date(); + let hours = String(now.getHours()); + if (hours.length < 2) { + hours = '0' + hours; + } + let minutes = String(now.getMinutes()); + if (minutes.length < 2) { + minutes = '0' + minutes; + } + let dayofmonth = String(now.getDate()); + if (dayofmonth.length < 2) { + dayofmonth = '0' + dayofmonth; + } + let month = String(now.getMonth() + 1); // 0-11 + if (month.length < 2) { + month = '0' + month; + } + let year = String(now.getFullYear()); + + return ' ' + year + '-' + month + '-' + dayofmonth + ' (' + hours + ' ' + minutes + ')'; +}; + +const downloadPrefs = (context, extension: string) => { + const { act, data } = useBackend(context); + + const { db_version, db_repo, mob_name, bellies } = data; + + let datesegment = getCurrentTimestamp(); + + let filename = mob_name + datesegment + extension; + let blob; + + if (extension === '.html') { + let style = ''; + + blob = new Blob( + [ + '' + + '' + + '' + + '' + + bellies.length + + ' Exported Bellies (DB_VER: ' + + db_repo + + '-' + + db_version + + ')' + + '' + + '' + + style + + '

Bellies of ' + + mob_name + + '

Generated on: ' + + datesegment + + '

', + ], + { + type: 'text/html;charset=utf8', + } + ); + bellies.forEach((belly, i) => { + blob = new Blob([blob, generateBellyString(belly, i)], { type: 'text/html;charset=utf8' }); + }); + blob = new Blob( + [ + blob, + '
', + '', + '
', + ], + { type: 'text/html;charset=utf8' } + ); + } + + (window.navigator as any).msSaveOrOpenBlob(blob, filename); +}; + +export const VorePanelExport = () => { + return ( + + + + + + ); +}; + +const VorePanelExportContent = (props, context) => { + const { act, data } = useBackend(context); + + const { bellies } = data; + + return ( +
+
+ +
+
+ ); +}; diff --git a/tgui/public/tgui.bundle.js b/tgui/public/tgui.bundle.js index 41bf7ef9e6..46cb94afb4 100644 --- a/tgui/public/tgui.bundle.js +++ b/tgui/public/tgui.bundle.js @@ -1 +1 @@ -!function(){var e={21926:function(e,t,n){"use strict";t.__esModule=!0,t.createPopper=void 0,t.popperGenerator=h;var o=m(n(48764)),r=m(n(68349)),a=m(n(3671)),i=m(n(55490)),c=(m(n(40755)),m(n(69282))),l=m(n(27672)),d=(m(n(30752)),m(n(12459)),m(n(27629)),m(n(54220))),u=m(n(75949));t.detectOverflow=u["default"];var s=n(79388);n(15954);function m(e){return e&&e.__esModule?e:{"default":e}}var p={placement:"bottom",modifiers:[],strategy:"absolute"};function f(){for(var e=arguments.length,t=new Array(e),n=0;n0&&(a=(0,r.round)(n.width)/l||1),c>0&&(i=(0,r.round)(n.height)/c||1)}return{width:n.width/a,height:n.height/i,top:n.top/i,right:n.right/a,bottom:n.bottom/i,left:n.left/a,x:n.left/a,y:n.top/i}};var o=n(79388),r=n(36291)},65647:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e,t,n){var o="clippingParents"===t?function(e){var t=(0,i["default"])((0,m["default"])(e)),n=["absolute","fixed"].indexOf((0,d["default"])(e).position)>=0&&(0,u.isHTMLElement)(e)?(0,c["default"])(e):e;if(!(0,u.isElement)(n))return[];return t.filter((function(e){return(0,u.isElement)(e)&&(0,p["default"])(e,n)&&"body"!==(0,f["default"])(e)}))}(e):[].concat(t),r=[].concat(o,[n]),a=r[0],l=r.reduce((function(t,n){var o=b(e,n);return t.top=(0,C.max)(o.top,t.top),t.right=(0,C.min)(o.right,t.right),t.bottom=(0,C.min)(o.bottom,t.bottom),t.left=(0,C.max)(o.left,t.left),t}),b(e,a));return l.width=l.right-l.left,l.height=l.bottom-l.top,l.x=l.left,l.y=l.top,l};var o=n(15954),r=N(n(8204)),a=N(n(40015)),i=N(n(3671)),c=N(n(55490)),l=N(n(25890)),d=N(n(40755)),u=n(79388),s=N(n(11100)),m=N(n(95136)),p=N(n(62215)),f=N(n(38569)),h=N(n(73060)),C=n(36291);function N(e){return e&&e.__esModule?e:{"default":e}}function b(e,t){return t===o.viewport?(0,h["default"])((0,r["default"])(e)):(0,u.isElement)(t)?function(e){var t=(0,s["default"])(e);return t.top=t.top+e.clientTop,t.left=t.left+e.clientLeft,t.bottom=t.top+e.clientHeight,t.right=t.left+e.clientWidth,t.width=e.clientWidth,t.height=e.clientHeight,t.x=t.left,t.y=t.top,t}(t):(0,h["default"])((0,a["default"])((0,l["default"])(e)))}},48764:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e,t,n){void 0===n&&(n=!1);var s=(0,i.isHTMLElement)(t),m=(0,i.isHTMLElement)(t)&&function(e){var t=e.getBoundingClientRect(),n=(0,u.round)(t.width)/e.offsetWidth||1,o=(0,u.round)(t.height)/e.offsetHeight||1;return 1!==n||1!==o}(t),p=(0,l["default"])(t),f=(0,o["default"])(e,m),h={scrollLeft:0,scrollTop:0},C={x:0,y:0};(s||!s&&!n)&&(("body"!==(0,a["default"])(t)||(0,d["default"])(p))&&(h=(0,r["default"])(t)),(0,i.isHTMLElement)(t)?((C=(0,o["default"])(t,!0)).x+=t.clientLeft,C.y+=t.clientTop):p&&(C.x=(0,c["default"])(p)));return{x:f.left+h.scrollLeft-C.x,y:f.top+h.scrollTop-C.y,width:f.width,height:f.height}};var o=s(n(11100)),r=s(n(3514)),a=s(n(38569)),i=n(79388),c=s(n(36056)),l=s(n(25890)),d=s(n(57360)),u=n(36291);function s(e){return e&&e.__esModule?e:{"default":e}}},40755:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){return(0,r["default"])(e).getComputedStyle(e)};var o,r=(o=n(96904))&&o.__esModule?o:{"default":o}},25890:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){return(((0,o.isElement)(e)?e.ownerDocument:e.document)||window.document).documentElement};var o=n(79388)},40015:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){var t,n=(0,o["default"])(e),l=(0,i["default"])(e),d=null==(t=e.ownerDocument)?void 0:t.body,u=(0,c.max)(n.scrollWidth,n.clientWidth,d?d.scrollWidth:0,d?d.clientWidth:0),s=(0,c.max)(n.scrollHeight,n.clientHeight,d?d.scrollHeight:0,d?d.clientHeight:0),m=-l.scrollLeft+(0,a["default"])(e),p=-l.scrollTop;"rtl"===(0,r["default"])(d||n).direction&&(m+=(0,c.max)(n.clientWidth,d?d.clientWidth:0)-u);return{width:u,height:s,x:m,y:p}};var o=l(n(25890)),r=l(n(40755)),a=l(n(36056)),i=l(n(69211)),c=n(36291);function l(e){return e&&e.__esModule?e:{"default":e}}},41829:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){return{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}}},68349:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){var t=(0,r["default"])(e),n=e.offsetWidth,o=e.offsetHeight;Math.abs(t.width-n)<=1&&(n=t.width);Math.abs(t.height-o)<=1&&(o=t.height);return{x:e.offsetLeft,y:e.offsetTop,width:n,height:o}};var o,r=(o=n(11100))&&o.__esModule?o:{"default":o}},38569:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){return e?(e.nodeName||"").toLowerCase():null}},3514:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){return e!==(0,r["default"])(e)&&(0,a.isHTMLElement)(e)?(0,i["default"])(e):(0,o["default"])(e)};var o=c(n(69211)),r=c(n(96904)),a=n(79388),i=c(n(41829));function c(e){return e&&e.__esModule?e:{"default":e}}},55490:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){var t=(0,o["default"])(e),n=u(e);for(;n&&(0,c["default"])(n)&&"static"===(0,a["default"])(n).position;)n=u(n);if(n&&("html"===(0,r["default"])(n)||"body"===(0,r["default"])(n)&&"static"===(0,a["default"])(n).position))return t;return n||function(e){var t=-1!==navigator.userAgent.toLowerCase().indexOf("firefox");if(-1!==navigator.userAgent.indexOf("Trident")&&(0,i.isHTMLElement)(e)){if("fixed"===(0,a["default"])(e).position)return null}var n=(0,l["default"])(e);(0,i.isShadowRoot)(n)&&(n=n.host);for(;(0,i.isHTMLElement)(n)&&["html","body"].indexOf((0,r["default"])(n))<0;){var o=(0,a["default"])(n);if("none"!==o.transform||"none"!==o.perspective||"paint"===o.contain||-1!==["transform","perspective"].indexOf(o.willChange)||t&&"filter"===o.willChange||t&&o.filter&&"none"!==o.filter)return n;n=n.parentNode}return null}(e)||t};var o=d(n(96904)),r=d(n(38569)),a=d(n(40755)),i=n(79388),c=d(n(94437)),l=d(n(95136));function d(e){return e&&e.__esModule?e:{"default":e}}function u(e){return(0,i.isHTMLElement)(e)&&"fixed"!==(0,a["default"])(e).position?e.offsetParent:null}},95136:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){if("html"===(0,o["default"])(e))return e;return e.assignedSlot||e.parentNode||((0,a.isShadowRoot)(e)?e.host:null)||(0,r["default"])(e)};var o=i(n(38569)),r=i(n(25890)),a=n(79388);function i(e){return e&&e.__esModule?e:{"default":e}}},43367:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function l(e){if(["html","body","#document"].indexOf((0,a["default"])(e))>=0)return e.ownerDocument.body;if((0,i.isHTMLElement)(e)&&(0,r["default"])(e))return e;return l((0,o["default"])(e))};var o=c(n(95136)),r=c(n(57360)),a=c(n(38569)),i=n(79388);function c(e){return e&&e.__esModule?e:{"default":e}}},8204:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){var t=(0,o["default"])(e),n=(0,r["default"])(e),i=t.visualViewport,c=n.clientWidth,l=n.clientHeight,d=0,u=0;i&&(c=i.width,l=i.height,/^((?!chrome|android).)*safari/i.test(navigator.userAgent)||(d=i.offsetLeft,u=i.offsetTop));return{width:c,height:l,x:d+(0,a["default"])(e),y:u}};var o=i(n(96904)),r=i(n(25890)),a=i(n(36056));function i(e){return e&&e.__esModule?e:{"default":e}}},96904:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){if(null==e)return window;if("[object Window]"!==e.toString()){var t=e.ownerDocument;return t&&t.defaultView||window}return e}},69211:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){var t=(0,r["default"])(e),n=t.pageXOffset,o=t.pageYOffset;return{scrollLeft:n,scrollTop:o}};var o,r=(o=n(96904))&&o.__esModule?o:{"default":o}},36056:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){return(0,o["default"])((0,r["default"])(e)).left+(0,a["default"])(e).scrollLeft};var o=i(n(11100)),r=i(n(25890)),a=i(n(69211));function i(e){return e&&e.__esModule?e:{"default":e}}},79388:function(e,t,n){"use strict";t.__esModule=!0,t.isElement=function(e){var t=(0,r["default"])(e).Element;return e instanceof t||e instanceof Element},t.isHTMLElement=function(e){var t=(0,r["default"])(e).HTMLElement;return e instanceof t||e instanceof HTMLElement},t.isShadowRoot=function(e){if("undefined"==typeof ShadowRoot)return!1;var t=(0,r["default"])(e).ShadowRoot;return e instanceof t||e instanceof ShadowRoot};var o,r=(o=n(96904))&&o.__esModule?o:{"default":o}},57360:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){var t=(0,r["default"])(e),n=t.overflow,o=t.overflowX,a=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+a+o)};var o,r=(o=n(40755))&&o.__esModule?o:{"default":o}},94437:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){return["table","td","th"].indexOf((0,r["default"])(e))>=0};var o,r=(o=n(38569))&&o.__esModule?o:{"default":o}},3671:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function l(e,t){var n;void 0===t&&(t=[]);var c=(0,o["default"])(e),d=c===(null==(n=e.ownerDocument)?void 0:n.body),u=(0,a["default"])(c),s=d?[u].concat(u.visualViewport||[],(0,i["default"])(c)?c:[]):c,m=t.concat(s);return d?m:m.concat(l((0,r["default"])(s)))};var o=c(n(43367)),r=c(n(95136)),a=c(n(96904)),i=c(n(57360));function c(e){return e&&e.__esModule?e:{"default":e}}},15954:function(e,t){"use strict";t.__esModule=!0,t.write=t.viewport=t.variationPlacements=t.top=t.start=t.right=t.reference=t.read=t.popper=t.placements=t.modifierPhases=t.main=t.left=t.end=t.clippingParents=t.bottom=t.beforeWrite=t.beforeRead=t.beforeMain=t.basePlacements=t.auto=t.afterWrite=t.afterRead=t.afterMain=void 0;t.top="top";var n="bottom";t.bottom=n;var o="right";t.right=o;var r="left";t.left=r;var a="auto";t.auto=a;var i=["top",n,o,r];t.basePlacements=i;var c="start";t.start=c;var l="end";t.end=l;t.clippingParents="clippingParents";t.viewport="viewport";t.popper="popper";t.reference="reference";var d=i.reduce((function(e,t){return e.concat([t+"-"+c,t+"-"+l])}),[]);t.variationPlacements=d;var u=[].concat(i,[a]).reduce((function(e,t){return e.concat([t,t+"-"+c,t+"-"+l])}),[]);t.placements=u;var s="beforeRead";t.beforeRead=s;var m="read";t.read=m;var p="afterRead";t.afterRead=p;var f="beforeMain";t.beforeMain=f;var h="main";t.main=h;var C="afterMain";t.afterMain=C;var N="beforeWrite";t.beforeWrite=N;var b="write";t.write=b;var g="afterWrite";t.afterWrite=g;var V=[s,m,p,f,h,C,N,b,g];t.modifierPhases=V},37809:function(e,t,n){"use strict";t.__esModule=!0;var o={popperGenerator:!0,detectOverflow:!0,createPopperBase:!0,createPopper:!0,createPopperLite:!0};t.popperGenerator=t.detectOverflow=t.createPopperLite=t.createPopperBase=t.createPopper=void 0;var r=n(15954);Object.keys(r).forEach((function(e){"default"!==e&&"__esModule"!==e&&(Object.prototype.hasOwnProperty.call(o,e)||e in t&&t[e]===r[e]||(t[e]=r[e]))}));var a=n(4207);Object.keys(a).forEach((function(e){"default"!==e&&"__esModule"!==e&&(Object.prototype.hasOwnProperty.call(o,e)||e in t&&t[e]===a[e]||(t[e]=a[e]))}));var i=n(21926);t.popperGenerator=i.popperGenerator,t.detectOverflow=i.detectOverflow,t.createPopperBase=i.createPopper;var c=n(17827);t.createPopper=c.createPopper;var l=n(47952);t.createPopperLite=l.createPopper},89290:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0;var o,r=(o=n(38569))&&o.__esModule?o:{"default":o},a=n(79388);var i={name:"applyStyles",enabled:!0,phase:"write",fn:function(e){var t=e.state;Object.keys(t.elements).forEach((function(e){var n=t.styles[e]||{},o=t.attributes[e]||{},i=t.elements[e];(0,a.isHTMLElement)(i)&&(0,r["default"])(i)&&(Object.assign(i.style,n),Object.keys(o).forEach((function(e){var t=o[e];!1===t?i.removeAttribute(e):i.setAttribute(e,!0===t?"":t)})))}))},effect:function(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow),function(){Object.keys(t.elements).forEach((function(e){var o=t.elements[e],i=t.attributes[e]||{},c=Object.keys(t.styles.hasOwnProperty(e)?t.styles[e]:n[e]).reduce((function(e,t){return e[t]="",e}),{});(0,a.isHTMLElement)(o)&&(0,r["default"])(o)&&(Object.assign(o.style,c),Object.keys(i).forEach((function(e){o.removeAttribute(e)})))}))}},requires:["computeStyles"]};t["default"]=i},71313:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0;var o=m(n(27629)),r=m(n(68349)),a=m(n(62215)),i=m(n(55490)),c=m(n(78772)),l=n(54444),d=m(n(11277)),u=m(n(45674)),s=n(15954);n(79388);function m(e){return e&&e.__esModule?e:{"default":e}}var p=function(e,t){return e="function"==typeof e?e(Object.assign({},t.rects,{placement:t.placement})):e,(0,d["default"])("number"!=typeof e?e:(0,u["default"])(e,s.basePlacements))};var f={name:"arrow",enabled:!0,phase:"main",fn:function(e){var t,n=e.state,a=e.name,d=e.options,u=n.elements.arrow,m=n.modifiersData.popperOffsets,f=(0,o["default"])(n.placement),h=(0,c["default"])(f),C=[s.left,s.right].indexOf(f)>=0?"height":"width";if(u&&m){var N=p(d.padding,n),b=(0,r["default"])(u),g="y"===h?s.top:s.left,V="y"===h?s.bottom:s.right,v=n.rects.reference[C]+n.rects.reference[h]-m[h]-n.rects.popper[C],_=m[h]-n.rects.reference[h],k=(0,i["default"])(u),y=k?"y"===h?k.clientHeight||0:k.clientWidth||0:0,x=v/2-_/2,w=N[g],B=y-b[C]-N[V],L=y/2-b[C]/2+x,S=(0,l.within)(w,L,B),I=h;n.modifiersData[a]=((t={})[I]=S,t.centerOffset=S-L,t)}},effect:function(e){var t=e.state,n=e.options.element,o=void 0===n?"[data-popper-arrow]":n;null!=o&&("string"!=typeof o||(o=t.elements.popper.querySelector(o)))&&(0,a["default"])(t.elements.popper,o)&&(t.elements.arrow=o)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};t["default"]=f},54680:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0,t.mapToStyles=p;var o=n(15954),r=s(n(55490)),a=s(n(96904)),i=s(n(25890)),c=s(n(40755)),l=s(n(27629)),d=s(n(31686)),u=n(36291);function s(e){return e&&e.__esModule?e:{"default":e}}var m={top:"auto",right:"auto",bottom:"auto",left:"auto"};function p(e){var t,n=e.popper,l=e.popperRect,d=e.placement,s=e.variation,p=e.offsets,f=e.position,h=e.gpuAcceleration,C=e.adaptive,N=e.roundOffsets,b=e.isFixed,g=p.x,V=void 0===g?0:g,v=p.y,_=void 0===v?0:v,k="function"==typeof N?N({x:V,y:_}):{x:V,y:_};V=k.x,_=k.y;var y=p.hasOwnProperty("x"),x=p.hasOwnProperty("y"),w=o.left,B=o.top,L=window;if(C){var S=(0,r["default"])(n),I="clientHeight",T="clientWidth";if(S===(0,a["default"])(n)&&(S=(0,i["default"])(n),"static"!==(0,c["default"])(S).position&&"absolute"===f&&(I="scrollHeight",T="scrollWidth")),d===o.top||(d===o.left||d===o.right)&&s===o.end)B=o.bottom,_-=(b&&S===L&&L.visualViewport?L.visualViewport.height:S[I])-l.height,_*=h?1:-1;if(d===o.left||(d===o.top||d===o.bottom)&&s===o.end)w=o.right,V-=(b&&S===L&&L.visualViewport?L.visualViewport.width:S[T])-l.width,V*=h?1:-1}var A,M=Object.assign({position:f},C&&m),E=!0===N?function(e){var t=e.x,n=e.y,o=window.devicePixelRatio||1;return{x:(0,u.round)(t*o)/o||0,y:(0,u.round)(n*o)/o||0}}({x:V,y:_}):{x:V,y:_};return V=E.x,_=E.y,h?Object.assign({},M,((A={})[B]=x?"0":"",A[w]=y?"0":"",A.transform=(L.devicePixelRatio||1)<=1?"translate("+V+"px, "+_+"px)":"translate3d("+V+"px, "+_+"px, 0)",A)):Object.assign({},M,((t={})[B]=x?_+"px":"",t[w]=y?V+"px":"",t.transform="",t))}var f={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(e){var t=e.state,n=e.options,o=n.gpuAcceleration,r=void 0===o||o,a=n.adaptive,i=void 0===a||a,c=n.roundOffsets,u=void 0===c||c,s={placement:(0,l["default"])(t.placement),variation:(0,d["default"])(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:r,isFixed:"fixed"===t.options.strategy};null!=t.modifiersData.popperOffsets&&(t.styles.popper=Object.assign({},t.styles.popper,p(Object.assign({},s,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:i,roundOffsets:u})))),null!=t.modifiersData.arrow&&(t.styles.arrow=Object.assign({},t.styles.arrow,p(Object.assign({},s,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:u})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})},data:{}};t["default"]=f},53887:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0;var o,r=(o=n(96904))&&o.__esModule?o:{"default":o};var a={passive:!0};var i={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(e){var t=e.state,n=e.instance,o=e.options,i=o.scroll,c=void 0===i||i,l=o.resize,d=void 0===l||l,u=(0,r["default"])(t.elements.popper),s=[].concat(t.scrollParents.reference,t.scrollParents.popper);return c&&s.forEach((function(e){e.addEventListener("scroll",n.update,a)})),d&&u.addEventListener("resize",n.update,a),function(){c&&s.forEach((function(e){e.removeEventListener("scroll",n.update,a)})),d&&u.removeEventListener("resize",n.update,a)}},data:{}};t["default"]=i},82566:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0;var o=u(n(31477)),r=u(n(27629)),a=u(n(44214)),i=u(n(75949)),c=u(n(2894)),l=n(15954),d=u(n(31686));function u(e){return e&&e.__esModule?e:{"default":e}}var s={name:"flip",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,u=e.name;if(!t.modifiersData[u]._skip){for(var s=n.mainAxis,m=void 0===s||s,p=n.altAxis,f=void 0===p||p,h=n.fallbackPlacements,C=n.padding,N=n.boundary,b=n.rootBoundary,g=n.altBoundary,V=n.flipVariations,v=void 0===V||V,_=n.allowedAutoPlacements,k=t.options.placement,y=(0,r["default"])(k),x=h||(y===k||!v?[(0,o["default"])(k)]:function(e){if((0,r["default"])(e)===l.auto)return[];var t=(0,o["default"])(e);return[(0,a["default"])(e),t,(0,a["default"])(t)]}(k)),w=[k].concat(x).reduce((function(e,n){return e.concat((0,r["default"])(n)===l.auto?(0,c["default"])(t,{placement:n,boundary:N,rootBoundary:b,padding:C,flipVariations:v,allowedAutoPlacements:_}):n)}),[]),B=t.rects.reference,L=t.rects.popper,S=new Map,I=!0,T=w[0],A=0;A=0,F=O?"width":"height",D=(0,i["default"])(t,{placement:M,boundary:N,rootBoundary:b,altBoundary:g,padding:C}),R=O?P?l.right:l.left:P?l.bottom:l.top;B[F]>L[F]&&(R=(0,o["default"])(R));var j=(0,o["default"])(R),W=[];if(m&&W.push(D[E]<=0),f&&W.push(D[R]<=0,D[j]<=0),W.every((function(e){return e}))){T=M,I=!1;break}S.set(M,W)}if(I)for(var z=function(e){var t=w.find((function(t){var n=S.get(t);if(n)return n.slice(0,e).every((function(e){return e}))}));if(t)return T=t,"break"},U=v?3:1;U>0;U--){if("break"===z(U))break}t.placement!==T&&(t.modifiersData[u]._skip=!0,t.placement=T,t.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};t["default"]=s},27353:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0;var o,r=n(15954),a=(o=n(75949))&&o.__esModule?o:{"default":o};function i(e,t,n){return void 0===n&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function c(e){return[r.top,r.right,r.bottom,r.left].some((function(t){return e[t]>=0}))}var l={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(e){var t=e.state,n=e.name,o=t.rects.reference,r=t.rects.popper,l=t.modifiersData.preventOverflow,d=(0,a["default"])(t,{elementContext:"reference"}),u=(0,a["default"])(t,{altBoundary:!0}),s=i(d,o),m=i(u,r,l),p=c(s),f=c(m);t.modifiersData[n]={referenceClippingOffsets:s,popperEscapeOffsets:m,isReferenceHidden:p,hasPopperEscaped:f},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":p,"data-popper-escaped":f})}};t["default"]=l},4207:function(e,t,n){"use strict";t.__esModule=!0,t.preventOverflow=t.popperOffsets=t.offset=t.hide=t.flip=t.eventListeners=t.computeStyles=t.arrow=t.applyStyles=void 0;var o=m(n(89290));t.applyStyles=o["default"];var r=m(n(71313));t.arrow=r["default"];var a=m(n(54680));t.computeStyles=a["default"];var i=m(n(53887));t.eventListeners=i["default"];var c=m(n(82566));t.flip=c["default"];var l=m(n(27353));t.hide=l["default"];var d=m(n(99873));t.offset=d["default"];var u=m(n(83662));t.popperOffsets=u["default"];var s=m(n(21031));function m(e){return e&&e.__esModule?e:{"default":e}}t.preventOverflow=s["default"]},99873:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0,t.distanceAndSkiddingToXY=i;var o,r=(o=n(27629))&&o.__esModule?o:{"default":o},a=n(15954);function i(e,t,n){var o=(0,r["default"])(e),i=[a.left,a.top].indexOf(o)>=0?-1:1,c="function"==typeof n?n(Object.assign({},t,{placement:e})):n,l=c[0],d=c[1];return l=l||0,d=(d||0)*i,[a.left,a.right].indexOf(o)>=0?{x:d,y:l}:{x:l,y:d}}var c={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(e){var t=e.state,n=e.options,o=e.name,r=n.offset,c=void 0===r?[0,0]:r,l=a.placements.reduce((function(e,n){return e[n]=i(n,t.rects,c),e}),{}),d=l[t.placement],u=d.x,s=d.y;null!=t.modifiersData.popperOffsets&&(t.modifiersData.popperOffsets.x+=u,t.modifiersData.popperOffsets.y+=s),t.modifiersData[o]=l}};t["default"]=c},83662:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0;var o,r=(o=n(2002))&&o.__esModule?o:{"default":o};var a={name:"popperOffsets",enabled:!0,phase:"read",fn:function(e){var t=e.state,n=e.name;t.modifiersData[n]=(0,r["default"])({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})},data:{}};t["default"]=a},21031:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0;var o=n(15954),r=f(n(27629)),a=f(n(78772)),i=f(n(16696)),c=n(54444),l=f(n(68349)),d=f(n(55490)),u=f(n(75949)),s=f(n(31686)),m=f(n(22710)),p=n(36291);function f(e){return e&&e.__esModule?e:{"default":e}}var h={name:"preventOverflow",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,f=e.name,h=n.mainAxis,C=void 0===h||h,N=n.altAxis,b=void 0!==N&&N,g=n.boundary,V=n.rootBoundary,v=n.altBoundary,_=n.padding,k=n.tether,y=void 0===k||k,x=n.tetherOffset,w=void 0===x?0:x,B=(0,u["default"])(t,{boundary:g,rootBoundary:V,padding:_,altBoundary:v}),L=(0,r["default"])(t.placement),S=(0,s["default"])(t.placement),I=!S,T=(0,a["default"])(L),A=(0,i["default"])(T),M=t.modifiersData.popperOffsets,E=t.rects.reference,P=t.rects.popper,O="function"==typeof w?w(Object.assign({},t.rects,{placement:t.placement})):w,F="number"==typeof O?{mainAxis:O,altAxis:O}:Object.assign({mainAxis:0,altAxis:0},O),D=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,R={x:0,y:0};if(M){if(C){var j,W="y"===T?o.top:o.left,z="y"===T?o.bottom:o.right,U="y"===T?"height":"width",H=M[T],G=H+B[W],q=H-B[z],K=y?-P[U]/2:0,Y=S===o.start?E[U]:P[U],$=S===o.start?-P[U]:-E[U],X=t.elements.arrow,Q=y&&X?(0,l["default"])(X):{width:0,height:0},J=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:(0,m["default"])(),Z=J[W],ee=J[z],te=(0,c.within)(0,E[U],Q[U]),ne=I?E[U]/2-K-te-Z-F.mainAxis:Y-te-Z-F.mainAxis,oe=I?-E[U]/2+K+te+ee+F.mainAxis:$+te+ee+F.mainAxis,re=t.elements.arrow&&(0,d["default"])(t.elements.arrow),ae=re?"y"===T?re.clientTop||0:re.clientLeft||0:0,ie=null!=(j=null==D?void 0:D[T])?j:0,ce=H+ne-ie-ae,le=H+oe-ie,de=(0,c.within)(y?(0,p.min)(G,ce):G,H,y?(0,p.max)(q,le):q);M[T]=de,R[T]=de-H}if(b){var ue,se="x"===T?o.top:o.left,me="x"===T?o.bottom:o.right,pe=M[A],fe="y"===A?"height":"width",he=pe+B[se],Ce=pe-B[me],Ne=-1!==[o.top,o.left].indexOf(L),be=null!=(ue=null==D?void 0:D[A])?ue:0,ge=Ne?he:pe-E[fe]-P[fe]-be+F.altAxis,Ve=Ne?pe+E[fe]+P[fe]-be-F.altAxis:Ce,ve=y&&Ne?(0,c.withinMaxClamp)(ge,pe,Ve):(0,c.within)(y?ge:he,pe,y?Ve:Ce);M[A]=ve,R[A]=ve-pe}t.modifiersData[f]=R}},requiresIfExists:["offset"]};t["default"]=h},47952:function(e,t,n){"use strict";t.__esModule=!0,t.defaultModifiers=t.createPopper=void 0;var o=n(21926);t.popperGenerator=o.popperGenerator,t.detectOverflow=o.detectOverflow;var r=l(n(53887)),a=l(n(83662)),i=l(n(54680)),c=l(n(89290));function l(e){return e&&e.__esModule?e:{"default":e}}var d=[r["default"],a["default"],i["default"],c["default"]];t.defaultModifiers=d;var u=(0,o.popperGenerator)({defaultModifiers:d});t.createPopper=u},17827:function(e,t,n){"use strict";t.__esModule=!0;var o={createPopper:!0,createPopperLite:!0,defaultModifiers:!0,popperGenerator:!0,detectOverflow:!0};t.defaultModifiers=t.createPopperLite=t.createPopper=void 0;var r=n(21926);t.popperGenerator=r.popperGenerator,t.detectOverflow=r.detectOverflow;var a=C(n(53887)),i=C(n(83662)),c=C(n(54680)),l=C(n(89290)),d=C(n(99873)),u=C(n(82566)),s=C(n(21031)),m=C(n(71313)),p=C(n(27353)),f=n(47952);t.createPopperLite=f.createPopper;var h=n(4207);function C(e){return e&&e.__esModule?e:{"default":e}}Object.keys(h).forEach((function(e){"default"!==e&&"__esModule"!==e&&(Object.prototype.hasOwnProperty.call(o,e)||e in t&&t[e]===h[e]||(t[e]=h[e]))}));var N=[a["default"],i["default"],c["default"],l["default"],d["default"],u["default"],s["default"],m["default"],p["default"]];t.defaultModifiers=N;var b=(0,r.popperGenerator)({defaultModifiers:N});t.createPopperLite=t.createPopper=b},2894:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e,t){void 0===t&&(t={});var n=t,c=n.placement,l=n.boundary,d=n.rootBoundary,u=n.padding,s=n.flipVariations,m=n.allowedAutoPlacements,p=void 0===m?r.placements:m,f=(0,o["default"])(c),h=f?s?r.variationPlacements:r.variationPlacements.filter((function(e){return(0,o["default"])(e)===f})):r.basePlacements,C=h.filter((function(e){return p.indexOf(e)>=0}));0===C.length&&(C=h);var N=C.reduce((function(t,n){return t[n]=(0,a["default"])(e,{placement:n,boundary:l,rootBoundary:d,padding:u})[(0,i["default"])(n)],t}),{});return Object.keys(N).sort((function(e,t){return N[e]-N[t]}))};var o=c(n(31686)),r=n(15954),a=c(n(75949)),i=c(n(27629));function c(e){return e&&e.__esModule?e:{"default":e}}},2002:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){var t,n=e.reference,c=e.element,l=e.placement,d=l?(0,o["default"])(l):null,u=l?(0,r["default"])(l):null,s=n.x+n.width/2-c.width/2,m=n.y+n.height/2-c.height/2;switch(d){case i.top:t={x:s,y:n.y-c.height};break;case i.bottom:t={x:s,y:n.y+n.height};break;case i.right:t={x:n.x+n.width,y:m};break;case i.left:t={x:n.x-c.width,y:m};break;default:t={x:n.x,y:n.y}}var p=d?(0,a["default"])(d):null;if(null!=p){var f="y"===p?"height":"width";switch(u){case i.start:t[p]=t[p]-(n[f]/2-c[f]/2);break;case i.end:t[p]=t[p]+(n[f]/2-c[f]/2)}}return t};var o=c(n(27629)),r=c(n(31686)),a=c(n(78772)),i=n(15954);function c(e){return e&&e.__esModule?e:{"default":e}}},27672:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){var t;return function(){return t||(t=new Promise((function(n){Promise.resolve().then((function(){t=undefined,n(e())}))}))),t}}},75949:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e,t){void 0===t&&(t={});var n=t,m=n.placement,p=void 0===m?e.placement:m,f=n.boundary,h=void 0===f?l.clippingParents:f,C=n.rootBoundary,N=void 0===C?l.viewport:C,b=n.elementContext,g=void 0===b?l.popper:b,V=n.altBoundary,v=void 0!==V&&V,_=n.padding,k=void 0===_?0:_,y=(0,u["default"])("number"!=typeof k?k:(0,s["default"])(k,l.basePlacements)),x=g===l.popper?l.reference:l.popper,w=e.rects.popper,B=e.elements[v?x:g],L=(0,o["default"])((0,d.isElement)(B)?B:B.contextElement||(0,r["default"])(e.elements.popper),h,N),S=(0,a["default"])(e.elements.reference),I=(0,i["default"])({reference:S,element:w,strategy:"absolute",placement:p}),T=(0,c["default"])(Object.assign({},w,I)),A=g===l.popper?T:S,M={top:L.top-A.top+y.top,bottom:A.bottom-L.bottom+y.bottom,left:L.left-A.left+y.left,right:A.right-L.right+y.right},E=e.modifiersData.offset;if(g===l.popper&&E){var P=E[p];Object.keys(M).forEach((function(e){var t=[l.right,l.bottom].indexOf(e)>=0?1:-1,n=[l.top,l.bottom].indexOf(e)>=0?"y":"x";M[e]+=P[n]*t}))}return M};var o=m(n(65647)),r=m(n(25890)),a=m(n(11100)),i=m(n(2002)),c=m(n(73060)),l=n(15954),d=n(79388),u=m(n(11277)),s=m(n(45674));function m(e){return e&&e.__esModule?e:{"default":e}}},45674:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e,t){return t.reduce((function(t,n){return t[n]=e,t}),{})}},80885:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),o=1;o=0?"x":"y"}},31477:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){return e.replace(/left|right|bottom|top/g,(function(e){return n[e]}))};var n={left:"right",right:"left",bottom:"top",top:"bottom"}},44214:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){return e.replace(/start|end/g,(function(e){return n[e]}))};var n={start:"end",end:"start"}},31686:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){return e.split("-")[1]}},36291:function(e,t){"use strict";t.__esModule=!0,t.round=t.min=t.max=void 0;var n=Math.max;t.max=n;var o=Math.min;t.min=o;var r=Math.round;t.round=r},54220:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){var t=e.reduce((function(e,t){var n=e[t.name];return e[t.name]=n?Object.assign({},n,t,{options:Object.assign({},n.options,t.options),data:Object.assign({},n.data,t.data)}):t,e}),{});return Object.keys(t).map((function(e){return t[e]}))}},11277:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){return Object.assign({},(0,r["default"])(),e)};var o,r=(o=n(22710))&&o.__esModule?o:{"default":o}},69282:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){var t=function(e){var t=new Map,n=new Set,o=[];function r(e){n.add(e.name),[].concat(e.requires||[],e.requiresIfExists||[]).forEach((function(e){if(!n.has(e)){var o=t.get(e);o&&r(o)}})),o.push(e)}return e.forEach((function(e){t.set(e.name,e)})),e.forEach((function(e){n.has(e.name)||r(e)})),o}(e);return o.modifierPhases.reduce((function(e,n){return e.concat(t.filter((function(e){return e.phase===n})))}),[])};var o=n(15954)},73060:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}},12459:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e,t){var n=new Set;return e.filter((function(e){var o=t(e);if(!n.has(o))return n.add(o),!0}))}},30752:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){e.forEach((function(t){[].concat(Object.keys(t),a).filter((function(e,t,n){return n.indexOf(e)===t})).forEach((function(n){switch(n){case"name":t.name;break;case"enabled":t.enabled;break;case"phase":r.modifierPhases.indexOf(t.phase);break;case"fn":t.fn;break;case"effect":null!=t.effect&&t.effect;break;case"requires":null!=t.requires&&Array.isArray(t.requires);break;case"requiresIfExists":Array.isArray(t.requiresIfExists)}t.requires&&t.requires.forEach((function(t){e.find((function(e){return e.name===t}))}))}))}))};(o=n(80885))&&o.__esModule;var o,r=n(15954);var a=["name","enabled","phase","fn","effect","requires","options"]},54444:function(e,t,n){"use strict";t.__esModule=!0,t.within=r,t.withinMaxClamp=function(e,t,n){var o=r(e,t,n);return o>n?n:o};var o=n(36291);function r(e,t,n){return(0,o.max)(e,(0,o.min)(t,n))}},7696:function(e,t,n){"use strict";var o=n(45744),r=n(56279),a=TypeError;e.exports=function(e){if(o(e))return e;throw a(r(e)+" is not a function")}},99079:function(e,t,n){"use strict";var o=n(49332),r=n(56279),a=TypeError;e.exports=function(e){if(o(e))return e;throw a(r(e)+" is not a constructor")}},3760:function(e,t,n){"use strict";var o=n(45744),r=String,a=TypeError;e.exports=function(e){if("object"==typeof e||o(e))return e;throw a("Can't set "+r(e)+" as a prototype")}},48144:function(e,t,n){"use strict";var o=n(43741),r=n(48525),a=n(92723).f,i=o("unscopables"),c=Array.prototype;c[i]==undefined&&a(c,i,{configurable:!0,value:r(null)}),e.exports=function(e){c[i][e]=!0}},21679:function(e,t,n){"use strict";var o=n(59529).charAt;e.exports=function(e,t,n){return t+(n?o(e,t).length:1)}},41706:function(e,t,n){"use strict";var o=n(76469),r=TypeError;e.exports=function(e,t){if(o(t,e))return e;throw r("Incorrect invocation")}},65522:function(e,t,n){"use strict";var o=n(5484),r=String,a=TypeError;e.exports=function(e){if(o(e))return e;throw a(r(e)+" is not an object")}},65167:function(e){"use strict";e.exports="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView},26974:function(e,t,n){"use strict";var o=n(39125);e.exports=o((function(){if("function"==typeof ArrayBuffer){var e=new ArrayBuffer(8);Object.isExtensible(e)&&Object.defineProperty(e,"a",{value:8})}}))},92574:function(e,t,n){"use strict";var o,r,a,i=n(65167),c=n(77849),l=n(61770),d=n(45744),u=n(5484),s=n(77807),m=n(10374),p=n(56279),f=n(87229),h=n(73e3),C=n(92723).f,N=n(76469),b=n(56997),g=n(44958),V=n(43741),v=n(8220),_=n(48797),k=_.enforce,y=_.get,x=l.Int8Array,w=x&&x.prototype,B=l.Uint8ClampedArray,L=B&&B.prototype,S=x&&b(x),I=w&&b(w),T=Object.prototype,A=l.TypeError,M=V("toStringTag"),E=v("TYPED_ARRAY_TAG"),P="TypedArrayConstructor",O=i&&!!g&&"Opera"!==m(l.opera),F=!1,D={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},R={BigInt64Array:8,BigUint64Array:8},j=function(e){if(!u(e))return!1;var t=m(e);return"DataView"===t||s(D,t)||s(R,t)},W=function(e){if(!u(e))return!1;var t=m(e);return s(D,t)||s(R,t)};for(o in D)(a=(r=l[o])&&r.prototype)?k(a).TypedArrayConstructor=r:O=!1;for(o in R)(a=(r=l[o])&&r.prototype)&&(k(a).TypedArrayConstructor=r);if((!O||!d(S)||S===Function.prototype)&&(S=function(){throw A("Incorrect invocation")},O))for(o in D)l[o]&&g(l[o],S);if((!O||!I||I===T)&&(I=S.prototype,O))for(o in D)l[o]&&g(l[o].prototype,I);if(O&&b(L)!==I&&g(L,I),c&&!s(I,M))for(o in F=!0,C(I,M,{get:function(){return u(this)?this[E]:undefined}}),D)l[o]&&f(l[o],E,o);e.exports={NATIVE_ARRAY_BUFFER_VIEWS:O,TYPED_ARRAY_TAG:F&&E,aTypedArray:function(e){if(W(e))return e;throw A("Target is not a typed array")},aTypedArrayConstructor:function(e){if(d(e)&&(!g||N(S,e)))return e;throw A(p(e)+" is not a typed array constructor")},exportTypedArrayMethod:function(e,t,n,o){if(c){if(n)for(var r in D){var a=l[r];if(a&&s(a.prototype,e))try{delete a.prototype[e]}catch(i){try{a.prototype[e]=t}catch(d){}}}I[e]&&!n||h(I,e,n?t:O&&w[e]||t,o)}},exportTypedArrayStaticMethod:function(e,t,n){var o,r;if(c){if(g){if(n)for(o in D)if((r=l[o])&&s(r,e))try{delete r[e]}catch(a){}if(S[e]&&!n)return;try{return h(S,e,n?t:O&&S[e]||t)}catch(a){}}for(o in D)!(r=l[o])||r[e]&&!n||h(r,e,t)}},getTypedArrayConstructor:function z(e){var t=b(e);if(u(t)){var n=y(t);return n&&s(n,P)?n.TypedArrayConstructor:z(t)}},isView:j,isTypedArray:W,TypedArray:S,TypedArrayPrototype:I}},10377:function(e,t,n){"use strict";var o=n(61770),r=n(90655),a=n(77849),i=n(65167),c=n(82429),l=n(87229),d=n(60495),u=n(39125),s=n(41706),m=n(94868),p=n(87543),f=n(76124),h=n(29209),C=n(56997),N=n(44958),b=n(94600).f,g=n(92723).f,V=n(8093),v=n(74337),_=n(93182),k=n(48797),y=c.PROPER,x=c.CONFIGURABLE,w=k.get,B=k.set,L="ArrayBuffer",S="DataView",I="Wrong index",T=o.ArrayBuffer,A=T,M=A&&A.prototype,E=o.DataView,P=E&&E.prototype,O=Object.prototype,F=o.Array,D=o.RangeError,R=r(V),j=r([].reverse),W=h.pack,z=h.unpack,U=function(e){return[255&e]},H=function(e){return[255&e,e>>8&255]},G=function(e){return[255&e,e>>8&255,e>>16&255,e>>24&255]},q=function(e){return e[3]<<24|e[2]<<16|e[1]<<8|e[0]},K=function(e){return W(e,23,4)},Y=function(e){return W(e,52,8)},$=function(e,t){g(e.prototype,t,{get:function(){return w(this)[t]}})},X=function(e,t,n,o){var r=f(n),a=w(e);if(r+t>a.byteLength)throw D(I);var i=w(a.buffer).bytes,c=r+a.byteOffset,l=v(i,c,c+t);return o?l:j(l)},Q=function(e,t,n,o,r,a){var i=f(n),c=w(e);if(i+t>c.byteLength)throw D(I);for(var l=w(c.buffer).bytes,d=i+c.byteOffset,u=o(+r),s=0;ste;)(Z=ee[te++])in A||l(A,Z,T[Z]);M.constructor=A}N&&C(P)!==O&&N(P,O);var ne=new E(new A(2)),oe=r(P.setInt8);ne.setInt8(0,2147483648),ne.setInt8(1,2147483649),!ne.getInt8(0)&&ne.getInt8(1)||d(P,{setInt8:function(e,t){oe(this,e,t<<24>>24)},setUint8:function(e,t){oe(this,e,t<<24>>24)}},{unsafe:!0})}else M=(A=function(e){s(this,M);var t=f(e);B(this,{bytes:R(F(t),0),byteLength:t}),a||(this.byteLength=t)}).prototype,P=(E=function(e,t,n){s(this,P),s(e,M);var o=w(e).byteLength,r=m(t);if(r<0||r>o)throw D("Wrong offset");if(r+(n=n===undefined?o-r:p(n))>o)throw D("Wrong length");B(this,{buffer:e,byteLength:n,byteOffset:r}),a||(this.buffer=e,this.byteLength=n,this.byteOffset=r)}).prototype,a&&($(A,"byteLength"),$(E,"buffer"),$(E,"byteLength"),$(E,"byteOffset")),d(P,{getInt8:function(e){return X(this,1,e)[0]<<24>>24},getUint8:function(e){return X(this,1,e)[0]},getInt16:function(e){var t=X(this,2,e,arguments.length>1?arguments[1]:undefined);return(t[1]<<8|t[0])<<16>>16},getUint16:function(e){var t=X(this,2,e,arguments.length>1?arguments[1]:undefined);return t[1]<<8|t[0]},getInt32:function(e){return q(X(this,4,e,arguments.length>1?arguments[1]:undefined))},getUint32:function(e){return q(X(this,4,e,arguments.length>1?arguments[1]:undefined))>>>0},getFloat32:function(e){return z(X(this,4,e,arguments.length>1?arguments[1]:undefined),23)},getFloat64:function(e){return z(X(this,8,e,arguments.length>1?arguments[1]:undefined),52)},setInt8:function(e,t){Q(this,1,e,U,t)},setUint8:function(e,t){Q(this,1,e,U,t)},setInt16:function(e,t){Q(this,2,e,H,t,arguments.length>2?arguments[2]:undefined)},setUint16:function(e,t){Q(this,2,e,H,t,arguments.length>2?arguments[2]:undefined)},setInt32:function(e,t){Q(this,4,e,G,t,arguments.length>2?arguments[2]:undefined)},setUint32:function(e,t){Q(this,4,e,G,t,arguments.length>2?arguments[2]:undefined)},setFloat32:function(e,t){Q(this,4,e,K,t,arguments.length>2?arguments[2]:undefined)},setFloat64:function(e,t){Q(this,8,e,Y,t,arguments.length>2?arguments[2]:undefined)}});_(A,L),_(E,S),e.exports={ArrayBuffer:A,DataView:E}},21497:function(e,t,n){"use strict";var o=n(73502),r=n(312),a=n(10950),i=n(33099),c=Math.min;e.exports=[].copyWithin||function(e,t){var n=o(this),l=a(n),d=r(e,l),u=r(t,l),s=arguments.length>2?arguments[2]:undefined,m=c((s===undefined?l:r(s,l))-u,l-d),p=1;for(u0;)u in n?n[d]=n[u]:i(n,d),d+=p,u+=p;return n}},8093:function(e,t,n){"use strict";var o=n(73502),r=n(312),a=n(10950);e.exports=function(e){for(var t=o(this),n=a(t),i=arguments.length,c=r(i>1?arguments[1]:undefined,n),l=i>2?arguments[2]:undefined,d=l===undefined?n:r(l,n);d>c;)t[c++]=e;return t}},29074:function(e,t,n){"use strict";var o=n(36249).forEach,r=n(74640)("forEach");e.exports=r?[].forEach:function(e){return o(this,e,arguments.length>1?arguments[1]:undefined)}},15993:function(e,t,n){"use strict";var o=n(10950);e.exports=function(e,t){for(var n=0,r=o(t),a=new e(r);r>n;)a[n]=t[n++];return a}},49981:function(e,t,n){"use strict";var o=n(9341),r=n(76348),a=n(73502),i=n(63635),c=n(94535),l=n(49332),d=n(10950),u=n(61154),s=n(93247),m=n(52522),p=Array;e.exports=function(e){var t=a(e),n=l(this),f=arguments.length,h=f>1?arguments[1]:undefined,C=h!==undefined;C&&(h=o(h,f>2?arguments[2]:undefined));var N,b,g,V,v,_,k=m(t),y=0;if(!k||this===p&&c(k))for(N=d(t),b=n?new this(N):p(N);N>y;y++)_=C?h(t[y],y):t[y],u(b,y,_);else for(v=(V=s(t,k)).next,b=n?new this:[];!(g=r(v,V)).done;y++)_=C?i(V,h,[g.value,y],!0):g.value,u(b,y,_);return b.length=y,b}},89344:function(e,t,n){"use strict";var o=n(4254),r=n(312),a=n(10950),i=function(e){return function(t,n,i){var c,l=o(t),d=a(l),u=r(i,d);if(e&&n!=n){for(;d>u;)if((c=l[u++])!=c)return!0}else for(;d>u;u++)if((e||u in l)&&l[u]===n)return e||u||0;return!e&&-1}};e.exports={includes:i(!0),indexOf:i(!1)}},36249:function(e,t,n){"use strict";var o=n(9341),r=n(90655),a=n(83609),i=n(73502),c=n(10950),l=n(64711),d=r([].push),u=function(e){var t=1==e,n=2==e,r=3==e,u=4==e,s=6==e,m=7==e,p=5==e||s;return function(f,h,C,N){for(var b,g,V=i(f),v=a(V),_=o(h,C),k=c(v),y=0,x=N||l,w=t?x(f,k):n||m?x(f,0):undefined;k>y;y++)if((p||y in v)&&(g=_(b=v[y],y,V),e))if(t)w[y]=g;else if(g)switch(e){case 3:return!0;case 5:return b;case 6:return y;case 2:d(w,b)}else switch(e){case 4:return!1;case 7:d(w,b)}return s?-1:r||u?u:w}};e.exports={forEach:u(0),map:u(1),filter:u(2),some:u(3),every:u(4),find:u(5),findIndex:u(6),filterReject:u(7)}},93881:function(e,t,n){"use strict";var o=n(10261),r=n(4254),a=n(94868),i=n(10950),c=n(74640),l=Math.min,d=[].lastIndexOf,u=!!d&&1/[1].lastIndexOf(1,-0)<0,s=c("lastIndexOf"),m=u||!s;e.exports=m?function(e){if(u)return o(d,this,arguments)||0;var t=r(this),n=i(t),c=n-1;for(arguments.length>1&&(c=l(c,a(arguments[1]))),c<0&&(c=n+c);c>=0;c--)if(c in t&&t[c]===e)return c||0;return-1}:d},10112:function(e,t,n){"use strict";var o=n(39125),r=n(43741),a=n(64279),i=r("species");e.exports=function(e){return a>=51||!o((function(){var t=[];return(t.constructor={})[i]=function(){return{foo:1}},1!==t[e](Boolean).foo}))}},74640:function(e,t,n){"use strict";var o=n(39125);e.exports=function(e,t){var n=[][e];return!!n&&o((function(){n.call(null,t||function(){return 1},1)}))}},21038:function(e,t,n){"use strict";var o=n(7696),r=n(73502),a=n(83609),i=n(10950),c=TypeError,l=function(e){return function(t,n,l,d){o(n);var u=r(t),s=a(u),m=i(u),p=e?m-1:0,f=e?-1:1;if(l<2)for(;;){if(p in s){d=s[p],p+=f;break}if(p+=f,e?p<0:m<=p)throw c("Reduce of empty array with no initial value")}for(;e?p>=0:m>p;p+=f)p in s&&(d=n(d,s[p],p,u));return d}};e.exports={left:l(!1),right:l(!0)}},74337:function(e,t,n){"use strict";var o=n(312),r=n(10950),a=n(61154),i=Array,c=Math.max;e.exports=function(e,t,n){for(var l=r(e),d=o(t,l),u=o(n===undefined?l:n,l),s=i(c(u-d,0)),m=0;d0;)e[o]=e[--o];o!==a++&&(e[o]=n)}return e},i=function(e,t,n,o){for(var r=t.length,a=n.length,i=0,c=0;i1?arguments[1]:undefined);t=t?t.next:n.first;)for(o(t.value,t.key,this);t&&t.removed;)t=t.previous},has:function(e){return!!b(this,e)}}),a(p,n?{get:function(e){var t=b(this,e);return t&&t.value},set:function(e,t){return N(this,0===e?0:e,t)}}:{add:function(e){return N(this,e=0===e?0:e,e)}}),s&&o(p,"size",{get:function(){return C(this).size}}),u},setStrong:function(e,t,n){var o=t+" Iterator",r=h(t),a=h(o);d(e,t,(function(e,t){f(this,{type:o,target:e,state:r(e),kind:t,last:undefined})}),(function(){for(var e=a(this),t=e.kind,n=e.last;n&&n.removed;)n=n.previous;return e.target&&(e.last=n=n?n.next:e.state.first)?"keys"==t?{value:n.key,done:!1}:"values"==t?{value:n.value,done:!1}:{value:[n.key,n.value],done:!1}:(e.target=undefined,{value:undefined,done:!0})}),n?"entries":"values",!n,!0),u(t)}}},81995:function(e,t,n){"use strict";var o=n(90655),r=n(60495),a=n(49632).getWeakData,i=n(65522),c=n(5484),l=n(41706),d=n(47916),u=n(36249),s=n(77807),m=n(48797),p=m.set,f=m.getterFor,h=u.find,C=u.findIndex,N=o([].splice),b=0,g=function(e){return e.frozen||(e.frozen=new V)},V=function(){this.entries=[]},v=function(e,t){return h(e.entries,(function(e){return e[0]===t}))};V.prototype={get:function(e){var t=v(this,e);if(t)return t[1]},has:function(e){return!!v(this,e)},set:function(e,t){var n=v(this,e);n?n[1]=t:this.entries.push([e,t])},"delete":function(e){var t=C(this.entries,(function(t){return t[0]===e}));return~t&&N(this.entries,t,1),!!~t}},e.exports={getConstructor:function(e,t,n,o){var u=e((function(e,r){l(e,m),p(e,{type:t,id:b++,frozen:undefined}),r!=undefined&&d(r,e[o],{that:e,AS_ENTRIES:n})})),m=u.prototype,h=f(t),C=function(e,t,n){var o=h(e),r=a(i(t),!0);return!0===r?g(o).set(t,n):r[o.id]=n,e};return r(m,{"delete":function(e){var t=h(this);if(!c(e))return!1;var n=a(e);return!0===n?g(t)["delete"](e):n&&s(n,t.id)&&delete n[t.id]},has:function(e){var t=h(this);if(!c(e))return!1;var n=a(e);return!0===n?g(t).has(e):n&&s(n,t.id)}}),r(m,n?{get:function(e){var t=h(this);if(c(e)){var n=a(e);return!0===n?g(t).get(e):n?n[t.id]:undefined}},set:function(e,t){return C(this,e,t)}}:{add:function(e){return C(this,e,!0)}}),u}}},18291:function(e,t,n){"use strict";var o=n(59450),r=n(61770),a=n(90655),i=n(16851),c=n(73e3),l=n(49632),d=n(47916),u=n(41706),s=n(45744),m=n(5484),p=n(39125),f=n(98994),h=n(93182),C=n(75121);e.exports=function(e,t,n){var N=-1!==e.indexOf("Map"),b=-1!==e.indexOf("Weak"),g=N?"set":"add",V=r[e],v=V&&V.prototype,_=V,k={},y=function(e){var t=a(v[e]);c(v,e,"add"==e?function(e){return t(this,0===e?0:e),this}:"delete"==e?function(e){return!(b&&!m(e))&&t(this,0===e?0:e)}:"get"==e?function(e){return b&&!m(e)?undefined:t(this,0===e?0:e)}:"has"==e?function(e){return!(b&&!m(e))&&t(this,0===e?0:e)}:function(e,n){return t(this,0===e?0:e,n),this})};if(i(e,!s(V)||!(b||v.forEach&&!p((function(){(new V).entries().next()})))))_=n.getConstructor(t,e,N,g),l.enable();else if(i(e,!0)){var x=new _,w=x[g](b?{}:-0,1)!=x,B=p((function(){x.has(1)})),L=f((function(e){new V(e)})),S=!b&&p((function(){for(var e=new V,t=5;t--;)e[g](t,t);return!e.has(-0)}));L||((_=t((function(e,t){u(e,v);var n=C(new V,e,_);return t!=undefined&&d(t,n[g],{that:n,AS_ENTRIES:N}),n}))).prototype=v,v.constructor=_),(B||S)&&(y("delete"),y("has"),N&&y("get")),(S||w)&&y(g),b&&v.clear&&delete v.clear}return k[e]=_,o({global:!0,constructor:!0,forced:_!=V},k),h(_,e),b||n.setStrong(_,e,N),_}},35155:function(e,t,n){"use strict";var o=n(77807),r=n(75379),a=n(12488),i=n(92723);e.exports=function(e,t,n){for(var c=r(t),l=i.f,d=a.f,u=0;u"+l+""}},92413:function(e,t,n){"use strict";var o=n(80936).IteratorPrototype,r=n(48525),a=n(20471),i=n(93182),c=n(53481),l=function(){return this};e.exports=function(e,t,n,d){var u=t+" Iterator";return e.prototype=r(o,{next:a(+!d,n)}),i(e,u,!1,!0),c[u]=l,e}},87229:function(e,t,n){"use strict";var o=n(77849),r=n(92723),a=n(20471);e.exports=o?function(e,t,n){return r.f(e,t,a(1,n))}:function(e,t,n){return e[t]=n,e}},20471:function(e){"use strict";e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},61154:function(e,t,n){"use strict";var o=n(23986),r=n(92723),a=n(20471);e.exports=function(e,t,n){var i=o(t);i in e?r.f(e,i,a(0,n)):e[i]=n}},36849:function(e,t,n){"use strict";var o=n(90655),r=n(39125),a=n(79408).start,i=RangeError,c=Math.abs,l=Date.prototype,d=l.toISOString,u=o(l.getTime),s=o(l.getUTCDate),m=o(l.getUTCFullYear),p=o(l.getUTCHours),f=o(l.getUTCMilliseconds),h=o(l.getUTCMinutes),C=o(l.getUTCMonth),N=o(l.getUTCSeconds);e.exports=r((function(){return"0385-07-25T07:06:39.999Z"!=d.call(new Date(-50000000000001))}))||!r((function(){d.call(new Date(NaN))}))?function(){if(!isFinite(u(this)))throw i("Invalid time value");var e=this,t=m(e),n=f(e),o=t<0?"-":t>9999?"+":"";return o+a(c(t),o?6:4,0)+"-"+a(C(e)+1,2,0)+"-"+a(s(e),2,0)+"T"+a(p(e),2,0)+":"+a(h(e),2,0)+":"+a(N(e),2,0)+"."+a(n,3,0)+"Z"}:d},81990:function(e,t,n){"use strict";var o=n(65522),r=n(2118),a=TypeError;e.exports=function(e){if(o(this),"string"===e||"default"===e)e="string";else if("number"!==e)throw a("Incorrect hint");return r(this,e)}},66384:function(e,t,n){"use strict";var o=n(28859),r=n(92723);e.exports=function(e,t,n){return n.get&&o(n.get,t,{getter:!0}),n.set&&o(n.set,t,{setter:!0}),r.f(e,t,n)}},73e3:function(e,t,n){"use strict";var o=n(45744),r=n(92723),a=n(28859),i=n(58962);e.exports=function(e,t,n,c){c||(c={});var l=c.enumerable,d=c.name!==undefined?c.name:t;return o(n)&&a(n,d,c),c.global?l?e[t]=n:i(t,n):(c.unsafe?e[t]&&(l=!0):delete e[t],l?e[t]=n:r.f(e,t,{value:n,enumerable:!1,configurable:!c.nonConfigurable,writable:!c.nonWritable})),e}},60495:function(e,t,n){"use strict";var o=n(73e3);e.exports=function(e,t,n){for(var r in t)o(e,r,t[r],n);return e}},58962:function(e,t,n){"use strict";var o=n(61770),r=Object.defineProperty;e.exports=function(e,t){try{r(o,e,{value:t,configurable:!0,writable:!0})}catch(n){o[e]=t}return t}},11335:function(e,t,n){"use strict";var o=n(59450),r=n(76348),a=n(37249),i=n(82429),c=n(45744),l=n(92413),d=n(56997),u=n(44958),s=n(93182),m=n(87229),p=n(73e3),f=n(43741),h=n(53481),C=n(80936),N=i.PROPER,b=i.CONFIGURABLE,g=C.IteratorPrototype,V=C.BUGGY_SAFARI_ITERATORS,v=f("iterator"),_="keys",k="values",y="entries",x=function(){return this};e.exports=function(e,t,n,i,f,C,w){l(n,t,i);var B,L,S,I=function(e){if(e===f&&P)return P;if(!V&&e in M)return M[e];switch(e){case _:case k:case y:return function(){return new n(this,e)}}return function(){return new n(this)}},T=t+" Iterator",A=!1,M=e.prototype,E=M[v]||M["@@iterator"]||f&&M[f],P=!V&&E||I(f),O="Array"==t&&M.entries||E;if(O&&(B=d(O.call(new e)))!==Object.prototype&&B.next&&(a||d(B)===g||(u?u(B,g):c(B[v])||p(B,v,x)),s(B,T,!0,!0),a&&(h[T]=x)),N&&f==k&&E&&E.name!==k&&(!a&&b?m(M,"name",k):(A=!0,P=function(){return r(E,this)})),f)if(L={values:I(k),keys:C?P:I(_),entries:I(y)},w)for(S in L)(V||A||!(S in M))&&p(M,S,L[S]);else o({target:t,proto:!0,forced:V||A},L);return a&&!w||M[v]===P||p(M,v,P,{name:f}),h[t]=P,L}},89604:function(e,t,n){"use strict";var o=n(62660),r=n(77807),a=n(68438),i=n(92723).f;e.exports=function(e){var t=o.Symbol||(o.Symbol={});r(t,e)||i(t,e,{value:a.f(e)})}},33099:function(e,t,n){"use strict";var o=n(56279),r=TypeError;e.exports=function(e,t){if(!delete e[t])throw r("Cannot delete property "+o(t)+" of "+o(e))}},77849:function(e,t,n){"use strict";var o=n(39125);e.exports=!o((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},50842:function(e,t,n){"use strict";var o=n(61770),r=n(5484),a=o.document,i=r(a)&&r(a.createElement);e.exports=function(e){return i?a.createElement(e):{}}},97989:function(e){"use strict";var t=TypeError;e.exports=function(e){if(e>9007199254740991)throw t("Maximum allowed index exceeded");return e}},13811:function(e,t,n){"use strict";var o=n(42630).match(/firefox\/(\d+)/i);e.exports=!!o&&+o[1]},15904:function(e){"use strict";e.exports="object"==typeof window&&"object"!=typeof Deno},86936:function(e,t,n){"use strict";var o=n(42630);e.exports=/MSIE|Trident/.test(o)},48715:function(e,t,n){"use strict";var o=n(42630),r=n(61770);e.exports=/ipad|iphone|ipod/i.test(o)&&r.Pebble!==undefined},25515:function(e,t,n){"use strict";var o=n(42630);e.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(o)},67745:function(e,t,n){"use strict";var o=n(61496),r=n(61770);e.exports="process"==o(r.process)},35016:function(e,t,n){"use strict";var o=n(42630);e.exports=/web0s(?!.*chrome)/i.test(o)},42630:function(e,t,n){"use strict";var o=n(54965);e.exports=o("navigator","userAgent")||""},64279:function(e,t,n){"use strict";var o,r,a=n(61770),i=n(42630),c=a.process,l=a.Deno,d=c&&c.versions||l&&l.version,u=d&&d.v8;u&&(r=(o=u.split("."))[0]>0&&o[0]<4?1:+(o[0]+o[1])),!r&&i&&(!(o=i.match(/Edge\/(\d+)/))||o[1]>=74)&&(o=i.match(/Chrome\/(\d+)/))&&(r=+o[1]),e.exports=r},86778:function(e,t,n){"use strict";var o=n(42630).match(/AppleWebKit\/(\d+)\./);e.exports=!!o&&+o[1]},59096:function(e){"use strict";e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},59450:function(e,t,n){"use strict";var o=n(61770),r=n(12488).f,a=n(87229),i=n(73e3),c=n(58962),l=n(35155),d=n(16851);e.exports=function(e,t){var n,u,s,m,p,f=e.target,h=e.global,C=e.stat;if(n=h?o:C?o[f]||c(f,{}):(o[f]||{}).prototype)for(u in t){if(m=t[u],s=e.dontCallGetSet?(p=r(n,u))&&p.value:n[u],!d(h?u:f+(C?".":"#")+u,e.forced)&&s!==undefined){if(typeof m==typeof s)continue;l(m,s)}(e.sham||s&&s.sham)&&a(m,"sham",!0),i(n,u,m,e)}}},39125:function(e){"use strict";e.exports=function(e){try{return!!e()}catch(t){return!0}}},6531:function(e,t,n){"use strict";n(50044);var o=n(90655),r=n(73e3),a=n(50174),i=n(39125),c=n(43741),l=n(87229),d=c("species"),u=RegExp.prototype;e.exports=function(e,t,n,s){var m=c(e),p=!i((function(){var t={};return t[m]=function(){return 7},7!=""[e](t)})),f=p&&!i((function(){var t=!1,n=/a/;return"split"===e&&((n={}).constructor={},n.constructor[d]=function(){return n},n.flags="",n[m]=/./[m]),n.exec=function(){return t=!0,null},n[m](""),!t}));if(!p||!f||n){var h=o(/./[m]),C=t(m,""[e],(function(e,t,n,r,i){var c=o(e),l=t.exec;return l===a||l===u.exec?p&&!i?{done:!0,value:h(t,n,r)}:{done:!0,value:c(n,t,r)}:{done:!1}}));r(String.prototype,e,C[0]),r(u,m,C[1])}s&&l(u[m],"sham",!0)}},23507:function(e,t,n){"use strict";var o=n(98037),r=n(10950),a=n(97989),i=n(9341);e.exports=function c(e,t,n,l,d,u,s,m){for(var p,f=d,h=0,C=!!s&&i(s,m);h0&&o(p)?f=c(e,t,p,r(p),f,u-1)-1:(a(f+1),e[f]=p),f++),h++;return f}},57724:function(e,t,n){"use strict";var o=n(39125);e.exports=!o((function(){return Object.isExtensible(Object.preventExtensions({}))}))},10261:function(e,t,n){"use strict";var o=n(14687),r=Function.prototype,a=r.apply,i=r.call;e.exports="object"==typeof Reflect&&Reflect.apply||(o?i.bind(a):function(){return i.apply(a,arguments)})},9341:function(e,t,n){"use strict";var o=n(90655),r=n(7696),a=n(14687),i=o(o.bind);e.exports=function(e,t){return r(e),t===undefined?e:a?i(e,t):function(){return e.apply(t,arguments)}}},14687:function(e,t,n){"use strict";var o=n(39125);e.exports=!o((function(){var e=function(){}.bind();return"function"!=typeof e||e.hasOwnProperty("prototype")}))},38349:function(e,t,n){"use strict";var o=n(90655),r=n(7696),a=n(5484),i=n(77807),c=n(53898),l=n(14687),d=Function,u=o([].concat),s=o([].join),m={},p=function(e,t,n){if(!i(m,t)){for(var o=[],r=0;r]*>)/g,u=/\$([$&'`]|\d{1,2})/g;e.exports=function(e,t,n,o,s,m){var p=n+e.length,f=o.length,h=u;return s!==undefined&&(s=r(s),h=d),c(m,h,(function(r,c){var d;switch(i(c,0)){case"$":return"$";case"&":return e;case"`":return l(t,0,n);case"'":return l(t,p);case"<":d=s[l(c,1,-1)];break;default:var u=+c;if(0===u)return r;if(u>f){var m=a(u/10);return 0===m?r:m<=f?o[m-1]===undefined?i(c,1):o[m-1]+i(c,1):r}d=o[u-1]}return d===undefined?"":d}))}},61770:function(e,t,n){"use strict";var o=function(e){return e&&e.Math==Math&&e};e.exports=o("object"==typeof globalThis&&globalThis)||o("object"==typeof window&&window)||o("object"==typeof self&&self)||o("object"==typeof n.g&&n.g)||function(){return this}()||Function("return this")()},77807:function(e,t,n){"use strict";var o=n(90655),r=n(73502),a=o({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,t){return a(r(e),t)}},31645:function(e){"use strict";e.exports={}},66791:function(e,t,n){"use strict";var o=n(61770);e.exports=function(e,t){var n=o.console;n&&n.error&&(1==arguments.length?n.error(e):n.error(e,t))}},29093:function(e,t,n){"use strict";var o=n(54965);e.exports=o("document","documentElement")},17041:function(e,t,n){"use strict";var o=n(77849),r=n(39125),a=n(50842);e.exports=!o&&!r((function(){return 7!=Object.defineProperty(a("div"),"a",{get:function(){return 7}}).a}))},29209:function(e){"use strict";var t=Array,n=Math.abs,o=Math.pow,r=Math.floor,a=Math.log,i=Math.LN2;e.exports={pack:function(e,c,l){var d,u,s,m=t(l),p=8*l-c-1,f=(1<>1,C=23===c?o(2,-24)-o(2,-77):0,N=e<0||0===e&&1/e<0?1:0,b=0;for((e=n(e))!=e||e===Infinity?(u=e!=e?1:0,d=f):(d=r(a(e)/i),e*(s=o(2,-d))<1&&(d--,s*=2),(e+=d+h>=1?C/s:C*o(2,1-h))*s>=2&&(d++,s/=2),d+h>=f?(u=0,d=f):d+h>=1?(u=(e*s-1)*o(2,c),d+=h):(u=e*o(2,h-1)*o(2,c),d=0));c>=8;)m[b++]=255&u,u/=256,c-=8;for(d=d<0;)m[b++]=255&d,d/=256,p-=8;return m[--b]|=128*N,m},unpack:function(e,t){var n,r=e.length,a=8*r-t-1,i=(1<>1,l=a-7,d=r-1,u=e[d--],s=127&u;for(u>>=7;l>0;)s=256*s+e[d--],l-=8;for(n=s&(1<<-l)-1,s>>=-l,l+=t;l>0;)n=256*n+e[d--],l-=8;if(0===s)s=1-c;else{if(s===i)return n?NaN:u?-Infinity:Infinity;n+=o(2,t),s-=c}return(u?-1:1)*n*o(2,s-t)}}},83609:function(e,t,n){"use strict";var o=n(90655),r=n(39125),a=n(61496),i=Object,c=o("".split);e.exports=r((function(){return!i("z").propertyIsEnumerable(0)}))?function(e){return"String"==a(e)?c(e,""):i(e)}:i},75121:function(e,t,n){"use strict";var o=n(45744),r=n(5484),a=n(44958);e.exports=function(e,t,n){var i,c;return a&&o(i=t.constructor)&&i!==n&&r(c=i.prototype)&&c!==n.prototype&&a(e,c),e}},44790:function(e,t,n){"use strict";var o=n(90655),r=n(45744),a=n(42878),i=o(Function.toString);r(a.inspectSource)||(a.inspectSource=function(e){return i(e)}),e.exports=a.inspectSource},49632:function(e,t,n){"use strict";var o=n(59450),r=n(90655),a=n(31645),i=n(5484),c=n(77807),l=n(92723).f,d=n(94600),u=n(25586),s=n(65067),m=n(8220),p=n(57724),f=!1,h=m("meta"),C=0,N=function(e){l(e,h,{value:{objectID:"O"+C++,weakData:{}}})},b=e.exports={enable:function(){b.enable=function(){},f=!0;var e=d.f,t=r([].splice),n={};n[h]=1,e(n).length&&(d.f=function(n){for(var o=e(n),r=0,a=o.length;rb;b++)if((V=S(e[b]))&&d(h,V))return V;return new f(!1)}C=u(e,N)}for(v=C.next;!(_=r(v,C)).done;){try{V=S(_.value)}catch(I){m(C,"throw",I)}if("object"==typeof V&&V&&d(h,V))return V}return new f(!1)}},80261:function(e,t,n){"use strict";var o=n(76348),r=n(65522),a=n(36750);e.exports=function(e,t,n){var i,c;r(e);try{if(!(i=a(e,"return"))){if("throw"===t)throw n;return n}i=o(i,e)}catch(l){c=!0,i=l}if("throw"===t)throw n;if(c)throw i;return r(i),n}},80936:function(e,t,n){"use strict";var o,r,a,i=n(39125),c=n(45744),l=n(48525),d=n(56997),u=n(73e3),s=n(43741),m=n(37249),p=s("iterator"),f=!1;[].keys&&("next"in(a=[].keys())?(r=d(d(a)))!==Object.prototype&&(o=r):f=!0),o==undefined||i((function(){var e={};return o[p].call(e)!==e}))?o={}:m&&(o=l(o)),c(o[p])||u(o,p,(function(){return this})),e.exports={IteratorPrototype:o,BUGGY_SAFARI_ITERATORS:f}},53481:function(e){"use strict";e.exports={}},10950:function(e,t,n){"use strict";var o=n(87543);e.exports=function(e){return o(e.length)}},28859:function(e,t,n){"use strict";var o=n(39125),r=n(45744),a=n(77807),i=n(77849),c=n(82429).CONFIGURABLE,l=n(44790),d=n(48797),u=d.enforce,s=d.get,m=Object.defineProperty,p=i&&!o((function(){return 8!==m((function(){}),"length",{value:8}).length})),f=String(String).split("String"),h=e.exports=function(e,t,n){"Symbol("===String(t).slice(0,7)&&(t="["+String(t).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),n&&n.getter&&(t="get "+t),n&&n.setter&&(t="set "+t),(!a(e,"name")||c&&e.name!==t)&&m(e,"name",{value:t,configurable:!0}),p&&n&&a(n,"arity")&&e.length!==n.arity&&m(e,"length",{value:n.arity});try{n&&a(n,"constructor")&&n.constructor?i&&m(e,"prototype",{writable:!1}):e.prototype&&(e.prototype=undefined)}catch(r){}var o=u(e);return a(o,"source")||(o.source=f.join("string"==typeof t?t:"")),e};Function.prototype.toString=h((function(){return r(this)&&s(this).source||l(this)}),"toString")},73346:function(e){"use strict";var t=Math.expm1,n=Math.exp;e.exports=!t||t(10)>22025.465794806718||t(10)<22025.465794806718||-2e-17!=t(-2e-17)?function(e){var t=+e;return 0==t?t:t>-1e-6&&t<1e-6?t+t*t/2:n(t)-1}:t},92647:function(e,t,n){"use strict";var o=n(61303),r=Math.abs,a=Math.pow,i=a(2,-52),c=a(2,-23),l=a(2,127)*(2-c),d=a(2,-126);e.exports=Math.fround||function(e){var t,n,a=+e,u=r(a),s=o(a);return ul||n!=n?s*Infinity:s*n}},12153:function(e){"use strict";var t=Math.log,n=Math.LOG10E;e.exports=Math.log10||function(e){return t(e)*n}},28010:function(e){"use strict";var t=Math.log;e.exports=Math.log1p||function(e){var n=+e;return n>-1e-8&&n<1e-8?n-n*n/2:t(1+n)}},61303:function(e){"use strict";e.exports=Math.sign||function(e){var t=+e;return 0==t||t!=t?t:t<0?-1:1}},9275:function(e){"use strict";var t=Math.ceil,n=Math.floor;e.exports=Math.trunc||function(e){var o=+e;return(o>0?n:t)(o)}},34063:function(e,t,n){"use strict";var o,r,a,i,c,l,d,u,s=n(61770),m=n(9341),p=n(12488).f,f=n(61777).set,h=n(25515),C=n(48715),N=n(35016),b=n(67745),g=s.MutationObserver||s.WebKitMutationObserver,V=s.document,v=s.process,_=s.Promise,k=p(s,"queueMicrotask"),y=k&&k.value;y||(o=function(){var e,t;for(b&&(e=v.domain)&&e.exit();r;){t=r.fn,r=r.next;try{t()}catch(n){throw r?i():a=undefined,n}}a=undefined,e&&e.enter()},h||b||N||!g||!V?!C&&_&&_.resolve?((d=_.resolve(undefined)).constructor=_,u=m(d.then,d),i=function(){u(o)}):b?i=function(){v.nextTick(o)}:(f=m(f,s),i=function(){f(o)}):(c=!0,l=V.createTextNode(""),new g(o).observe(l,{characterData:!0}),i=function(){l.data=c=!c})),e.exports=y||function(e){var t={fn:e,next:undefined};a&&(a.next=t),r||(r=t,i()),a=t}},58822:function(e,t,n){"use strict";var o=n(67581);e.exports=o&&!!Symbol["for"]&&!!Symbol.keyFor},67581:function(e,t,n){"use strict";var o=n(64279),r=n(39125);e.exports=!!Object.getOwnPropertySymbols&&!r((function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&o&&o<41}))},37494:function(e,t,n){"use strict";var o=n(61770),r=n(45744),a=n(44790),i=o.WeakMap;e.exports=r(i)&&/native code/.test(a(i))},16002:function(e,t,n){"use strict";var o=n(7696),r=function(e){var t,n;this.promise=new e((function(e,o){if(t!==undefined||n!==undefined)throw TypeError("Bad Promise constructor");t=e,n=o})),this.resolve=o(t),this.reject=o(n)};e.exports.f=function(e){return new r(e)}},96794:function(e,t,n){"use strict";var o=n(71857),r=TypeError;e.exports=function(e){if(o(e))throw r("The method doesn't accept regular expressions");return e}},46329:function(e,t,n){"use strict";var o=n(61770).isFinite;e.exports=Number.isFinite||function(e){return"number"==typeof e&&o(e)}},90119:function(e,t,n){"use strict";var o=n(61770),r=n(39125),a=n(90655),i=n(95372),c=n(56404).trim,l=n(93966),d=a("".charAt),u=o.parseFloat,s=o.Symbol,m=s&&s.iterator,p=1/u(l+"-0")!=-Infinity||m&&!r((function(){u(Object(m))}));e.exports=p?function(e){var t=c(i(e)),n=u(t);return 0===n&&"-"==d(t,0)?-0:n}:u},80280:function(e,t,n){"use strict";var o=n(61770),r=n(39125),a=n(90655),i=n(95372),c=n(56404).trim,l=n(93966),d=o.parseInt,u=o.Symbol,s=u&&u.iterator,m=/^[+-]?0x/i,p=a(m.exec),f=8!==d(l+"08")||22!==d(l+"0x16")||s&&!r((function(){d(Object(s))}));e.exports=f?function(e,t){var n=c(i(e));return d(n,t>>>0||(p(m,n)?16:10))}:d},35350:function(e,t,n){"use strict";var o=n(77849),r=n(90655),a=n(76348),i=n(39125),c=n(21417),l=n(41543),d=n(89328),u=n(73502),s=n(83609),m=Object.assign,p=Object.defineProperty,f=r([].concat);e.exports=!m||i((function(){if(o&&1!==m({b:1},m(p({},"a",{enumerable:!0,get:function(){p(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var e={},t={},n=Symbol(),r="abcdefghijklmnopqrst";return e[n]=7,r.split("").forEach((function(e){t[e]=e})),7!=m({},e)[n]||c(m({},t)).join("")!=r}))?function(e,t){for(var n=u(e),r=arguments.length,i=1,m=l.f,p=d.f;r>i;)for(var h,C=s(arguments[i++]),N=m?f(c(C),m(C)):c(C),b=N.length,g=0;b>g;)h=N[g++],o&&!a(p,C,h)||(n[h]=C[h]);return n}:m},48525:function(e,t,n){"use strict";var o,r=n(65522),a=n(86328),i=n(59096),c=n(31645),l=n(29093),d=n(50842),u=n(95541),s=u("IE_PROTO"),m=function(){},p=function(e){return"